Files
pezkuwi-subxt/substrate/primitives/transaction-pool/Cargo.toml
T
Tomasz Drwięga 3805393a13 Merge txpool-runtime-api with txpool-api (#4320)
* Remove transaction-pool-runtime-api

* Merge runtime-api with transaction-pool.
2019-12-06 17:24:17 +01:00

28 lines
770 B
TOML

[package]
name = "sp-transaction-pool-api"
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 }
primitives = { package = "sp-core", path = "../core", optional = true}
serde = { version = "1.0.101", features = ["derive"], optional = true}
sp-api = { path = "../sr-api", default-features = false }
sp-runtime = { path = "../sr-primitives", default-features = false }
[features]
std = [
"codec",
"derive_more",
"futures",
"log",
"primitives",
"serde",
"sp-api/std",
"sp-runtime/std",
]