-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
79 lines (75 loc) · 3.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
edition = "2021"
authors = ["Cardinal"]
homepage = "https://alephzero.org"
license = "Apache-2.0"
categories = ["cryptography"]
repository = "https://github.com/Cardinal-Cryptography/zkOS-monorepo"
[workspace.dependencies]
alloy-contract = { version = "0.4.2" }
alloy-eips = { version = "0.4.2" }
alloy-network = { version = "0.4.2" }
alloy-primitives = { version = "0.8.5" }
alloy-provider = { version = "0.4.2" }
alloy-rpc-types = { version = "0.4.2" }
alloy-rpc-types-eth = { version = "0.4.2" }
alloy-signer = { version = "0.4.2" }
alloy-signer-local = { version = "0.4.2" }
alloy-sol-types = { version = "0.8.5" }
alloy-transport = { version = "0.4.2" }
anyhow = { version = "1.0.86", default-features = false }
askama = { version = "0.12.0", default-features = false }
async-channel = { version = "2.3.1" }
axum = { version = "0.7.7" }
byteorder = { version = "1.4.3" }
chacha20poly1305 = { version = "0.10.1", default-features = false }
clap = { version = "4.5.8" }
console_error_panic_hook = { version = "0.1.7" }
getrandom = { version = "0.2" }
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", tag = "v0.3.0", default-features = false }
halo2curves = { version = "0.6.0", default-features = false }
hex = { version = "0.4.3" }
inquire = { version = "0.7.5" }
itertools = { version = "0.13.0" }
lazy_static = { version = "1.5.0" }
log = { version = "0.4.22" }
metrics = { version = "0.23.0", default-features = false }
metrics-exporter-prometheus = { version = "0.15.3", default-features = false }
num-bigint = { version = "0.4.3" }
openssl = { version = "0.10.59" }
rand = { version = "0.8.5" }
rand_chacha = { version = "0.3.1" }
rand_core = { version = "0.6.4" }
rayon = { version = "1.8" }
reqwest = { version = "0.12.5" }
revm = { version = "14.0.3", default-features = false }
revm-primitives = { version = "10.0.0", default-features = false }
rstest = "0.23.0"
ruint = { version = "1" }
rust-argon2 = { version = "2.1.0" }
secp256k1 = { version = "0.29.1" }
serde = { version = "1.0.203" }
serde_json = { version = "1.0.120" }
sha2 = { version = "0.10.8" }
sha3 = { version = "0.10" }
shellexpand = { version = "3.1.0" }
# https://github.com/Cardinal-Cryptography/zkOS-circuits/tree/7743b2f084d80685041c1b16718e6388226e9631
shielder-circuits = { git = "ssh://[email protected]/Cardinal-Cryptography/zkOS-circuits", rev = "7743b2f" }
static_assertions = { version = "1.1.0" }
testcontainers = { version = "0.19.0" }
thiserror = { version = "1.0.61" }
tokio = { version = "1.38.0" }
tower-http = { version = "0.6.1" }
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3.18" }
wasm-bindgen = { version = "0.2.92" }
wasm-bindgen-rayon = { version = "1.2.1" }
# Local dependencies
content-encryption = { path = "crates/content-encryption", default-features = false }
evm-utils = { path = "crates/evm-utils" }
halo2_solidity_verifier = { path = "crates/halo2-verifier" }
shielder-relayer = { path = "crates/shielder-relayer" }
shielder-rust-sdk = { path = "crates/shielder-rust-sdk" }