chore: adds reth-primitives-traits & Account (#8722)

This commit is contained in:
joshieDo
2024-06-11 18:01:45 +02:00
committed by GitHub
parent b8759733d4
commit 95719da049
7 changed files with 131 additions and 49 deletions

View File

@ -0,0 +1,43 @@
[package]
name = "reth-primitives-traits"
version.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "Common types in reth."
[lints]
workspace = true
[dependencies]
reth-codecs.workspace = true
alloy-genesis.workspace = true
alloy-primitives.workspace = true
alloy-consensus.workspace = true
# required by reth-codecs
modular-bitfield.workspace = true
bytes.workspace = true
serde.workspace = true
# arbitrary utils
arbitrary = { workspace = true, features = ["derive"], optional = true }
proptest = { workspace = true, optional = true }
proptest-derive = { workspace = true, optional = true }
[dev-dependencies]
arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true
proptest-derive.workspace = true
test-fuzz.workspace = true
[features]
arbitrary = [
"dep:arbitrary",
"dep:proptest",
"dep:proptest-derive"
]