bd2d665c4e
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
122 lines
4.2 KiB
TOML
122 lines
4.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.workspace = true
|
|
|
|
[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 }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsc-utils = { 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 }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
serde = { features = ["derive"], 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 }
|
|
bizinikiwi-test-runtime = { workspace = true }
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
bizinikiwi-test-runtime-transaction-pool = { workspace = true }
|
|
chrono = { workspace = true }
|
|
criterion = { workspace = true, default-features = true }
|
|
env_logger = { workspace = true }
|
|
pezcumulus-zombienet-sdk-helpers = { workspace = true }
|
|
pezkuwi-zombienet-configuration = { workspace = true }
|
|
pezkuwi-zombienet-sdk = { workspace = true }
|
|
pezsc-block-builder = { workspace = true, default-features = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
rstest = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
tracing-subscriber = { workspace = true }
|
|
txtesttool = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-transaction-pool/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime/runtime-benchmarks",
|
|
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
|
"pezkuwi-zombienet-sdk/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",
|
|
"txtesttool/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"anyhow/std",
|
|
"bizinikiwi-test-runtime-client/std",
|
|
"bizinikiwi-test-runtime-transaction-pool/std",
|
|
"pezcumulus-zombienet-sdk-helpers/std",
|
|
"pezkuwi-zombienet-configuration/std",
|
|
"pezkuwi-zombienet-sdk/std",
|
|
"pezsc-block-builder/std",
|
|
"pezsc-client-api/std",
|
|
"pezsc-transaction-pool-api/std",
|
|
"pezsc-utils/std",
|
|
"pezsp-blockchain/std",
|
|
"pezsp-consensus/std",
|
|
"prometheus-endpoint/std",
|
|
"serde_json/std",
|
|
"txtesttool/std",
|
|
]
|
|
try-runtime = [
|
|
"bizinikiwi-test-runtime-client/try-runtime",
|
|
"bizinikiwi-test-runtime-transaction-pool/try-runtime",
|
|
"bizinikiwi-test-runtime/try-runtime",
|
|
"pezsc-block-builder/try-runtime",
|
|
"pezsc-client-api/try-runtime",
|
|
"pezsc-transaction-pool-api/try-runtime",
|
|
"pezsp-api/try-runtime",
|
|
"pezsp-blockchain/try-runtime",
|
|
"pezsp-consensus/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"pezsp-transaction-pool/try-runtime",
|
|
]
|
|
serde = []
|
|
with-tracing = []
|