From ed77cdd801c2d3a26910e7491ef0c5bd3431e853 Mon Sep 17 00:00:00 2001 From: clabby Date: Thu, 19 Sep 2024 22:17:38 -0400 Subject: [PATCH] fix test-utils feature --- crates/derive/Cargo.toml | 1 + crates/derive/src/stages/test_utils/attributes_queue.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index aa56e35f..36572e9a 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -93,6 +93,7 @@ online = [ ] test-utils = [ "dep:spin", + "dep:anyhow", "dep:alloy-transport-http", "dep:alloy-node-bindings", "dep:tracing-subscriber", diff --git a/crates/derive/src/stages/test_utils/attributes_queue.rs b/crates/derive/src/stages/test_utils/attributes_queue.rs index 5771071a..cd9e6773 100644 --- a/crates/derive/src/stages/test_utils/attributes_queue.rs +++ b/crates/derive/src/stages/test_utils/attributes_queue.rs @@ -6,7 +6,7 @@ use crate::{ stages::attributes_queue::{AttributesBuilder, AttributesProvider}, traits::{OriginAdvancer, OriginProvider, ResettableStage}, }; -use alloc::{boxed::Box, vec::Vec}; +use alloc::{boxed::Box, vec::Vec, string::ToString}; use alloy_eips::BlockNumHash; use async_trait::async_trait; use op_alloy_genesis::SystemConfig;