mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
88 lines
2.1 KiB
TOML
88 lines
2.1 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chainspec.workspace = true
|
|
reth-eth-wire-types.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-execution-types.workspace = true
|
|
reth-fs-util.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-tasks.workspace = true
|
|
revm.workspace = true
|
|
|
|
# ethereum
|
|
alloy-rlp.workspace = true
|
|
|
|
# async/futures
|
|
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
|
|
rustc-hash.workspace = true
|
|
schnellru.workspace = true
|
|
serde = { workspace = true, features = ["derive", "rc"], optional = true }
|
|
bitflags.workspace = true
|
|
auto_impl.workspace = true
|
|
smallvec.workspace = true
|
|
itertools.workspace = true
|
|
|
|
# testing
|
|
rand = { workspace = true, optional = true }
|
|
paste = { workspace = true, optional = true }
|
|
proptest = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
reth-primitives = { workspace = true, features = ["arbitrary"] }
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-tracing.workspace = true
|
|
paste.workspace = true
|
|
rand.workspace = true
|
|
proptest.workspace = true
|
|
criterion.workspace = true
|
|
pprof = { workspace = true, features = ["criterion", "flamegraph"] }
|
|
assert_matches.workspace = true
|
|
tempfile.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
serde = ["dep:serde"]
|
|
test-utils = ["rand", "paste", "serde"]
|
|
arbitrary = ["proptest", "reth-primitives/arbitrary"]
|
|
|
|
[[bench]]
|
|
name = "truncate"
|
|
required-features = ["test-utils", "arbitrary"]
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "reorder"
|
|
required-features = ["test-utils", "arbitrary"]
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "priority"
|
|
required-features = ["arbitrary"]
|
|
harness = false
|