mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
72 lines
1.7 KiB
TOML
72 lines
1.7 KiB
TOML
[package]
|
|
name = "reth-transaction-pool"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = """
|
|
Transaction pool implementation
|
|
"""
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
normal = [
|
|
# Used for diagrams in docs
|
|
"aquamarine",
|
|
]
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-tasks.workspace = true
|
|
revm.workspace = true
|
|
alloy-rlp.workspace = true
|
|
|
|
# async/futures
|
|
async-trait.workspace = true
|
|
futures-util.workspace = true
|
|
parking_lot.workspace = true
|
|
tokio = { workspace = true, default-features = false, features = ["sync"] }
|
|
tokio-stream.workspace = true
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
aquamarine.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
serde = { workspace = true, features = ["derive", "rc"], optional = true }
|
|
fnv = "1.0.7"
|
|
bitflags.workspace = true
|
|
auto_impl = "1.0"
|
|
|
|
# testing
|
|
rand = { workspace = true, optional = true }
|
|
paste = { version = "1.0", optional = true }
|
|
proptest = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
reth-primitives = { workspace = true, features = ["arbitrary"] }
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
paste = "1.0"
|
|
rand = "0.8"
|
|
proptest.workspace = true
|
|
criterion = "0.5"
|
|
assert_matches.workspace = true
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
serde = ["dep:serde"]
|
|
test-utils = ["rand", "paste", "serde"]
|
|
arbitrary = ["proptest", "reth-primitives/arbitrary"]
|
|
|
|
[[bench]]
|
|
name = "reorder"
|
|
required-features = ["test-utils", "arbitrary"]
|
|
harness = false
|