mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-19 22:45:40 +00:00
Merge txpool-runtime-api with txpool-api (#4320)
* Remove transaction-pool-runtime-api * Merge runtime-api with transaction-pool.
This commit is contained in:
committed by
Bastian Köcher
parent
70db5da6c4
commit
3805393a13
@@ -5,10 +5,23 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
derive_more = "0.99.2"
|
||||
futures = "0.3.1"
|
||||
log = "0.4.8"
|
||||
serde = { version = "1.0.101", features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
||||
primitives = { package = "sp-core", path = "../core" }
|
||||
sp-runtime = { path = "../sr-primitives" }
|
||||
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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user