-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 972 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
[package]
name = "corrla_rs"
version = "0.1.0"
edition = "2021"
[lib]
name = "corrla_rs"
# dylib emits .so, rlib setting emits rust lib files
crate-type = ["cdylib", "rlib"]
path = 'src/lib.rs'
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
assert_approx_eq = "1.1.0"
itertools = "0.13.0"
rand = {version=">=0.8.5", featurs=["alloc"]}
statrs = "0.17.1"
argmin = {version="0.10.0"}
argmin-math = "0.4.0"
finitediff = {version="0.1.4", features = ["ndarray"]}
rand_distr = "0.4.3"
num-traits = "0.2.19"
num-complex = "0.4"
ndarray = {version="0.15", features=["rayon"]}
faer = {version = "0.19.2"}
faer-ext = {version="0.2.0", features=["ndarray"]}
rayon = "1.10.0"
pyo3 = {version="0.21.2", features = ["extension-module"]}
numpy = "0.21"
kdtree = "0.7.0"
# nalgebra = "*"
# kiddo = "3.0.0"
# cudarc = { version = "*", default-features = false, optional = true, features = ["driver", "cublas", "nvrtc"] }