mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
73 lines
1.6 KiB
TOML
73 lines
1.6 KiB
TOML
[package]
|
|
name = "reth-db-api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Database abstraction used in reth."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-codecs.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-prune-types.workspace = true
|
|
reth-storage-errors.workspace = true
|
|
|
|
# codecs
|
|
modular-bitfield.workspace = true
|
|
parity-scale-codec = { version = "3.2.1", features = ["bytes"] }
|
|
serde = { workspace = true, default-features = false }
|
|
|
|
# metrics
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
derive_more.workspace = true
|
|
bytes.workspace = true
|
|
|
|
# arbitrary utils
|
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
|
proptest = { workspace = true, optional = true }
|
|
proptest-derive = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
# reth libs with arbitrary
|
|
reth-primitives = { workspace = true, features = ["arbitrary"] }
|
|
reth-codecs.workspace = true
|
|
|
|
rand.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
test-fuzz.workspace = true
|
|
|
|
pprof = { workspace = true, features = [
|
|
"flamegraph",
|
|
"frame-pointer",
|
|
"criterion",
|
|
] }
|
|
criterion.workspace = true
|
|
iai-callgrind = "0.10.2"
|
|
|
|
arbitrary = { workspace = true, features = ["derive"] }
|
|
proptest.workspace = true
|
|
proptest-derive.workspace = true
|
|
|
|
paste.workspace = true
|
|
|
|
assert_matches.workspace = true
|
|
|
|
[features]
|
|
test-utils = ["arbitrary"]
|
|
arbitrary = [
|
|
"reth-primitives/arbitrary",
|
|
"dep:arbitrary",
|
|
"dep:proptest",
|
|
"dep:proptest-derive",
|
|
]
|
|
optimism = []
|