Skip to content

Commit 1367a18

Browse files
authored
fix(custom-reth): Add Cargo.lock to custom-reth crate (#205)
* Add Cargo.lock to custom-reth crate * Update Cargo.lock for custom-reth * Bump alloy versions to 1.5.2 * Add changelog entry
1 parent 70be404 commit 1367a18

File tree

6 files changed

+11262
-64
lines changed

6 files changed

+11262
-64
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Bump alloy-* versions to `1.5.2`
2+
([\#206](https://github.com/informalsystems/emerald/issues/206))

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ CLAUDE.md
1010

1111
# Custom-reth build artifacts
1212
custom-reth/target/
13-
custom-reth/Cargo.lock
1413

1514
# Docs and env
1615
example/docs/

Cargo.lock

Lines changed: 65 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ malachitebft-eth-cli = { version = "0.0.1", path = "cli" }
5353
malachitebft-eth-engine = { version = "0.0.1", path = "engine" }
5454
malachitebft-eth-types = { version = "0.0.1", path = "types" }
5555

56-
alloy-primitives = { version = "1.4.3", features = [ "std", "rand" ], default-features = false }
57-
alloy-consensus = { version = "1.4.3", default-features = false }
58-
alloy-eips = { version = "1.4.3", default-features = false }
59-
alloy-rpc-types = { version = "1.4.3", features = [ "eth" ], default-features = false }
60-
alloy-contract = { version = "1.4.3", default-features = false }
61-
alloy-sol-types = { version = "1.4.1", features = [ "json" ], default-features = false }
62-
alloy-rpc-types-eth = { version = "1.4.3", default-features = false }
63-
alloy-rpc-types-engine = { version = "1.4.3", features = [ "ssz", "jwt", "serde" ], default-features = false }
64-
alloy-json-abi = { version = "1.4.1", default-features = false }
65-
alloy-dyn-abi = { version = "1.4.1", default-features = false, features = [ "std" ] }
56+
alloy-primitives = { version = "1.5.2", features = [ "std", "rand" ], default-features = false }
57+
alloy-consensus = { version = "1.5.2", default-features = false }
58+
alloy-eips = { version = "1.5.2", default-features = false }
59+
alloy-rpc-types = { version = "1.5.2", features = [ "eth" ], default-features = false }
60+
alloy-contract = { version = "1.5.2", default-features = false }
61+
alloy-sol-types = { version = "1.5.2", features = [ "json" ], default-features = false }
62+
alloy-rpc-types-eth = { version = "1.5.2", default-features = false }
63+
alloy-rpc-types-engine = { version = "1.5.2", features = [ "ssz", "jwt", "serde" ], default-features = false }
64+
alloy-json-abi = { version = "1.5.2", default-features = false }
65+
alloy-dyn-abi = { version = "1.5.2", default-features = false, features = [ "std" ] }
6666

6767

6868
humantime = "2.2.0"

0 commit comments

Comments
 (0)