mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: impl compression traits for op primitives (#13550)
This commit is contained in:
@ -23,7 +23,7 @@ alloy-primitives.workspace = true
|
||||
alloy-consensus.workspace = true
|
||||
alloy-rlp.workspace = true
|
||||
alloy-eips.workspace = true
|
||||
revm-primitives.workspace = true
|
||||
revm-primitives = { workspace = true, optional = true }
|
||||
secp256k1 = { workspace = true, optional = true }
|
||||
|
||||
# op
|
||||
@ -50,7 +50,7 @@ arbitrary.workspace = true
|
||||
proptest.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
default = ["std", "serde"]
|
||||
std = [
|
||||
"reth-primitives-traits/std",
|
||||
"reth-primitives/std",
|
||||
@ -61,7 +61,7 @@ std = [
|
||||
"serde?/std",
|
||||
"bytes?/std",
|
||||
"derive_more/std",
|
||||
"revm-primitives/std",
|
||||
"revm-primitives?/std",
|
||||
"secp256k1?/std",
|
||||
"alloy-rlp/std",
|
||||
"reth-zstd-compressors?/std",
|
||||
@ -91,7 +91,7 @@ serde = [
|
||||
"reth-codecs?/serde",
|
||||
"op-alloy-consensus/serde",
|
||||
"rand?/serde",
|
||||
"revm-primitives/serde",
|
||||
"revm-primitives?/serde",
|
||||
"secp256k1?/serde",
|
||||
]
|
||||
serde-bincode-compat = [
|
||||
@ -111,10 +111,11 @@ arbitrary = [
|
||||
"alloy-consensus/arbitrary",
|
||||
"alloy-eips/arbitrary",
|
||||
"alloy-primitives/arbitrary",
|
||||
"revm-primitives/arbitrary",
|
||||
"revm-primitives?/arbitrary",
|
||||
"rand",
|
||||
]
|
||||
optimism = [
|
||||
"dep:revm-primitives",
|
||||
"revm-primitives/optimism",
|
||||
"reth-primitives/optimism"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user