-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (41 loc) · 839 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
44
45
46
47
48
49
50
[package]
name = "stark-101"
version = "0.1.0"
edition = "2021"
[dependencies]
itertools = "0.14.0"
num-prime = "0.4.4"
rand = { version = "0.8", features = ["std"] }
rand_core = "0.6.4"
rand_chacha = { version = "0.3", features = ["std"] }
rs_merkle = "1.4.2"
subtle = "2.6.1"
thiserror = "2.0.11"
sha3 = "0.10.8"
alloy = "0.11.0"
sha256 = "1.5.0"
rayon = "1.10.0"
tracing = "0.1"
tracing-subscriber = {version="0.3" ,features = ["env-filter", "fmt", "chrono"]}
chrono = "0.4.39"
tracing-appender = "0.2.3"
tracing-core = "0.1"
[dev-dependencies]
criterion = "0.5.1"
flamegraph = "0.6.7"
[[bench]]
name = "field_bench"
harness = false
[[bench]]
name = "poly_ops"
harness = false
[[bench]]
name = "poly_lang"
harness= false
[profile.dev]
incremental = true
[profile.release]
lto = "fat"
codegen-units = 1
[features]
nightly = []