Skip to content

Commit ff04f5c

Browse files
committed
feat(discv5, in-memory-state, minimal, op-bridge, rollup): add
1 parent 51f7a8f commit ff04f5c

20 files changed

+2494
-9
lines changed

Cargo.lock

+195-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[workspace]
22
members = [
3+
"discv5",
4+
"in-memory-state",
5+
"minimal",
6+
"op-bridge",
37
"remote",
8+
"rollup",
49
]
510
resolver = "2"
611

@@ -14,16 +19,31 @@ publish = false
1419
[workspace.dependencies]
1520
# reth
1621
reth = { git = "https://github.com/paradigmxyz/reth" }
22+
reth-chainspec = { git = "https://github.com/paradigmxyz/reth" }
23+
reth-discv5 = { git = "https://github.com/paradigmxyz/reth" }
24+
reth-execution-errors = { git = "https://github.com/paradigmxyz/reth" }
25+
reth-execution-types = { git = "https://github.com/paradigmxyz/reth" }
1726
reth-exex = { git = "https://github.com/paradigmxyz/reth", features = ["serde"] }
27+
reth-network-peers = { git = "https://github.com/paradigmxyz/reth" }
1828
reth-node-api = { git = "https://github.com/paradigmxyz/reth" }
1929
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth" }
30+
reth-primitives = { git = "https://github.com/paradigmxyz/reth" }
31+
reth-provider = { git = "https://github.com/paradigmxyz/reth" }
32+
reth-revm = { git = "https://github.com/paradigmxyz/reth" }
2033
reth-tracing = { git = "https://github.com/paradigmxyz/reth" }
2134

35+
# alloy
36+
alloy-sol-types = { version = "0.7", features = ["json"] }
37+
2238
# async
39+
futures = "0.3"
40+
futures-util = "0.3"
2341
tokio = { version = "1.0", features = ["full"] }
42+
tokio-stream = "0.1"
2443

2544
# misc
2645
eyre = "0.6"
2746

2847
# testing
2948
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth" }
49+
reth-testing-utils = { git = "https://github.com/paradigmxyz/reth" }

0 commit comments

Comments
 (0)