mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-25 21:11:07 +00:00
04fcc71809
* primitives/sr-primitives -> primitives/runtime * update
28 lines
764 B
TOML
28 lines
764 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 = "../runtime", default-features = false }
|
|
|
|
[features]
|
|
std = [
|
|
"codec",
|
|
"derive_more",
|
|
"futures",
|
|
"log",
|
|
"primitives",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-runtime/std",
|
|
]
|