Skip to content
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions crates/optimism/trie/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ reth-provider.workspace = true
reth-revm.workspace = true
reth-trie = { workspace = true, features = ["serde"] }

# metrics
metrics.workspace = true
reth-metrics = { workspace = true, features = ["common"] }

# ethereum
alloy-primitives.workspace = true

Expand All @@ -37,6 +41,7 @@ serde.workspace = true
thiserror.workspace = true
auto_impl.workspace = true
eyre.workspace = true
strum.workspace = true
tracing.workspace = true
derive_more.workspace = true

Expand Down
3 changes: 3 additions & 0 deletions crates/optimism/trie/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ pub use in_memory::{

pub mod db;

pub mod metrics;
pub use metrics::OpProofsStorageWithMetrics;

pub mod proof;

pub mod provider;
Expand Down
Loading
Loading