mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: DoTheBestToGetTheBest <146037313+DoTheBestToGetTheBest@users.noreply.github.com> Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
81 lines
1.9 KiB
TOML
81 lines
1.9 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
|
|
reth-revm = { workspace = true, optional = 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
|
|
schnellru.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
|
|
tempfile.workspace = true
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
serde = ["dep:serde"]
|
|
test-utils = ["rand", "paste", "serde"]
|
|
arbitrary = ["proptest", "reth-primitives/arbitrary"]
|
|
optimism = [
|
|
"dep:reth-revm",
|
|
"reth-revm?/optimism",
|
|
"reth-primitives/optimism",
|
|
"reth-provider/test-utils",
|
|
"reth-provider/optimism",
|
|
"revm/optimism",
|
|
]
|
|
|
|
[[bench]]
|
|
name = "reorder"
|
|
required-features = ["test-utils", "arbitrary"]
|
|
harness = false
|