-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathCargo.toml
57 lines (52 loc) · 1.77 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
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "plonky2x"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["parallel", "std", "timing"]
parallel = ["plonky2/parallel"]
std = ["plonky2/std", "itertools/use_std"]
timing = ["plonky2/timing"]
ci = []
[dependencies]
plonky2 = { git = "https://github.com/mir-protocol/plonky2.git", default-features = false, rev = "2d36559d" }
curta = { git = "https://github.com/succinctlabs/curta.git", branch = "tamir/audit_fixes" }
plonky2x-derive = { path = "../derive" }
num = { version = "0.4", default-features = false }
sha2 = "0.10.7"
curve25519-dalek = "4.1.1"
ff = { package = "ff", version = "0.13", features = ["derive"] }
ethers = { version = "2.0" }
hex = "0.4.3"
log = { version = "0.4.14", default-features = false }
rand = { version = "0.8.4", package = "rand" }
itertools = { version = "0.10.0", default-features = false }
serde = { version = "1.0.187", features = ["derive"] }
serde_json = "1.0.103"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0.75"
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
array-macro = "2.1.5"
tracing = "0.1.37"
num-bigint = { version = "0.4", features = ["rand"] }
base64 = "0.13"
futures = "0.3.28"
lazy_static = "1.4.0"
backtrace = "0.3"
env_logger = "0.10.0"
clap = { version = "4.4.0", features = ["derive"] }
dotenv = "0.15.0"
serde_with = "3.3.0"
bincode = "1.3.3"
uuid = { version = "1.4.1", features = ["serde"] }
serde_plain = "1.0.2"
ed25519-dalek = { version = "2.0.0", features = ["rand_core"] }
async-trait = "0.1.73"
digest = "0.10.7"
sha256 = "1.4.0"
[dev-dependencies]
plonky2 = { git = "https://github.com/mir-protocol/plonky2.git", rev = "2d36559d", features = [
"gate_testing",
] }
env_logger = "0.10.0"