mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 23:08:03 +00:00
810ac845b5
* fixing faulty tracing-rename * missed one
25 lines
1.1 KiB
TOML
25 lines
1.1 KiB
TOML
[package]
|
|
name = "sc-transaction-pool"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
derive_more = "0.99.2"
|
|
futures = { version = "0.3.1", features = ["compat", "compat"] }
|
|
log = "0.4.8"
|
|
parking_lot = "0.9.0"
|
|
primitives = { package = "sp-core", path = "../../primitives/core" }
|
|
sp-api = { path = "../../primitives/sr-api" }
|
|
sp-runtime = { path = "../../primitives/sr-primitives" }
|
|
txpool = { package = "sc-transaction-graph", path = "./graph" }
|
|
txpool-api = { package = "sp-transaction-pool-api", path = "../../primitives/transaction-pool" }
|
|
txpool-runtime-api = { package = "sp-transaction-pool-runtime-api", path = "../../primitives/transaction-pool/runtime-api" }
|
|
client-api = { package = "sc-client-api", path = "../api" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
|
|
[dev-dependencies]
|
|
keyring = { package = "sp-keyring", path = "../../primitives/keyring" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../test/utils/runtime/client" }
|