Skip to content

Commit

Permalink
chore: rm unused dep and add required
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Dec 27, 2024
1 parent 4994cdf commit 842738f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/optimism/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ serde = { workspace = true, optional = true }

# misc
derive_more = { workspace = true, features = ["deref", "from", "into", "constructor"] }
once_cell.workspace = true
rand = { workspace = true, optional = true }

# test
Expand Down Expand Up @@ -70,7 +71,6 @@ std = [
reth-codec = [
"dep:reth-codecs",
"std",
"rand",
"dep:proptest",
"dep:arbitrary",
"reth-primitives/reth-codec",
Expand Down
2 changes: 2 additions & 0 deletions crates/optimism/primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ impl reth_primitives::NodePrimitives for OpPrimitives {
type SignedTx = OpTransactionSigned;
type Receipt = OpReceipt;
}

use once_cell as _;

0 comments on commit 842738f

Please sign in to comment.