-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
40 lines (33 loc) · 809 Bytes
/
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
[package]
name = "pymoors"
version = "0.1.2"
edition = "2021"
[lib]
name = "pymoors"
crate-type = ["cdylib", "rlib"]
[package.metadata.maturin]
python-source = "python"
[dependencies]
pyo3 = { version = "0.23.5", features = ["multiple-pymethods"]}
numpy = "0.23.0"
rand = "0.8.5"
num-traits = "0.2.19"
ndarray = "0.16.1"
ordered-float = "4.6.0"
rand_distr = "0.4.3"
rayon = "1.10.0"
ndarray-stats = "0.6.0"
pymoors_macros = { path = "pymoors_macros"}
faer-ext = { version = "0.4.1", features = ["ndarray"] }
faer = "0.20.0"
[features]
extension-module = ["pyo3/extension-module"]
[dev-dependencies]
criterion = "0.5.1"
rstest = "0.18.2"
[[bench]]
name = "benches"
path = "benches/fds.rs"
harness = false
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage,coverage_nightly)'] }