mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Oliver <onbjerg@users.noreply.github.com>
53 lines
1.1 KiB
TOML
53 lines
1.1 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 = { workspace = true, features = ["reth-codec"] }
|
|
|
|
# ethereum
|
|
alloy-primitives.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 = { workspace = true, features = ["arbitrary"] }
|
|
reth-codecs.workspace = true
|
|
|
|
proptest-arbitrary-interop.workspace = true
|
|
test-fuzz.workspace = true
|
|
|
|
[features]
|
|
test-utils = [
|
|
"arbitrary",
|
|
"reth-primitives/test-utils",
|
|
"reth-codecs/test-utils"
|
|
]
|
|
arbitrary = [
|
|
"reth-primitives/arbitrary",
|
|
"dep:arbitrary",
|
|
"dep:proptest",
|
|
"alloy-primitives/arbitrary"
|
|
]
|