-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
68 lines (57 loc) · 1.15 KB
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "schmeud"
version = "0.1.2"
edition = "2021"
[lib]
name = "schmeud"
crate-type = ["cdylib", "lib"]
# there are more dependencies here than are actually used
# we're still playing around with stuff
[dependencies]
num = "0.4"
num-traits = "0.2"
rand = "0.8"
ndarray = {version = "0.15", features = ["approx"]}
ndarray-linalg = { version = "0.16" }
ndarray-rand = "0.14"
numpy = "0.19"
petgraph = "0.6"
itertools-num = "0.1.3"
fastapprox = "0.3"
approx = "0.5"
glam = "0.24"
itertools = "0.11"
delaunator = "1.0"
robust = "1.1"
# nalgebra = "0.32"
cxx = "1.0"
fnv = "1.0"
# ahash = "0.8"
smallvec = "1.11"
rayon = "1.7"
[dependencies.pyo3]
version = "0.19"
[build-dependencies]
cxx-build = "1.0"
cmake = "0.1"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "ml"
harness = false
[[bench]]
name = "voro"
harness = false
[profile.release]
debug = true
[profile.bench]
debug = true
[features]
default = ["openblas-static", "rayon"]
voro-static = []
voro-system = []
rayon = ["ndarray/rayon"]
openblas-static = ["ndarray-linalg/openblas-static"]
openblas-system = ["ndarray-linalg/openblas-system"]
[package.metadata.maturin]
name = "schmeud._schmeud"