Files
nanoreth/crates/storage/db-models/Cargo.toml
Thomas Coratger 59ebebaa63 primitives: rm alloy Withdrawals reexport (#12421)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2024-11-09 13:09:46 +00:00

58 lines
1.3 KiB
TOML

[package]
name = "reth-db-models"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Database models used in storage module."
[lints]
workspace = true
[dependencies]
# reth
reth-codecs.workspace = true
reth-primitives-traits.workspace = true
# ethereum
alloy-primitives.workspace = true
alloy-eips.workspace = true
# codecs
modular-bitfield.workspace = true
serde = { workspace = true, default-features = false }
# misc
bytes.workspace = true
# arbitrary utils
arbitrary = { workspace = true, features = ["derive"], optional = true }
proptest = { workspace = true, optional = true }
[dev-dependencies]
# reth
reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
reth-codecs.workspace = true
arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true
proptest-arbitrary-interop.workspace = true
test-fuzz.workspace = true
[features]
test-utils = [
"reth-primitives-traits/test-utils",
"arbitrary",
"reth-codecs/test-utils",
]
arbitrary = [
"reth-primitives-traits/arbitrary",
"dep:arbitrary",
"dep:proptest",
"alloy-primitives/arbitrary",
"alloy-eips/arbitrary",
"reth-codecs/arbitrary",
]