-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
44 lines (38 loc) · 1.05 KB
/
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
[package]
edition = "2021"
name = "plonky2_5"
version = "0.1.0"
[dependencies]
anyhow = { version = "1.0.40", default-features = false }
hex = "0.4.3"
itertools = "0.10.5"
log = "0.4.17"
num = { version = "0.4", features = ["rand"] }
num-derive = "0.3.3"
num-traits = "0.2.15"
once_cell = "1.16.0"
plonky2 = { git = "https://github.com/mir-protocol/plonky2", rev = "3de92d9ed1721cec133e4e1e1b3ec7facb756ccf", default-features = false, features = [
"std",
"gate_testing",
] }
plonky2_util = { git = "https://github.com/mir-protocol/plonky2", rev = "3de92d9ed1721cec133e4e1e1b3ec7facb756ccf", default-features = false }
rand = "0.8"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.86"
serde_repr = "0.1.10"
serde_with = { version = "2.2.0", features = ["hex"] }
unroll = "0.1.5"
[dev-dependencies]
criterion = "0.5.1"
hex-literal = "0.4.1"
rand_chacha = "0.3.1"
[features]
default = ["std"]
std = ["anyhow/std", "rand/std"]
[profile.release]
debug = true
opt-level = 3
[profile.bench]
opt-level = 3
[profile.test]
opt-level = 3