mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 01:57:56 +00:00
2b48e09b24
* upgrade a few dependencies * make it compile at the expense of duplicate deps * fix web-wasm and a warning * introduce activate-wasm-bindgen-features crate * Revert "introduce activate-wasm-bindgen-features crate" This reverts commit 5a6e41e683f8a4844c0a735dcd08caabb2313f11. * add getrandom feature to sc-consensus-aura
24 lines
933 B
TOML
24 lines
933 B
TOML
[package]
|
|
name = "substrate-test-runtime-transaction-pool"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../client" }
|
|
parking_lot = "0.11.1"
|
|
codec = { package = "parity-scale-codec", version = "1.3.1" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
|
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
|
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
|
sc-transaction-graph = { version = "2.0.0", path = "../../../client/transaction-pool/graph" }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
derive_more = "0.99.2"
|