mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 06:48:01 +00:00
7773daaf5b
* rename crate: sp-transaction-pool-api -> sp-transaction-pool * move primitives/core/derive-debug -> primitives/derive-debug; primitives/core/storage -> primitives/storage * rename crate sp-core-storage -> sp-storage * rename and move: test/utils/transaction-factory -> client/transaction-factory * move transaction-factory -> node/transaction-factory * fix missing rename * Move chain-spec-builder into bin/utils * move subkey into bin/utils * Update new subkey location * Update docs to reflect new location for utils * fixing import name
27 lines
690 B
TOML
27 lines
690 B
TOML
[package]
|
|
name = "sp-transaction-pool"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", optional = true }
|
|
derive_more = { version = "0.99.2", optional = true }
|
|
futures = { version = "0.3.1", optional = true }
|
|
log = { version = "0.4.8", optional = true }
|
|
serde = { version = "1.0.101", features = ["derive"], optional = true}
|
|
sp-api = { path = "../api", default-features = false }
|
|
sp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec",
|
|
"derive_more",
|
|
"futures",
|
|
"log",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-runtime/std",
|
|
]
|