From 779f7d3c777aba43ed99348801ad9585b85be6c9 Mon Sep 17 00:00:00 2001 From: Gregory Edison Date: Thu, 28 Nov 2024 10:55:56 +0100 Subject: [PATCH] reformat manifest Signed-off-by: Gregory Edison --- crates/primitives/src/transaction/mod.rs | 2 +- crates/revm/Cargo.toml | 2 +- crates/scroll/primitives/Cargo.toml | 60 ++++++++++++------------ 3 files changed, 32 insertions(+), 32 deletions(-) diff --git a/crates/primitives/src/transaction/mod.rs b/crates/primitives/src/transaction/mod.rs index f60f649ef251..6ae94ad1bd32 100644 --- a/crates/primitives/src/transaction/mod.rs +++ b/crates/primitives/src/transaction/mod.rs @@ -1466,7 +1466,7 @@ impl reth_primitives_traits::FillTxEnv for TransactionSigned { #[cfg(all(feature = "optimism", not(feature = "scroll")))] Transaction::Deposit(_) => {} #[cfg(all(feature = "scroll", not(feature = "optimism")))] - Transaction::L1Message(_) => {} // TODO (scroll): should this be something? + Transaction::L1Message(_) => {} } } } diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 40c719ff734a..ede5c78f45bf 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -63,7 +63,7 @@ serde = [ "alloy-primitives/serde", "alloy-consensus/serde", "reth-primitives-traits/serde", - "reth-scroll-primitives/serde" + "reth-scroll-primitives?/serde" ] scroll = [ "reth-scroll-primitives", diff --git a/crates/scroll/primitives/Cargo.toml b/crates/scroll/primitives/Cargo.toml index acbbdf3dd88f..4a0230276415 100644 --- a/crates/scroll/primitives/Cargo.toml +++ b/crates/scroll/primitives/Cargo.toml @@ -47,40 +47,40 @@ test-fuzz.workspace = true [features] default = [ - "reth-codec", - "std" + "reth-codec", + "std" +] +std = [ + "serde/std", + "alloy-primitives/std", + "reth-codecs/std", + "alloy-consensus/std", + "alloy-eips/std", + "alloy-rlp/std", + "alloy-serde/std", + "bytes/std", + "proptest/std", + "rand/std" ] arbitrary = [ - "dep:arbitrary", - "alloy-primitives/arbitrary", - "alloy-consensus/arbitrary", - "alloy-eips/arbitrary", - "alloy-serde/arbitrary", - "reth-codecs/arbitrary" + "dep:arbitrary", + "alloy-primitives/arbitrary", + "alloy-consensus/arbitrary", + "alloy-eips/arbitrary", + "alloy-serde/arbitrary", + "reth-codecs/arbitrary" ] reth-codec = [ - "dep:reth-codecs", - "dep:reth-codecs-derive", - "modular-bitfield", - "std" + "dep:reth-codecs", + "dep:reth-codecs-derive", + "modular-bitfield", + "std" ] serde = [ - "alloy-primitives/serde", - "alloy-consensus/serde", - "alloy-eips/serde", - "bytes/serde", - "rand/serde", - "reth-codecs/serde" -] -std = [ - "serde/std", - "alloy-primitives/std", - "reth-codecs/std", - "alloy-consensus/std", - "alloy-eips/std", - "alloy-rlp/std", - "alloy-serde/std", - "bytes/std", - "proptest/std", - "rand/std" + "alloy-primitives/serde", + "alloy-consensus/serde", + "alloy-eips/serde", + "bytes/serde", + "rand/serde", + "reth-codecs/serde" ]