-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 826 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (34 loc) · 826 Bytes
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
[package]
name = "pymoors"
version = "0.2.6"
edition = "2024"
[lib]
name = "pymoors"
crate-type = ["cdylib", "rlib"]
[package.metadata.maturin]
python-source = "python"
[dependencies]
pyo3 = { version = "0.24.2", features = ["multiple-pymethods"]}
numpy = "0.24.0"
rand = "0.9.0"
rand_distr = "0.5.1"
num-traits = "0.2.19"
ndarray = "0.16.1"
ordered-float = "5.0.0"
rayon = "1.10.0"
ndarray-stats = "0.6.0"
pymoors_macros = { path = "pymoors_macros"}
moors = "0.2.8"
faer-ext = { version = "0.5.0", features = ["ndarray"] }
faer = "0.21.9"
[features]
extension-module = ["pyo3/extension-module"]
[dev-dependencies]
criterion = "0.5.1"
rstest = "0.25.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage,coverage_nightly)'] }
[profile.dev]
incremental = true
[profile.test]
incremental = true