-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (40 loc) · 1.86 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
[package]
name = "zeth"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "zeth"
path = "src/main.rs"
[dependencies]
async-trait = "0.1.81"
alloy-rlp = "0.3.4"
clap = "4"
jsonrpsee = "0.24"
reth = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-evm = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-revm = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-exex = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-node-api = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-node-core = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-node-ethereum = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-primitives = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-provider = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-rpc = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-tracing = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
reth-trie = { git = "https://github.com/fractal-zkp/reth.git", branch = "zeth" }
revm = { git = "https://github.com/fractal-zkp/revm.git", branch = "zeth", features = [
"std",
"secp256k1",
"blst",
], default-features = false }
eyre = "0.6"
tokio = { version = "1.21", default-features = false }
futures = "0.3"
compat = { git = "https://github.com/fractal-zkp/zk_evm.git", branch = "zeth" }
trace_decoder = { git = "https://github.com/fractal-zkp/zk_evm.git", branch = "zeth" }
mpt_trie = { git = "https://github.com/fractal-zkp/zk_evm.git", branch = "zeth" }
primitive-types = { version = "0.12.2", package = "primitive-types" }
serde_json = "1.0.94"
thiserror = "1.0"
tracing = "0.1.0"
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite", "postgres" ] }