mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
* ci: add unused deps sanity check * ci: fix unused deps issue template title * ci: rename udeps job * chore: formatting * chore: make `cargo-udeps` ignore `aquamarine` * deps: resolve unused deps * ci: check every feature and target in udeps job
40 lines
757 B
TOML
40 lines
757 B
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]
|
|
|
|
# eth
|
|
reth-primitives = { path = "../primitives" }
|
|
|
|
# async/futures
|
|
async-trait = "0.1"
|
|
futures-util = "0.3"
|
|
parking_lot = "0.12"
|
|
tokio = { version = "1", default-features = false, features = ["sync"] }
|
|
|
|
# misc
|
|
aquamarine = "0.1" # docs
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
fnv = "1.0.7"
|
|
bitflags = "1.3"
|
|
|
|
[dev-dependencies]
|
|
paste = "1.0"
|
|
rand = "0.8"
|