Files
reth/crates/transaction-pool/Cargo.toml
Matthias Seitz 84ec30db5b feat(txpool): add support for mock testing (#55)
* chore: some cleanup

* refactor(txpool): simplify layers and add docs

* refactor: more cleanup

* refactor: cleanup and simplifications

* feat(txpool): mock test support

* feat(txpool): more mock testing

* chore: rustfmt

* set basefee correctly
2022-10-13 10:44:31 -07:00

34 lines
595 B
TOML

[package]
name = "reth-transaction-pool"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/foundry-rs/reth"
readme = "README.md"
description = """
Transaction pool implementation
"""
[dependencies]
# eth
reth-primitives = { path = "../primitives" }
# async/futures
async-trait = "0.1"
futures = "0.3"
parking_lot = "0.12"
# misc
aquamarine = "0.1" # docs
thiserror = "1.0"
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }
linked-hash-map = "0.5"
fnv = "1.0.7"
bitflags = "1.3"
[dev-dependencies]
paste = "1.0"
rand = "0.8"