88 lines
3.2 KiB
TOML
88 lines
3.2 KiB
TOML
[package]
|
|
name = "pezsc-transaction-pool"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bizinikiwi transaction pool implementation."
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/pezsc-transaction-pool"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[[bench]]
|
|
name = "basics"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
futures = { workspace = true }
|
|
futures-timer = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
itertools = { workspace = true }
|
|
linked-hash-map = { workspace = true }
|
|
parking_lot = { workspace = true, default-features = true }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsc-utils = { workspace = true, default-features = true }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
pezsp-api = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-crypto-hashing = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
pezsp-transaction-pool = { workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, default-features = true, features = [
|
|
"macros",
|
|
"time",
|
|
] }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
assert_matches = { workspace = true }
|
|
chrono = { workspace = true }
|
|
criterion = { workspace = true, default-features = true }
|
|
pezcumulus-zombienet-sdk-helpers = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
rstest = { workspace = true }
|
|
pezsc-block-builder = { workspace = true, default-features = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
bizinikiwi-test-runtime = { workspace = true }
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
bizinikiwi-test-runtime-transaction-pool = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
tracing-subscriber = { workspace = true }
|
|
txtesttool = { workspace = true }
|
|
zombienet-configuration = { workspace = true }
|
|
zombienet-sdk = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
|
"pezsc-block-builder/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-transaction-pool/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-transaction-pool/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime/runtime-benchmarks",
|
|
]
|