summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3e2783d4170d3a2fc560904948a342f34ace9fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "babel"
version = "0.1.0"
authors = ["Dennis Kobert <dennis@kobert.dev>",
           "Jan Zwerschke"]
edition = "2018"

[features]

gpu = ["ocl"]

[dev-dependencies]
criterion = "0.2"

[dependencies]
num = "0.2"
rayon = "1.3"
permutohedron = "0.2"
permutation_way = { git = "https://github.com/corentinway/permutation_way_rs" }
lazy_static = { version = "1.4",  optional = false}

ocl = { version = "0.19",  optional = true}


[[bench]]
name = "simple"
harness = false