From 00b34479478ef5a569849c9874fac80869cbebc7 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sat, 30 Nov 2024 17:22:21 +0100 Subject: [PATCH] cachore: disable alloy-chains default features (#13039) --- Cargo.toml | 2 +- crates/optimism/hardforks/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 254368416..c4b30ba94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -429,7 +429,7 @@ revm-primitives = { version = "14.0.0", features = [ ], default-features = false } # eth -alloy-chains = "0.1.32" +alloy-chains = { version = "0.1.32", default-features = false } alloy-dyn-abi = "0.8.11" alloy-primitives = { version = "0.8.11", default-features = false } alloy-rlp = "0.3.4" diff --git a/crates/optimism/hardforks/Cargo.toml b/crates/optimism/hardforks/Cargo.toml index c30566a54..67a04a8aa 100644 --- a/crates/optimism/hardforks/Cargo.toml +++ b/crates/optimism/hardforks/Cargo.toml @@ -30,7 +30,8 @@ default = ["std"] std = [ "alloy-primitives/std", "once_cell/std", - "serde?/std" + "serde?/std", + "alloy-chains/std" ] serde = [ "dep:serde",