From 20283429c788b0e8122da8e50e306c6508c6fef0 Mon Sep 17 00:00:00 2001 From: Tony Ke Date: Tue, 10 Oct 2023 16:46:36 +0800 Subject: [PATCH] include alloy-primitives std feature (#788) --- Cargo.lock | 4 ++-- crates/primitives/Cargo.toml | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d8a6bb64b..f07faf0d79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,9 +45,9 @@ checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" [[package]] name = "alloy-primitives" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b4084879b7257d5b95b9009837c07a1868bd7d60e66418a7764b9b580ae64e0" +checksum = "a0628ec0ba5b98b3370bb6be17b12f23bfce8ee4ad83823325a20546d9b03b78" dependencies = [ "alloy-rlp", "arbitrary", diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 2aa259b445..f7c8971e8a 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -37,7 +37,13 @@ hex = "0.4" [features] default = ["std", "c-kzg"] -std = ["alloy-rlp/std", "hex/std", "bitvec/std", "bitflags/std"] +std = [ + "alloy-primitives/std", + "alloy-rlp/std", + "hex/std", + "bitvec/std", + "bitflags/std", +] serde = [ "dep:serde", "alloy-primitives/serde",