-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (89 loc) · 1.99 KB
/
Cargo.toml
File metadata and controls
93 lines (89 loc) · 1.99 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
87
88
89
90
91
92
93
[workspace]
members = [
"crates/common",
"crates/crypto",
"crates/eth-rpc",
"crates/poseidon-rust",
"crates/prover",
"crates/railgun-rs",
"crates/request",
"crates/tc-rs",
"crates/tc-syncer",
]
resolver = "3"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
[workspace.dependencies]
aes = "0.8.4"
aes-gcm = "0.10.3"
alloy = "1.5"
alloy-primitives = { version = "1.5", default-features = false, features = [
"std",
"serde",
] }
alloy-sol-types = "1.5"
ark-bn254 = "0.5.0"
ark-circom = "0.5.0"
ark-ff = "0.5.0"
ark-groth16 = "0.5.0"
ark-relations = "0.5.1"
ark-serialize = "0.5.0"
ark-std = "0.5.0"
async-trait = "0.1.89"
bech32 = "0.11.1"
blake-hash = { version = "0.2.0", default-features = false }
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"
eth-rpc = { path = "./crates/eth-rpc" }
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" }
prover = { path = "./crates/prover" }
rand = "0.9.2"
rand_chacha = "0.9.0"
request = { path = "./crates/request" }
reqwest = { version = "0.13", default-features = false, features = [
"json",
"rustls",
] }
ruint = "1.17.2"
serde = "1"
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"
wasm-bindgen = "0.2.108"
wasm-bindgen-futures = "0.4"
wasmer = "4.4.0"
web-time = "1.1.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[profile.release-test]
inherits = "test"
opt-level = 2
codegen-units = 12