mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
New service initial commit (#1234)
* New service initial commit * More separation of the new and old services * Fix review comments * Adds polkadot.json * Fix browser build * Remove unused import * Update node/service/src/lib.rs Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com> * Remove duplicate json files Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
This commit is contained in:
@@ -21,7 +21,8 @@ polkadot-primitives = { path = "../primitives" }
|
||||
polkadot-cli = { path = "../cli" }
|
||||
polkadot-network = { path = "../network" }
|
||||
polkadot-validation = { path = "../validation" }
|
||||
polkadot-service = { path = "../service" }
|
||||
polkadot-service = { path = "../service", optional = true}
|
||||
polkadot-service-new = { path = "../node/service", optional = true }
|
||||
log = "0.4.8"
|
||||
tokio = "0.2.13"
|
||||
futures-timer = "2.0"
|
||||
@@ -29,3 +30,8 @@ codec = { package = "parity-scale-codec", version = "1.3.0" }
|
||||
|
||||
[dev-dependencies]
|
||||
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
|
||||
[features]
|
||||
default = ["service-old"]
|
||||
service-old = [ "polkadot-service" ]
|
||||
service-rewr = [ "polkadot-service-new" ]
|
||||
|
||||
Reference in New Issue
Block a user