mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
58 lines
1.2 KiB
TOML
58 lines
1.2 KiB
TOML
[package]
|
|
name = "reth-transaction-pool"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
description = """
|
|
Transaction pool implementation
|
|
"""
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
normal = [
|
|
# Used for diagrams in docs
|
|
"aquamarine"
|
|
]
|
|
|
|
[dependencies]
|
|
|
|
# reth
|
|
reth-primitives = { path = "../primitives" }
|
|
reth-provider = { path = "../storage/provider" }
|
|
reth-interfaces = { path = "../interfaces" }
|
|
reth-rlp = { path = "../rlp" }
|
|
|
|
# async/futures
|
|
async-trait = "0.1"
|
|
futures-util = "0.3"
|
|
parking_lot = "0.12"
|
|
tokio = { version = "1", default-features = false, features = ["sync"] }
|
|
|
|
# rpc/metrics
|
|
metrics = "0.20.1"
|
|
reth-metrics-derive = { path = "../metrics/metrics-derive" }
|
|
|
|
# misc
|
|
aquamarine = "0.3.0"
|
|
thiserror = "1.0"
|
|
tracing = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
|
|
fnv = "1.0.7"
|
|
bitflags = "1.3"
|
|
auto_impl = "1.0"
|
|
|
|
# testing
|
|
rand = { version = "0.8", optional = true }
|
|
paste = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
paste = "1.0"
|
|
rand = "0.8"
|
|
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
serde = ["dep:serde"]
|
|
test-utils = ["rand", "paste", "serde"]
|