diff --git a/Cargo.lock b/Cargo.lock index f0e086904..29b00ae26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4600,6 +4600,9 @@ name = "lz4_flex" version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5" +dependencies = [ + "twox-hash", +] [[package]] name = "mach2" @@ -8725,6 +8728,7 @@ dependencies = [ "jsonrpsee-types", "lazy_static", "libc", + "lz4_flex", "once_cell", "parity-bytes", "parking_lot", @@ -10520,6 +10524,16 @@ dependencies = [ "utf-8", ] +[[package]] +name = "twox-hash" +version = "1.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" +dependencies = [ + "cfg-if", + "static_assertions", +] + [[package]] name = "typenum" version = "1.18.0" diff --git a/Cargo.toml b/Cargo.toml index 625ea64b0..939525818 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ revm = { version = "24.0.1" } # alloy dependencies alloy-genesis = "1.0.9" -alloy-consensus = "1.0.9" +alloy-consensus = { version = "1.0.9", features = ["serde"] } alloy-chains = "0.2.0" alloy-eips = "1.0.9" alloy-evm = "0.10" @@ -90,6 +90,7 @@ tokio = { version = "1.36", features = ["full"] } tokio-stream = "0.1" tracing = "0.1" rmp-serde = "1.0.0" +lz4_flex = "0.11.3" [target.'cfg(unix)'.dependencies]