From b6bccd3df29c7056bec56987f428df5f7a0f8b04 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 6 Dec 2024 05:57:18 +1100 Subject: [PATCH 1/2] Bump SSZ version --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1d898c9..9446bd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,13 +8,13 @@ readme = "README.md" repository = "https://github.com/sigp/milhouse" documentation = "https://docs.rs/milhouse" keywords = ["ethereum", "functional"] -categories = ["data-structures", "cryptography::cryptocurrencies", ] +categories = ["data-structures", "cryptography::cryptocurrencies"] [dependencies] educe = "0.6.0" ethereum_hashing = "0.7.0" -ethereum_ssz = "0.7.0" -ethereum_ssz_derive = "0.7.0" +ethereum_ssz = "0.8.0" +ethereum_ssz_derive = "0.8.0" itertools = "0.13.0" parking_lot = "0.12.1" rayon = "1.5.1" From 29c36d71f3a2b8250e0725f2cfcc53013a7a3484 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Fri, 6 Dec 2024 10:50:36 +1100 Subject: [PATCH 2/2] Update ssz_types to 0.9 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9446bd8..cfdbbde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ alloy-primitives = { version = "0.8.0", features = ["arbitrary"] } [dev-dependencies] -ssz_types = "0.8.0" +ssz_types = "0.9.0" proptest = "1.0.0" tree_hash_derive = "0.8.0" criterion = "0.5"