-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
104 lines (94 loc) · 4.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
members = [
"examples/example-deploy/host",
"examples/uniswap/host",
"examples/multiplexer/host",
"examples/verify-quorum/host",
"crates/client-executor",
"crates/host-executor",
]
exclude = []
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["yuwen01"]
exclude = ["**/target"]
version = "0.1.0"
[workspace.dependencies]
eyre = "0.6"
tracing = { version = "0.1.40", default-features = false }
tokio = { version = "1.21", default-features = false, features = [
"rt",
"rt-multi-thread",
] }
serde_json = "1.0.94"
serde = { version = "1.0", default-features = false, features = ["derive"] }
url = "2.3"
hex-literal = "0.4.1"
bincode = "1.3.3"
# workspace
sp1-cc-client-executor = {path = "./crates/client-executor"}
sp1-cc-host-executor = {path = "./crates/host-executor"}
# rsp
rsp-rpc-db = { git = "https://github.com/succinctlabs/rsp" , rev = "3647076"}
rsp-witness-db = { git = "https://github.com/succinctlabs/rsp" , rev = "3647076"}
rsp-primitives = { git = "https://github.com/succinctlabs/rsp" , rev = "3647076"}
rsp-client-executor = { git = "https://github.com/succinctlabs/rsp" , rev = "3647076"}
rsp-mpt = { git = "https://github.com/succinctlabs/rsp" , rev = "3647076"}
# rsp-rpc-db = { path = "../rsp/crates/storage/rpc-db" }
# rsp-witness-db = { path = "../rsp/crates/storage/witness-db" }
# rsp-primitives = { path = "../rsp/crates/primitives"}
# rsp-client-executor = {path = "../rsp/crates/executor/client"}
# rsp-mpt = { path = "../rsp/crates/mpt"}
# reth
reth-primitives = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false, features = [
"alloy-compat",
"std",
] }
reth-codecs = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-consensus = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-evm = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-revm = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false, features = [
"std",
] }
reth-evm-ethereum = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false, features = [
"std",
] }
reth-storage-errors = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false, features = [
"std",
] }
reth-trie = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-trie-common = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-chainspec = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-execution-errors = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-execution-types = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-db = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-errors = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
reth-ethereum-consensus = { git = "https://github.com/sp1-patches/reth", tag = "rsp-20240830", default-features = false }
# revm
revm = { version = "14.0.0", features = [
"std",
], default-features = false }
revm-primitives = { version = "9.0.0", features = [
"std",
], default-features = false }
# alloy
alloy-primitives = "0.8"
alloy-provider = { version = "0.3", default-features = false, features = [
"reqwest",
] }
alloy-rpc-types = { version = "0.3", default-features = false, features = [
"eth",
] }
alloy-rlp = "0.3.4"
alloy-transport = { version = "0.3" }
alloy-sol-types = { version = "0.8" }
alloy-sol-macro = { version = "0.8" }
alloy = { version = "0.3" }
[workspace.lints]
rust.missing_debug_implementations = "warn"
rust.unreachable_pub = "warn"
rust.unused_must_use = "deny"
rust.rust_2018_idioms = { level = "deny", priority = -1 }
rustdoc.all = "warn"