mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 13:37:57 +00:00
51c87d8525
We will calculate the tree route always against the best block and thus, we also should use this one to check if we should skip the checks.
49 lines
2.0 KiB
TOML
49 lines
2.0 KiB
TOML
[package]
|
|
name = "sc-transaction-pool"
|
|
version = "4.0.0-dev"
|
|
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"
|
|
parking_lot = "0.12.1"
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
thiserror = "1.0.30"
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
|
sc-transaction-pool-api = { version = "4.0.0-dev", path = "./api" }
|
|
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
|
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
|
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
|
sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
array-bytes = "4.1"
|
|
assert_matches = "1.3.0"
|
|
criterion = "0.4.0"
|
|
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
|
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
|
substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../test-utils/runtime/transaction-pool" }
|
|
|
|
[[bench]]
|
|
name = "basics"
|
|
harness = false
|