-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
43 lines (36 loc) · 804 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
41
42
43
[package]
name = "cloverleaf"
version = "0.1.0"
edition = "2021"
[lib]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
name = "cloverleaf"
crate-type = ["cdylib", "rlib"]
[dependencies]
ahash = "0.8"
rand = "0.7"
rand_xorshift = "0.2"
rand_distr = "0.2"
rayon = "1.5"
float-ord = "0.2"
atomic_float = "0.1"
pyo3 = { version = "0.17.1", features = ["extension-module"] }
simple_grad = {git = "https://github.com/Refefer/SimpleGrad"}
indicatif = "0.17.1"
itertools = "0.10.5"
ryu = "1.0"
fast-float = "0.2.0"
lasso = "0.7.2"
flate2 = "1.0.28"
[dependencies.hashbrown]
version = "0.13"
features = ["rayon"]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "bench_algos"
harness = false
[profile.bench]
debug = true
[profile.release]
debug = true