mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
53 lines
1.8 KiB
TOML
53 lines
1.8 KiB
TOML
[package]
|
|
name = "sc-transaction-pool"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Substrate transaction pool implementation."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.79"
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
futures = "0.3.30"
|
|
futures-timer = "3.0.2"
|
|
linked-hash-map = "0.5.4"
|
|
log = { workspace = true, default-features = true }
|
|
parking_lot = "0.12.1"
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
|
sc-client-api = { path = "../api" }
|
|
sc-transaction-pool-api = { path = "api" }
|
|
sc-utils = { path = "../utils" }
|
|
sp-api = { path = "../../primitives/api" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-crypto-hashing = { path = "../../primitives/crypto/hashing" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sp-tracing = { path = "../../primitives/tracing" }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
array-bytes = "6.1"
|
|
assert_matches = "1.3.0"
|
|
criterion = "0.4.0"
|
|
sc-block-builder = { path = "../block-builder" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
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
|