Skip to content

Commit 847a712

Browse files
committed
remote reth
1 parent 01838b6 commit 847a712

File tree

1 file changed

+21
-42
lines changed

1 file changed

+21
-42
lines changed

Cargo.toml

Lines changed: 21 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -20,44 +20,24 @@ publish = false
2020

2121
[workspace.dependencies]
2222
# reth
23-
# reth = { git = "https://github.com/paradigmxyz/reth" }
24-
# reth-chainspec = { git = "https://github.com/paradigmxyz/reth" }
25-
# reth-discv5 = { git = "https://github.com/paradigmxyz/reth" }
26-
# reth-execution-errors = { git = "https://github.com/paradigmxyz/reth" }
27-
# reth-execution-types = { git = "https://github.com/paradigmxyz/reth" }
28-
# reth-exex = { git = "https://github.com/paradigmxyz/reth", features = ["serde"] }
29-
# reth-eth-wire = { git = "https://github.com/paradigmxyz/reth" }
30-
# reth-evm = { git = "https://github.com/paradigmxyz/reth" }
31-
# reth-network = { git = "https://github.com/paradigmxyz/reth", features = ["test-utils"] }
32-
# reth-network-api = { git = "https://github.com/paradigmxyz/reth" }
33-
# reth-network-peers = { git = "https://github.com/paradigmxyz/reth" }
34-
# reth-node-api = { git = "https://github.com/paradigmxyz/reth" }
35-
# reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth" }
36-
# reth-primitives = { git = "https://github.com/paradigmxyz/reth" }
37-
# reth-provider = { git = "https://github.com/paradigmxyz/reth" }
38-
# reth-revm = { git = "https://github.com/paradigmxyz/reth" }
39-
# reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth" }
40-
# reth-tracing = { git = "https://github.com/paradigmxyz/reth" }
41-
42-
# reth
43-
reth = { path = "../reth/bin/reth" }
44-
reth-chainspec = { path = "../reth/crates/chainspec" }
45-
reth-discv5 = { path = "../reth/crates/net/discv5" }
46-
reth-execution-errors = { path = "../reth/crates/evm/execution-errors" }
47-
reth-execution-types = { path = "../reth/crates/evm/execution-types" }
48-
reth-exex = { path = "../reth/crates/exex/exex" , features = ["serde"] }
49-
reth-eth-wire = { path = "../reth/crates/net/eth-wire" }
50-
reth-evm = { path = "../reth/crates/evm" }
51-
reth-network = { path = "../reth/crates/net/network", features = ["test-utils"] }
52-
reth-network-api = { path = "../reth/crates/net/network-api" }
53-
reth-network-peers = { path = "../reth/crates/net/peers" }
54-
reth-node-api = { path = "../reth/crates/node/api" }
55-
reth-node-ethereum = { path = "../reth/crates/ethereum/node" }
56-
reth-primitives = { path = "../reth/crates/primitives" }
57-
reth-provider = { path = "../reth/crates/storage/provider" }
58-
reth-revm = { path = "../reth/crates/revm" }
59-
reth-transaction-pool = { path = "../reth/crates/transaction-pool" }
60-
reth-tracing = { path = "../reth/crates/tracing" }
23+
reth = { git = "https://github.com/paradigmxyz/reth" }
24+
reth-chainspec = { git = "https://github.com/paradigmxyz/reth" }
25+
reth-discv5 = { git = "https://github.com/paradigmxyz/reth" }
26+
reth-execution-errors = { git = "https://github.com/paradigmxyz/reth" }
27+
reth-execution-types = { git = "https://github.com/paradigmxyz/reth" }
28+
reth-exex = { git = "https://github.com/paradigmxyz/reth", features = ["serde"] }
29+
reth-eth-wire = { git = "https://github.com/paradigmxyz/reth" }
30+
reth-evm = { git = "https://github.com/paradigmxyz/reth" }
31+
reth-network = { git = "https://github.com/paradigmxyz/reth", features = ["test-utils"] }
32+
reth-network-api = { git = "https://github.com/paradigmxyz/reth" }
33+
reth-network-peers = { git = "https://github.com/paradigmxyz/reth" }
34+
reth-node-api = { git = "https://github.com/paradigmxyz/reth" }
35+
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth" }
36+
reth-primitives = { git = "https://github.com/paradigmxyz/reth" }
37+
reth-provider = { git = "https://github.com/paradigmxyz/reth" }
38+
reth-revm = { git = "https://github.com/paradigmxyz/reth" }
39+
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth" }
40+
reth-tracing = { git = "https://github.com/paradigmxyz/reth" }
6141

6242

6343
# alloy
@@ -88,9 +68,8 @@ serde_json = "1"
8868
eyre = "0.6"
8969

9070
# testing
91-
# reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth" }
92-
# reth-testing-utils = { git = "https://github.com/paradigmxyz/reth" }
71+
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth" }
72+
reth-testing-utils = { git = "https://github.com/paradigmxyz/reth" }
73+
9374

94-
reth-testing-utils = { path = "../reth/testing/testing-utils" }
95-
reth-exex-test-utils = { path = "../reth/crates/exex/test-utils" }
9675

0 commit comments

Comments
 (0)