feat: implement Compact for OpTxType (#12537)

This commit is contained in:
Krishang Shah
2024-11-15 21:35:19 +05:30
committed by GitHub
parent 5f66fa448e
commit ac5976ff51
5 changed files with 112 additions and 6 deletions

View File

@ -19,4 +19,14 @@ alloy-eips.workspace = true
alloy-rlp.workspace = true
derive_more.workspace = true
bytes.workspace = true
reth-primitives-traits.workspace = true
reth-primitives-traits.workspace = true
reth-codecs = { workspace = true, optional = true }
reth-primitives = { workspace = true, features = ["reth-codec"], optional = true }
[features]
default = ["reth-codec"]
reth-codec = ["dep:reth-codecs", "dep:reth-primitives"]
[dev-dependencies]
reth-codecs = { workspace = true, features = ["test-utils"] }
rstest.workspace = true