Skip to content

Commit 2a65875

Browse files
committed
bump alloy/revm/reth, switch to stable toolchain
1 parent f000ac1 commit 2a65875

File tree

3 files changed

+26
-21
lines changed

3 files changed

+26
-21
lines changed

Cargo.toml

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[workspace]
44
members = [
5-
"bin/loom", "bin/keys", "bin/loom_anvil", "bin/gasbench", "bin/nodebench",
5+
"bin/loom", "bin/keys", "bin/loom_anvil", "bin/gasbench", "bin/nodebench",
66
"crates/defi-abi", "crates/defi-actors", "crates/defi-entities", "crates/defi-events", "crates/defi-pools", "crates/multicaller", "crates/topology", "crates/types", "crates/utils", "crates/flashbots", "crates/debug-provider", "bin/gasbench", "bin/nodebench"]
77
default-members = ["bin/loom", "bin/keys", "bin/loom_anvil", "bin/gasbench", "bin/nodebench"]
88
resolver = "2"
@@ -60,12 +60,12 @@ colored = "2.0.4"
6060

6161

6262

63-
#alloy = { git = "https://github.com/alloy-rs/alloy.git", package = "alloy", rev = "61921bc", default-features = false, features = ["pubsub",
64-
# "sol-types", "dyn-abi", "json-abi", "contract", "providers", "provider-ws", "provider-ipc", "provider-http", "consensus", "genesis", "reqwest", "hyper", "serde",
65-
# "signers", "signer-local", "transports", "transport-http", "transport-ipc", "transport-ws",
66-
# "network", "node-bindings", "rpc-client", "json-rpc", "rpc-types", "rpc-types-trace", "rpc-types-admin", "rpc-types-txpool", "rpc-types-anvil", "rpc-types-json"] }
63+
alloy = { git = "https://github.com/alloy-rs/alloy.git", package = "alloy", rev = "61921bc", default-features = false, features = ["pubsub",
64+
"sol-types", "dyn-abi", "json-abi", "contract", "providers", "provider-ws", "provider-ipc", "provider-http", "consensus", "genesis", "reqwest", "hyper", "serde",
65+
"signers", "signer-local", "transports", "transport-http", "transport-ipc", "transport-ws",
66+
"network", "node-bindings", "rpc-client", "json-rpc", "rpc-types", "rpc-types-trace", "rpc-types-admin", "rpc-types-txpool", "rpc-types-anvil", "rpc-types-json"] }
6767

68-
alloy = { git = "https://github.com/alloy-rs/alloy.git", package = "alloy", rev = "61921bc", features = ["full"] }
68+
#alloy = { git = "https://github.com/alloy-rs/alloy.git", package = "alloy", rev = "61921bc", features = ["full"] }
6969

7070
revm = { version = "9.0.0", features = [
7171
"std",
@@ -87,8 +87,6 @@ alloy-rlp = "0.3.5"
8787
alloy-trie = "0.4.1"
8888

8989

90-
91-
9290
alloy-contract = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
9391
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy.git", features = ["ws", "reqwest", "pubsub"], rev = "61921bc" }
9492
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
@@ -114,15 +112,16 @@ alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "61921b
114112
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
115113
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy.git", rev = "61921bc" }
116114

117-
reth-db = { git = "https://github.com/paradigmxyz/reth", rev = "87d6bcd" }
118-
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "87d6bcd" }
119-
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "87d6bcd" }
120-
reth-rpc-types = { git = "https://github.com/paradigmxyz/reth", rev = "87d6bcd" }
121-
reth-rpc-types-compat = { git = "https://github.com/paradigmxyz/reth", rev = "87d6bcd" }
122-
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "87d6bcd" }
115+
reth-db = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
116+
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
117+
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
118+
reth-rpc-types = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
119+
reth-rpc-types-compat = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
120+
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
123121

124122

125-
uniswap_v3_math = { git = "https://github.com/0xKitsune/uniswap-v3-math", rev = "b7b2e87" }
123+
#uniswap_v3_math = { git = "https://github.com/0xKitsune/uniswap-v3-math", rev = "b7b2e87" }
124+
uniswap_v3_math = { path = "../uniswap-v3-math" }
126125

127126

128127
[patch.crates-io]
@@ -136,7 +135,7 @@ revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "41e2f7f" }
136135
alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
137136
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
138137

139-
alloy = { git = "https://github.com/alloy-rs/alloy.git", package = "alloy", rev = "61921bc", features = ["full"] }
138+
#alloy = { git = "https://github.com/alloy-rs/alloy.git", package = "alloy", rev = "61921bc" }
140139

141140

142141
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
@@ -146,5 +145,12 @@ alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "6192
146145
alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
147146
alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
148147
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
148+
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
149+
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", rev = "61921bc" }
149150

150-
151+
reth-db = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
152+
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
153+
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
154+
reth-rpc-types = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
155+
reth-rpc-types-compat = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }
156+
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "d786b45" }

bin/nodebench/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ eyre.workspace = true
1515
chrono.workspace = true
1616
futures.workspace = true
1717

18-
[dependencies.alloy]
19-
workspace = true
20-
features = ["full"]
18+
alloy.workspace = true
19+
2120

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2024-06-20"
2+
channel = "stable"
33
profile = "default"

0 commit comments

Comments
 (0)