-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
72 lines (63 loc) · 3.25 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
[package]
name = "alloy-reth-provider"
version = "1.3.12"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.85"
homepage = "https://github.com/cakevm/alloy-reth-provider"
repository = "https://github.com/cakevm/alloy-reth-provider"
exclude = [".github/"]
description = "Implement reth StateProviderFactory traits for remote RPC usage"
[dependencies]
parking_lot = { version = "0.12.3", default-features = false }
tokio = { version = "1.43.0", default-features = false, features = ["rt-multi-thread"] }
tracing = "0.1.41"
# revm
revm = { version = "22.0.1", default-features = false, features = ["alloydb"] }
revm-context = { version = "3.0.0", default-features = false }
revm-database = { version = "3.0.0", default-features = false }
revm-state = { version = "3.0.0", default-features = false }
# alloy
alloy-consensus = { version = "0.14.0", default-features = false }
alloy-eips = { version = "0.14.0", default-features = false }
alloy-network = { version = "0.14.0", default-features = false }
alloy-primitives = { version = "1.0.0", default-features = false }
alloy-provider = { version = "0.14.0", default-features = false }
alloy-transport = { version = "0.14.0", default-features = false }
# op-alloy
op-alloy-network = { version = "0.14.1", default-features = false, optional = true }
# reth
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false }
reth-db-models = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false }
reth-errors = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false, features = [
"serde-bincode-compat",
] }
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false }
reth-trie = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false }
# ethereum
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false, features = [
"alloy-compat",
"reth-codec",
] }
# optimism
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false, optional = true }
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12", default-features = false, features = [
"alloy-compat",
"reth-codec",
"serde",
"serde-bincode-compat",
], optional = true }
[features]
optimism = ["op-alloy-network", "reth-optimism-chainspec", "reth-optimism-primitives"]
[dev-dependencies]
alloy-node-bindings = "0.14.0"
alloy-provider = { version = "0.14.0", default-features = false, features = ["alloy-transport-ws", "reqwest", "reqwest-default-tls", "ws"] }
eyre = "0.6.12"
futures-util = "0.3.31"
reth-revm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12" }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12" }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12" }
ruint = "1.13.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }