sc-transaction-pool 18.0.0

Substrate transaction pool implementation.
[package]
name = "sc-transaction-pool"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate transaction pool implementation."
readme = "README.md"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
async-trait = "0.1.57"
codec = { package = "parity-scale-codec", version = "3.2.2" }
futures = "0.3.21"
futures-timer = "3.0.2"
linked-hash-map = "0.5.4"
log = "0.4.17"
num-traits = "0.2.8"
parking_lot = "0.12.1"
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.12.0" }
sc-client-api = { version = "18.0.0" }
sc-transaction-pool-api = { version = "18.0.0" }
sc-utils = { version = "6.0.0" }
sp-api = { version = "16.0.0" }
sp-blockchain = { version = "18.0.0" }
sp-core = { version = "18.0.0" }
sp-runtime = { version = "20.0.0" }
sp-tracing = { version = "9.0.0" }
sp-transaction-pool = { version = "16.0.0" }

[dev-dependencies]
array-bytes = "4.1"
assert_matches = "1.3.0"
criterion = "0.4.0"
sc-block-builder = { version = "0.23.0" }
sp-consensus = { version = "0.22.0" }
substrate-test-runtime = { path = "../../test-utils/runtime" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
substrate-test-runtime-transaction-pool = { path = "../../test-utils/runtime/transaction-pool" }

[[bench]]
name = "basics"
harness = false