-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 891 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 891 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
[package]
name = "clostera"
version = "1.0.5"
edition = "2024"
[features]
default = []
openblas-system = ["ndarray-linalg/openblas-system"]
openblas-static = ["ndarray-linalg/openblas-static"]
python = ["dep:numpy", "dep:pyo3", "pyo3/extension-module"]
[lib]
name = "_clostera"
crate-type = ["cdylib", "rlib"]
[dependencies]
ndarray = { version = "0.17", features = ["blas", "rayon"] }
ndarray-linalg = { version = "0.18", default-features = false }
numpy = { version = "0.27", optional = true }
pyo3 = { version = "0.27", optional = true }
rand = "0.9"
rand_chacha = "0.9"
rayon = "1.11"
thiserror = "2.0"
[build-dependencies]
pkg-config = "0.3"
[dev-dependencies]
approx = "0.5"
criterion = { version = "0.5", default-features = false, features = ["html_reports"] }
[patch.crates-io]
openblas-build = { path = "vendor/openblas-build" }
[[bench]]
name = "core_bench"
harness = false