-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1.6 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
[workspace]
members = ["attestation", "exex", "rpc", "node"]
resolver = "2"
[workspace.dependencies]
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-exex = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0", features = ["serde"] }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-trie = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-trie-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
alloy-primitives = "1.3"
alloy-sol-types = "1.3"
alloy-rpc-types = "1.0"
alloy-signer = "1.0"
alloy-signer-local = "1.0"
alloy-eips = "1.0"
alloy-provider = "1.0"
alloy-network = "1.0"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
dashmap = "6"
jsonrpsee = { version = "0.26", features = ["server", "macros"] }
eyre = "0.6"
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
hex = "0.4"