-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (82 loc) · 2.45 KB
/
Cargo.toml
File metadata and controls
86 lines (82 loc) · 2.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[workspace]
members = [
"crates/common",
"crates/crypto",
"crates/eip-1193-provider",
"crates/poseidon-rust",
"crates/railgun",
"crates/railgun-ts",
"crates/userop-kit",
"crates/userop-kit-ts",
]
resolver = "3"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
[workspace.dependencies]
aes = "0.8"
aes-gcm = "0.10"
alloy = { version = "1.8", default-features = false }
alloy-sol-types = { version = "1.5", default-features = false }
anyhow = "1"
ark-bn254 = "0.6"
ark-circom = "0.6"
ark-ff = "0.6"
ark-groth16 = { version = "0.6", default-features = false }
ark-relations = "0.6"
ark-serialize = "0.6"
ark-std = { version = "0.6", features = ["getrandom"] }
async-trait = "0.1.89"
bech32 = "0.11.1"
brotli = "8"
blake-hash = { version = "0.2.0", default-features = false }
cfg_aliases = "0.2.0"
common = { path = "./crates/common" }
console_error_panic_hook = "0.1"
criterion = "0.8.2"
crypto = { path = "./crates/crypto" }
ctr = "0.9.2"
curve25519-dalek = "4.1.3"
ed25519-dalek = "2.2.0"
eip-1193-provider = { path = "./crates/eip-1193-provider" }
futures = "0.3.31"
gloo-net = "0.6.0"
gloo-timers = "0.3.0"
hex = "0.4.3"
http = "1.4.0"
insta = { version = "1.46.3", features = ["json"] }
itertools = "0.14.0"
js-sys = "0.3"
lazy_static = "1.5.0"
num-bigint = "0.4.6"
num-traits = "0.2.19"
poseidon-rust = { path = "./crates/poseidon-rust" }
railgun = { path = "./crates/railgun" }
rand = "0.9.2"
rand_chacha = "0.9.0"
rayon = "1.12"
reqwest = { version = "0.13", default-features = false }
ruint = { version = "1", features = ["serde", "num-bigint", "ark-ff-06"] }
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = "0.6"
serde_json = "1.0.149"
serde_with = "3.16.1"
serial_test = "3.3.1"
sha2 = "0.10.9"
thiserror = "2.0.18"
tokio = "1.49"
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
tracing-test = "0.2.5"
tracing-wasm = "0.2"
tsify = "0.5"
userop-kit = { path = "./crates/userop-kit" }
userop-kit-ts = { path = "./crates/userop-kit-ts" }
wasm-bindgen = "=0.2.108"
wasm-bindgen-futures = "0.4"
wasmer = { version = "6.1", default-features = false }
web-time = { version = "1.1" }
[patch.crates-io]
ruint = { git = "https://github.com/Robert-MacWha/ruint" } # Adds ark-fr-06 support
ark-circom = { git = "https://github.com/Robert-MacWha/circom-compat", branch = "release/0.6.0" } # Adds opt-in parallel feature flag. Without parallel hangs indefinitely in wasm.
[profile.release]
jobs = 6