-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (55 loc) · 1.78 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
[workspace]
members = [
"common",
"consensus-proof",
"operator",
]
resolver = "2"
[workspace.dependencies]
base64 = "0.22.1"
sha2 = "0.10.8"
bytes = "1.7.1"
prost = "0.13.1"
prost-types = "0.13.1"
bincode = "1.3.3"
anyhow = "1.0.82"
eyre = "0.6"
ethers = "2.0.14"
dotenv = "0.15.0"
clap = "4.5.18"
url = "2.3"
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
reqwest = { version = "0.12.7", features = ["json"] }
tokio = { version = "1.21", default-features = false, features = [
"rt",
"rt-multi-thread",
] }
tracing = { version = "0.1.40", default-features = false }
# reth
reth-primitives = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false, features = [
"alloy-compat",
"std",
"secp256k1"
] }
# alloy
alloy-primitives = "0.8.0"
alloy-rlp = "0.3.4"
alloy-sol-types = { version = "0.8" }
alloy-provider = { version = "0.3", default-features = false, features = [
"reqwest",
] }
alloy-sol-macro = { version = "0.8" }
alloy = { version = "0.3" }
alloy-rpc-types = { version = "0.3", default-features = false, features = [
"eth",
] }
# sp1
sp1-zkvm = "4.0.0"
sp1-sdk = "4.0.0"
sp1-cc-client-executor = { git = "https://github.com/succinctlabs/sp1-contract-call/", branch = "main" }
sp1-cc-host-executor = { git = "https://github.com/succinctlabs/sp1-contract-call/", branch = "main" }
[patch.crates-io]
tiny-keccak = { git = "https://github.com/sp1-patches/tiny-keccak", tag = "patch-2.0.2-sp1-4.0.0" }
ecdsa-core = { git = "https://github.com/sp1-patches/signatures", package = "ecdsa", tag = "patch-0.16.9-sp1-4.0.0" }
secp256k1 = { git = "https://github.com/sp1-patches/rust-secp256k1", tag = "patch-0.29.1-sp1-4.0.0" }