chore: remove unused op dep (#7252)

This commit is contained in:
Matthias Seitz
2024-03-20 18:35:57 +01:00
committed by GitHub
parent 672bdcc57f
commit a4e32c84f2
3 changed files with 3 additions and 2 deletions

1
Cargo.lock generated
View File

@ -5584,7 +5584,6 @@ dependencies = [
"reth-interfaces",
"reth-metrics",
"reth-node-ethereum",
"reth-node-optimism",
"reth-primitives",
"reth-provider",
"reth-revm",

View File

@ -40,7 +40,6 @@ reth-primitives = { workspace = true , features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-revm.workspace = true
reth-node-ethereum.workspace = true
reth-node-optimism.workspace = true
parking_lot.workspace = true
assert_matches.workspace = true

View File

@ -16,6 +16,7 @@
issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
pub mod blockchain_tree;
pub use blockchain_tree::BlockchainTree;
@ -51,3 +52,5 @@ pub use block_buffer::BlockBuffer;
pub mod noop;
mod state;
use aquamarine as _;