Skip to content

Commit

Permalink
chore: rm unused dep and add required (#13569)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Dec 27, 2024
1 parent bc8d4fe commit 55a972d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
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.

5 changes: 3 additions & 2 deletions 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 @@ -65,12 +66,12 @@ std = [
"secp256k1?/std",
"alloy-rlp/std",
"reth-zstd-compressors?/std",
"op-alloy-consensus/std"
"op-alloy-consensus/std",
"once_cell/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 55a972d

Please sign in to comment.