-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (48 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
56 lines (48 loc) · 1.21 KB
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
51
52
53
54
55
56
[package]
name = "sumcheck"
version = "0.1.0"
edition = "2021"
authors = ["eftychis <eftychis@users.noreply.github.com>"]
[dependencies]
ark-bn254 = "0.4.0"
ark-ec = { version = "0.4.2", features = ["std", "rayon", "parallel"] }
ark-ff = { version = "0.4.2", features = ["parallel", "rayon", "std", "asm"] }
ark-serialize = { version = "0.4.2", features = ["derive"] }
ark-std = "0.4.0"
num-integer = "0.1.46"
rand = "0.8.5"
rand_core = "0.6.4"
rayon = "1.10.0"
sha3 = "0.10.8"
tracing = "0.1.40"
tracing-chrome = "0.7.2"
[dev-dependencies]
rand_chacha = "0.3.1"
criterion = { version = "0.5.1", features = ["html_reports"] }
ark-test-curves = { version = "0.5.0", default-features = false, features = ["bls12_381_scalar_field", "bls12_381_curve"] }
[dependencies.num-traits]
version = "0.2"
default-features = false
features = ["libm"]
[features]
default = ["std"]
std = []
[profile.dev]
codegen-units = 5
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = 3
strip = true
[profile.bench]
inherits = "release"
debug = true
strip = false
# Note(eftychis): commented out -- used for experimentation with
# similar libraries.
#
# [[bench]]
# name = "sumcheck"
# path = "benches/sumcheck_bench.rs"
# harness = false