mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 01:11:10 +00:00
Companion for substrate#10632 (#4689)
* Companion for substrate#10632 Signed-off-by: koushiro <koushiro.cqx@gmail.com> * cargo format Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Fix bags-list Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Update Substrate * Fix Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Fix bridges test * FMT Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> Co-authored-by: Bastian Köcher <info@kchr.de>
This commit is contained in:
+15
-15
@@ -14,9 +14,9 @@ wasm-opt = false
|
||||
crate-type = ["cdylib", "rlib"]
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "3.0", features = ["derive"], optional = true }
|
||||
log = "0.4.13"
|
||||
thiserror = "1.0.30"
|
||||
structopt = { version = "0.3.25", optional = true }
|
||||
futures = "0.3.19"
|
||||
|
||||
service = { package = "polkadot-service", path = "../node/service", default-features = false, optional = true }
|
||||
@@ -39,11 +39,11 @@ sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master",
|
||||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
|
||||
[features]
|
||||
default = [ "wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native" ]
|
||||
wasmtime = [ "sc-cli/wasmtime" ]
|
||||
db = [ "service/db" ]
|
||||
default = ["wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native"]
|
||||
wasmtime = ["sc-cli/wasmtime"]
|
||||
db = ["service/db"]
|
||||
cli = [
|
||||
"structopt",
|
||||
"clap",
|
||||
"sc-cli",
|
||||
"sc-service",
|
||||
"sc-tracing",
|
||||
@@ -52,19 +52,19 @@ cli = [
|
||||
"polkadot-node-core-pvf",
|
||||
"polkadot-performance-test",
|
||||
]
|
||||
runtime-benchmarks = [ "service/runtime-benchmarks", "polkadot-node-metrics/runtime-benchmarks" ]
|
||||
trie-memory-tracker = [ "sp-trie/memory-tracker" ]
|
||||
full-node = [ "service/full-node" ]
|
||||
try-runtime = [ "service/try-runtime" ]
|
||||
fast-runtime = [ "service/fast-runtime" ]
|
||||
runtime-benchmarks = ["service/runtime-benchmarks", "polkadot-node-metrics/runtime-benchmarks"]
|
||||
trie-memory-tracker = ["sp-trie/memory-tracker"]
|
||||
full-node = ["service/full-node"]
|
||||
try-runtime = ["service/try-runtime"]
|
||||
fast-runtime = ["service/fast-runtime"]
|
||||
|
||||
# Configure the native runtimes to use. Polkadot is enabled by default.
|
||||
#
|
||||
# Validators require the native runtime currently
|
||||
polkadot-native = [ "service/polkadot-native" ]
|
||||
kusama-native = [ "service/kusama-native" ]
|
||||
westend-native = [ "service/westend-native" ]
|
||||
rococo-native = [ "service/rococo-native" ]
|
||||
polkadot-native = ["service/polkadot-native"]
|
||||
kusama-native = ["service/kusama-native"]
|
||||
westend-native = ["service/westend-native"]
|
||||
rococo-native = ["service/rococo-native"]
|
||||
|
||||
malus = [ "full-node", "service/malus" ]
|
||||
malus = ["full-node", "service/malus"]
|
||||
runtime-metrics = ["service/runtime-metrics", "polkadot-node-metrics/runtime-metrics"]
|
||||
|
||||
Reference in New Issue
Block a user