fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
This commit is contained in:
+4
-1
@@ -1449,7 +1449,10 @@ relay-bizinikiwi-client = { version = "0.1.0", path = "pezbridges/relays/client-
|
||||
relay-utils = { version = "0.1.0", path = "pezbridges/relays/utils" }
|
||||
remote-externalities = { path = "bizinikiwi/utils/pezframe/remote-externalities", version = "0.35.0", default-features = false, package = "pezframe-remote-externalities" }
|
||||
# Using rustls-tls for pure Rust TLS - no OpenSSL dependency
|
||||
reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tls", "json"] }
|
||||
reqwest = { version = "0.12.9", default-features = false, features = [
|
||||
"json",
|
||||
"rustls-tls",
|
||||
] }
|
||||
revm = { version = "27.0.2", default-features = false }
|
||||
ripemd = { version = "0.1.3", default-features = false }
|
||||
rlp = { version = "0.6.1", default-features = false }
|
||||
|
||||
@@ -50,7 +50,10 @@ harness = false
|
||||
|
||||
[dependencies]
|
||||
# Umbrella crate for re-exports
|
||||
pezkuwi-sdk = { workspace = true, default-features = true, features = ["node", "runtime"] }
|
||||
pezkuwi-sdk = { workspace = true, default-features = true, features = [
|
||||
"node",
|
||||
"runtime",
|
||||
] }
|
||||
|
||||
# third-party dependencies
|
||||
array-bytes = { workspace = true, default-features = true }
|
||||
|
||||
@@ -24,7 +24,5 @@ pezsp-runtime = { workspace = true }
|
||||
default = ["std"]
|
||||
std = ["pezsp-core/std", "pezsp-runtime/std"]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -50,7 +50,5 @@ runtime-benchmarks = [
|
||||
"bizinikiwi-test-runtime/runtime-benchmarks",
|
||||
"pezsc-chain-spec/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezsc-chain-spec/std",
|
||||
]
|
||||
std = ["pezsc-chain-spec/std"]
|
||||
with-tracing = []
|
||||
|
||||
@@ -26,6 +26,4 @@ pezsc-cli = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = ["pezsc-cli/runtime-benchmarks"]
|
||||
std = [
|
||||
"pezsc-cli/std",
|
||||
]
|
||||
std = ["pezsc-cli/std"]
|
||||
|
||||
@@ -23,7 +23,5 @@ pezsp-wasm-interface = { workspace = true, default-features = true }
|
||||
thiserror = { workspace = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
]
|
||||
std = ["log/std"]
|
||||
serde = []
|
||||
|
||||
@@ -41,10 +41,7 @@ runtime-benchmarks = [
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
"pezsp-trie/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"bizinikiwi-test-runtime-client/std",
|
||||
"pezsp-blockchain/std",
|
||||
]
|
||||
std = ["bizinikiwi-test-runtime-client/std", "pezsp-blockchain/std"]
|
||||
try-runtime = [
|
||||
"bizinikiwi-test-runtime-client/try-runtime",
|
||||
"pezsp-api/try-runtime",
|
||||
|
||||
@@ -26,7 +26,4 @@ wasm-instrument = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
std = [
|
||||
"pezsc-allocator/std",
|
||||
"polkavm/std",
|
||||
]
|
||||
std = ["pezsc-allocator/std", "polkavm/std"]
|
||||
|
||||
@@ -24,9 +24,5 @@ pezsc-executor-common = { workspace = true, default-features = true }
|
||||
pezsp-wasm-interface = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsc-executor-common/std",
|
||||
"polkavm/std",
|
||||
]
|
||||
std = ["log/std", "pezsc-executor-common/std", "polkavm/std"]
|
||||
serde = []
|
||||
|
||||
@@ -42,8 +42,6 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime-interface/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -47,6 +47,4 @@ bandersnatch-experimental = [
|
||||
]
|
||||
std = []
|
||||
serde = []
|
||||
runtime-benchmarks = [
|
||||
"pezsp-application-crypto/runtime-benchmarks",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-application-crypto/runtime-benchmarks"]
|
||||
|
||||
@@ -39,9 +39,7 @@ runtime-benchmarks = [
|
||||
"pezsp-mmr-primitives/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezsp-blockchain/std",
|
||||
]
|
||||
std = ["pezsp-blockchain/std"]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-blockchain/try-runtime",
|
||||
|
||||
@@ -23,7 +23,5 @@ pezsp-runtime = { workspace = true, default-features = true }
|
||||
[features]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
std = []
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -21,8 +21,5 @@ log = { workspace = true, default-features = true }
|
||||
prometheus-endpoint = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
"prometheus-endpoint/std",
|
||||
]
|
||||
std = ["log/std", "prometheus-endpoint/std"]
|
||||
serde = []
|
||||
|
||||
@@ -39,10 +39,5 @@ tower-http = { workspace = true, features = ["cors"] }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = ["pezsc-rpc-api/runtime-benchmarks"]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsc-rpc-api/std",
|
||||
"prometheus-endpoint/std",
|
||||
"serde/std",
|
||||
]
|
||||
std = ["log/std", "pezsc-rpc-api/std", "prometheus-endpoint/std", "serde/std"]
|
||||
serde = []
|
||||
|
||||
@@ -44,9 +44,6 @@ runtime-benchmarks = [
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
"pezsp-version/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezkuwi-subxt/std",
|
||||
"pezsc-executor-common/std",
|
||||
]
|
||||
std = ["pezkuwi-subxt/std", "pezsc-executor-common/std"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -23,7 +23,5 @@ parking_lot = { workspace = true, default-features = true }
|
||||
pezsp-core = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
]
|
||||
std = ["log/std"]
|
||||
serde = []
|
||||
|
||||
@@ -21,7 +21,5 @@ thiserror = { workspace = true }
|
||||
tokio = { features = ["time"], workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
]
|
||||
std = ["log/std"]
|
||||
serde = []
|
||||
|
||||
@@ -39,12 +39,7 @@ runtime-benchmarks = [
|
||||
"pezsp-io/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsc-telemetry/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
std = ["log/std", "pezsc-telemetry/std"]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -31,8 +31,5 @@ thiserror = { workspace = true }
|
||||
wasm-timer = { workspace = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsc-utils/std",
|
||||
]
|
||||
std = ["log/std", "pezsc-utils/std"]
|
||||
serde = []
|
||||
|
||||
@@ -32,14 +32,6 @@ runtime-benchmarks = [
|
||||
"pezsp-blockchain/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsp-blockchain/std",
|
||||
"pezsp-core/std",
|
||||
"pezsp-runtime/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-blockchain/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
std = ["log/std", "pezsp-blockchain/std", "pezsp-core/std", "pezsp-runtime/std"]
|
||||
try-runtime = ["pezsp-blockchain/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -28,8 +28,5 @@ tokio-test = { workspace = true }
|
||||
[features]
|
||||
default = ["metered"]
|
||||
metered = []
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsp-arithmetic/std",
|
||||
]
|
||||
std = ["log/std", "pezsp-arithmetic/std"]
|
||||
serde = []
|
||||
|
||||
@@ -19,6 +19,4 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
pezsp-crypto-hashing-proc-macro = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"pezsp-crypto-hashing-proc-macro/std",
|
||||
]
|
||||
std = ["pezsp-crypto-hashing-proc-macro/std"]
|
||||
|
||||
@@ -134,10 +134,7 @@ try-runtime = [
|
||||
"pezsp-transaction-pool?/try-runtime",
|
||||
"pezsp-version?/try-runtime",
|
||||
]
|
||||
experimental = [
|
||||
"pezframe-support/experimental",
|
||||
"pezframe-system/experimental",
|
||||
]
|
||||
experimental = ["pezframe-support/experimental", "pezframe-system/experimental"]
|
||||
runtime = [
|
||||
"pezframe-executive",
|
||||
"pezframe-system-rpc-runtime-api",
|
||||
|
||||
@@ -46,10 +46,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"remote-externalities/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"remote-externalities/std",
|
||||
]
|
||||
std = ["log/std", "remote-externalities/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -32,9 +32,6 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = []
|
||||
try-runtime = [
|
||||
"pezframe-system/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezframe-system/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
experimental = []
|
||||
|
||||
@@ -27,8 +27,5 @@ scale-info = { features = ["derive"], optional = true, workspace = true }
|
||||
[features]
|
||||
default = ["scale"]
|
||||
scale = ["dep:codec", "scale-info"]
|
||||
std = [
|
||||
"codec?/std",
|
||||
"scale-info?/std",
|
||||
]
|
||||
std = ["codec?/std", "scale-info?/std"]
|
||||
serde = []
|
||||
|
||||
@@ -78,10 +78,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-staking/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsp-npos-elections/std",
|
||||
]
|
||||
std = ["log/std", "pezsp-npos-elections/std"]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -38,10 +38,7 @@ runtime-benchmarks = [
|
||||
"pezframe-support/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"pezframe-election-provider-solution-type/std",
|
||||
]
|
||||
std = ["codec/std", "pezframe-election-provider-solution-type/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -56,10 +56,7 @@ try-runtime = [
|
||||
"pezframe-system/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
experimental = [
|
||||
"pezframe-support/experimental",
|
||||
"pezframe-system/experimental",
|
||||
]
|
||||
experimental = ["pezframe-support/experimental", "pezframe-system/experimental"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -41,10 +41,7 @@ pezsp-version = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
with-tracing = [
|
||||
"pezsp-io/with-tracing",
|
||||
"pezsp-tracing/with-tracing",
|
||||
]
|
||||
with-tracing = ["pezsp-io/with-tracing", "pezsp-tracing/with-tracing"]
|
||||
std = [
|
||||
"bizinikiwi-test-runtime-client/std",
|
||||
"codec/std",
|
||||
|
||||
@@ -45,9 +45,7 @@ runtime-benchmarks = [
|
||||
"pezsp-io/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
]
|
||||
std = ["log/std"]
|
||||
try-runtime = [
|
||||
"pezframe-support/try-runtime",
|
||||
"pezframe-system/try-runtime",
|
||||
|
||||
@@ -60,10 +60,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-staking/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezpallet-staking-reward-curve/std",
|
||||
]
|
||||
std = ["log/std", "pezpallet-staking-reward-curve/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -43,11 +43,7 @@ serde_full = ["codec/serde", "scale-info/serde", "serde", "serde/alloc"]
|
||||
decode = ["scale-info/decode"]
|
||||
|
||||
std = ["codec/std", "decode", "scale-info/std", "serde/std", "serde_full"]
|
||||
serde = [
|
||||
"codec/serde",
|
||||
"dep:serde",
|
||||
"scale-info?/serde",
|
||||
]
|
||||
serde = ["codec/serde", "dep:serde", "scale-info?/serde"]
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
@@ -53,10 +53,7 @@ runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezkuwi-sdk/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -48,6 +48,4 @@ std = [
|
||||
]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
runtime-benchmarks = [
|
||||
"pezsp-io?/runtime-benchmarks",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-io?/runtime-benchmarks"]
|
||||
|
||||
@@ -36,9 +36,5 @@ default = ["scale"]
|
||||
scale = ["dep:codec", "scale-info"]
|
||||
precompiles-sol-interfaces = ["alloy-core"]
|
||||
unstable-hostfn = []
|
||||
std = [
|
||||
"alloy-core?/std",
|
||||
"codec?/std",
|
||||
"scale-info?/std",
|
||||
]
|
||||
std = ["alloy-core?/std", "codec?/std", "scale-info?/std"]
|
||||
serde = []
|
||||
|
||||
@@ -50,10 +50,7 @@ pezpallet-root-offences = { workspace = true, default-features = true }
|
||||
pezpallet-staking = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezframe-system/std",
|
||||
]
|
||||
std = ["log/std", "pezframe-system/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -30,7 +30,5 @@ pezsp-runtime = { workspace = true, default-features = true }
|
||||
[features]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
std = []
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -101,8 +101,8 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-staking/runtime-benchmarks",
|
||||
"pezsp-state-machine?/runtime-benchmarks",
|
||||
"pezsp-timestamp/runtime-benchmarks",
|
||||
"pezsp-trie/runtime-benchmarks",
|
||||
"pezsp-timestamp/runtime-benchmarks"
|
||||
]
|
||||
try-runtime = [
|
||||
"pezframe-system/try-runtime",
|
||||
@@ -112,6 +112,7 @@ try-runtime = [
|
||||
"pezsp-inherents/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"pezsp-staking/try-runtime",
|
||||
"pezsp-timestamp/try-runtime",
|
||||
]
|
||||
experimental = ["pezframe-support-procedural/experimental"]
|
||||
# By default some types have documentation, `no-metadata-docs` allows to reduce the documentation
|
||||
|
||||
@@ -61,10 +61,7 @@ std = [
|
||||
"serde/std",
|
||||
"test-pezpallet/std",
|
||||
]
|
||||
experimental = [
|
||||
"pezframe-support/experimental",
|
||||
"pezframe-system/experimental",
|
||||
]
|
||||
experimental = ["pezframe-support/experimental", "pezframe-system/experimental"]
|
||||
runtime-benchmarks = [
|
||||
"pezframe-benchmarking/runtime-benchmarks",
|
||||
"pezframe-executive/runtime-benchmarks",
|
||||
|
||||
@@ -38,10 +38,7 @@ runtime-benchmarks = [
|
||||
"pezsp-blockchain/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezsp-blockchain/std",
|
||||
"pezsp-rpc/std",
|
||||
]
|
||||
std = ["pezsp-blockchain/std", "pezsp-rpc/std"]
|
||||
try-runtime = [
|
||||
"pezpallet-transaction-payment-rpc-runtime-api/try-runtime",
|
||||
"pezsp-api/try-runtime",
|
||||
|
||||
@@ -70,8 +70,5 @@ runtime-benchmarks = [
|
||||
"pezsp-trie?/runtime-benchmarks",
|
||||
"pezsp-version/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
"pezsp-version/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime", "pezsp-version/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -35,12 +35,7 @@ std = [
|
||||
]
|
||||
|
||||
# Serde support without relying on std features.
|
||||
serde = [
|
||||
"codec/serde",
|
||||
"dep:serde",
|
||||
"pezsp-core/serde",
|
||||
"scale-info/serde",
|
||||
]
|
||||
serde = ["codec/serde", "dep:serde", "pezsp-core/serde", "scale-info/serde"]
|
||||
|
||||
# This feature enables all crypto primitives for `no_std` builds like microcontrollers
|
||||
# or Intel SGX.
|
||||
@@ -56,10 +51,7 @@ full_crypto = [
|
||||
# This feature adds BLS crypto primitives.
|
||||
# It should not be used in production since the implementation and interface may still
|
||||
# be subject to significant changes.
|
||||
bls-experimental = [
|
||||
"pezsp-core/bls-experimental",
|
||||
"pezsp-io/bls-experimental",
|
||||
]
|
||||
bls-experimental = ["pezsp-core/bls-experimental", "pezsp-io/bls-experimental"]
|
||||
|
||||
# This feature adds Bandersnatch crypto primitives.
|
||||
# It should not be used in production since the implementation and interface may still
|
||||
@@ -69,6 +61,4 @@ bandersnatch-experimental = [
|
||||
"pezsp-io/bandersnatch-experimental",
|
||||
]
|
||||
with-tracing = []
|
||||
runtime-benchmarks = [
|
||||
"pezsp-io/runtime-benchmarks",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-io/runtime-benchmarks"]
|
||||
|
||||
@@ -48,7 +48,5 @@ num-bigint = { workspace = true }
|
||||
pezsp-arithmetic = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"num-bigint/std",
|
||||
]
|
||||
std = ["num-bigint/std"]
|
||||
serde = []
|
||||
|
||||
@@ -43,7 +43,4 @@ runtime-benchmarks = [
|
||||
"pezsp-application-crypto/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -37,10 +37,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"pezsp-consensus/std",
|
||||
]
|
||||
std = ["codec/std", "pezsp-consensus/std"]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-consensus/try-runtime",
|
||||
|
||||
@@ -35,11 +35,6 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-inherents/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
std = ["log/std"]
|
||||
try-runtime = ["pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -58,7 +58,4 @@ runtime-benchmarks = [
|
||||
"pezsp-application-crypto/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -29,8 +29,5 @@ runtime-benchmarks = [
|
||||
"pezsp-api/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -61,7 +61,4 @@ runtime-benchmarks = [
|
||||
"pezsp-consensus-slots/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -27,9 +27,5 @@ default = ["std"]
|
||||
std = ["codec/std", "pezsp-timestamp/std", "scale-info/std", "serde/std"]
|
||||
|
||||
# Serde support without relying on std features.
|
||||
serde = [
|
||||
"codec/serde",
|
||||
"dep:serde",
|
||||
"scale-info/serde",
|
||||
]
|
||||
serde = ["codec/serde", "dep:serde", "scale-info/serde"]
|
||||
runtime-benchmarks = ["pezsp-timestamp/runtime-benchmarks"]
|
||||
|
||||
@@ -65,6 +65,4 @@ all-curves = [
|
||||
"ed-on-bls12-377",
|
||||
"ed-on-bls12-381-bandersnatch",
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"pezsp-runtime-interface?/runtime-benchmarks",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-runtime-interface?/runtime-benchmarks"]
|
||||
|
||||
@@ -24,6 +24,4 @@ quote = { workspace = true }
|
||||
syn = { features = ["full", "parsing"], workspace = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"pezsp-crypto-hashing/std",
|
||||
]
|
||||
std = ["pezsp-crypto-hashing/std"]
|
||||
|
||||
@@ -37,8 +37,5 @@ runtime-benchmarks = [
|
||||
"pezsp-api/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -37,7 +37,5 @@ std = [
|
||||
"thiserror",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-runtime?/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime?/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime?/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -30,7 +30,5 @@ std = ["pezsp-core/std", "pezsp-runtime/std", "strum/std"]
|
||||
# be subject to significant changes.
|
||||
bandersnatch-experimental = ["pezsp-core/bandersnatch-experimental"]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -59,7 +59,4 @@ runtime-benchmarks = [
|
||||
"pezsp-api/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -49,6 +49,4 @@ serde = [
|
||||
"scale-info/serde",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -48,8 +48,5 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = []
|
||||
try-runtime = [
|
||||
"pezsp-npos-elections/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -28,8 +28,5 @@ runtime-benchmarks = [
|
||||
"pezsp-api/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -16,7 +16,5 @@ workspace = true
|
||||
alloy-core = { workspace = true, features = ["sol-types"] }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"alloy-core/std",
|
||||
]
|
||||
std = ["alloy-core/std"]
|
||||
serde = []
|
||||
|
||||
@@ -38,12 +38,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezsc-executor-common/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsc-executor/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
std = ["pezsc-executor-common/std"]
|
||||
try-runtime = ["pezsc-executor/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -35,9 +35,7 @@ std = [
|
||||
"serde/std",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = [
|
||||
"codec/serde",
|
||||
"dep:serde",
|
||||
|
||||
@@ -81,7 +81,4 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime-interface/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -28,8 +28,4 @@ default = ["std"]
|
||||
std = ["codec/std", "impl-serde/std", "pezsp-debug-derive/std", "serde/std"]
|
||||
|
||||
# Serde support without relying on std features.
|
||||
serde = [
|
||||
"codec/serde",
|
||||
"dep:serde",
|
||||
"impl-serde",
|
||||
]
|
||||
serde = ["codec/serde", "dep:serde", "impl-serde"]
|
||||
|
||||
@@ -48,6 +48,4 @@ runtime-benchmarks = [
|
||||
"pezsp-application-crypto/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -36,8 +36,5 @@ runtime-benchmarks = [
|
||||
"pezsp-inherents/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-inherents/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -27,8 +27,5 @@ runtime-benchmarks = [
|
||||
"pezsp-api/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -41,8 +41,5 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-trie?/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-inherents/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -55,6 +55,4 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-version-proc-macro/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
|
||||
@@ -40,11 +40,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-statement-store/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezframe-benchmarking-cli/std",
|
||||
"pezsc-chain-spec/std",
|
||||
"pezsc-cli/std",
|
||||
]
|
||||
std = ["pezframe-benchmarking-cli/std", "pezsc-chain-spec/std", "pezsc-cli/std"]
|
||||
try-runtime = [
|
||||
"pezcumulus-test-runtime/try-runtime",
|
||||
"pezframe-benchmarking-cli/try-runtime",
|
||||
|
||||
@@ -25,9 +25,7 @@ runtime-benchmarks = [
|
||||
"pez-generate-bags/runtime-benchmarks",
|
||||
"pez-kitchensink-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pez-generate-bags/std",
|
||||
]
|
||||
std = ["pez-generate-bags/std"]
|
||||
try-runtime = [
|
||||
"pez-generate-bags/try-runtime",
|
||||
"pez-kitchensink-runtime/try-runtime",
|
||||
|
||||
@@ -46,13 +46,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"bizinikiwi-rpc-client/std",
|
||||
"log/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"bizinikiwi-rpc-client/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
std = ["bizinikiwi-rpc-client/std", "log/std"]
|
||||
try-runtime = ["bizinikiwi-rpc-client/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -36,12 +36,6 @@ runtime-benchmarks = [
|
||||
"pezsc-rpc-api/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsc-rpc-api/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsc-rpc-api/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
std = ["log/std", "pezsc-rpc-api/std"]
|
||||
try-runtime = ["pezsc-rpc-api/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -44,11 +44,7 @@ runtime-benchmarks = [
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
"pezsp-trie/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"pezsc-client-api/std",
|
||||
"pezsc-rpc-api/std",
|
||||
]
|
||||
std = ["codec/std", "pezsc-client-api/std", "pezsc-rpc-api/std"]
|
||||
try-runtime = [
|
||||
"pezsc-client-api/try-runtime",
|
||||
"pezsc-rpc-api/try-runtime",
|
||||
|
||||
@@ -38,9 +38,7 @@ runtime-benchmarks = [
|
||||
"pezsc-rpc-api/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezsc-rpc-api/std",
|
||||
]
|
||||
std = ["pezsc-rpc-api/std"]
|
||||
try-runtime = [
|
||||
"pezframe-support/try-runtime",
|
||||
"pezframe-system/try-runtime",
|
||||
|
||||
@@ -40,7 +40,5 @@ runtime-benchmarks = [
|
||||
"pezsp-state-machine/runtime-benchmarks",
|
||||
"pezsp-trie/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -43,7 +43,5 @@ tokio = { features = [
|
||||
], workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
]
|
||||
std = ["log/std"]
|
||||
serde = []
|
||||
|
||||
@@ -67,9 +67,7 @@ runtime-benchmarks = [
|
||||
"pezsp-io/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = [
|
||||
"alloy-consensus/serde",
|
||||
"alloy-core/serde",
|
||||
|
||||
@@ -33,8 +33,6 @@ pezsp-tracing = { workspace = true, default-features = true }
|
||||
default = ["std"]
|
||||
std = ["codec/std", "pezsp-core/std", "pezsp-runtime/std", "scale-info/std"]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -36,8 +36,5 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"xcm/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
"xcm/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime", "xcm/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -29,8 +29,4 @@ runtime-benchmarks = [
|
||||
"pezbp-header-pez-chain/runtime-benchmarks",
|
||||
"relay-utils/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pez-finality-relay/std",
|
||||
"relay-utils/std",
|
||||
"tracing/std",
|
||||
]
|
||||
std = ["pez-finality-relay/std", "relay-utils/std", "tracing/std"]
|
||||
|
||||
@@ -31,8 +31,5 @@ runtime-benchmarks = [
|
||||
"pezbp-header-pez-chain/runtime-benchmarks",
|
||||
"relay-utils/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"relay-utils/std",
|
||||
"tracing/std",
|
||||
]
|
||||
std = ["relay-utils/std", "tracing/std"]
|
||||
serde = []
|
||||
|
||||
@@ -34,9 +34,5 @@ runtime-benchmarks = [
|
||||
"relay-bizinikiwi-client/runtime-benchmarks",
|
||||
"relay-utils/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"relay-bizinikiwi-client/std",
|
||||
"relay-utils/std",
|
||||
"tracing/std",
|
||||
]
|
||||
std = ["relay-bizinikiwi-client/std", "relay-utils/std", "tracing/std"]
|
||||
serde = []
|
||||
|
||||
@@ -20,11 +20,11 @@ async-trait = { workspace = true }
|
||||
backoff = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
# Using reqwest with rustls-tls for pure Rust TLS (no OpenSSL dependency)
|
||||
reqwest = { workspace = true }
|
||||
jsonpath_lib = { workspace = true }
|
||||
num-traits = { workspace = true, default-features = true }
|
||||
parking_lot = { workspace = true, default-features = true }
|
||||
pezsp-tracing = { workspace = true, default-features = true }
|
||||
reqwest = { workspace = true }
|
||||
serde_json = { workspace = true, default-features = true }
|
||||
sysinfo = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
@@ -44,13 +44,7 @@ runtime-benchmarks = [
|
||||
"pezbp-runtime/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"prometheus-endpoint/std",
|
||||
"tracing/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezbp-runtime/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
std = ["prometheus-endpoint/std", "tracing/std"]
|
||||
try-runtime = ["pezbp-runtime/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -32,6 +32,4 @@ bizinikiwi-build-script-utils = { workspace = true, default-features = true }
|
||||
default = []
|
||||
runtime-benchmarks = ["pezkuwi-omni-node-lib/runtime-benchmarks"]
|
||||
try-runtime = ["pezkuwi-omni-node-lib/try-runtime"]
|
||||
std = [
|
||||
"pezkuwi-omni-node-lib/std",
|
||||
]
|
||||
std = ["pezkuwi-omni-node-lib/std"]
|
||||
|
||||
@@ -102,7 +102,9 @@ pezcumulus-client-consensus-common = { workspace = true, default-features = true
|
||||
pezcumulus-client-consensus-proposer = { workspace = true, default-features = true }
|
||||
pezcumulus-client-consensus-relay-chain = { workspace = true, default-features = true }
|
||||
pezcumulus-client-service = { workspace = true, default-features = true }
|
||||
pezcumulus-client-teyrchain-inherent = { workspace = true, default-features = true, features = ["mock"] }
|
||||
pezcumulus-client-teyrchain-inherent = { workspace = true, default-features = true, features = [
|
||||
"mock",
|
||||
] }
|
||||
pezcumulus-primitives-aura = { workspace = true, default-features = true }
|
||||
pezcumulus-primitives-core = { workspace = true, default-features = true }
|
||||
pezcumulus-relay-chain-interface = { workspace = true, default-features = true }
|
||||
|
||||
@@ -72,9 +72,7 @@ runtime-benchmarks = [
|
||||
"xcm-pez-simulator/runtime-benchmarks",
|
||||
"xcm/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"xcm-pez-simulator/std",
|
||||
]
|
||||
std = ["xcm-pez-simulator/std"]
|
||||
try-runtime = [
|
||||
"pezcumulus-pezpallet-teyrchain-system/try-runtime",
|
||||
"pezcumulus-primitives-core/try-runtime",
|
||||
|
||||
@@ -23,14 +23,14 @@ pezkuwi-zombienet-configuration = { workspace = true }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = [
|
||||
"pezcumulus-primitives-core/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezkuwi-zombienet-sdk/runtime-benchmarks"
|
||||
"pezcumulus-primitives-core/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezkuwi-zombienet-sdk/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"codec/std",
|
||||
"pezkuwi-zombienet-configuration/std",
|
||||
"pezkuwi-zombienet-sdk/std"
|
||||
"log/std",
|
||||
"codec/std",
|
||||
"pezkuwi-zombienet-configuration/std",
|
||||
"pezkuwi-zombienet-sdk/std",
|
||||
]
|
||||
serde = []
|
||||
|
||||
@@ -33,24 +33,24 @@ rstest = { workspace = true }
|
||||
[features]
|
||||
zombie-ci = []
|
||||
runtime-benchmarks = [
|
||||
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezsc-statement-store/runtime-benchmarks",
|
||||
"pezsp-keyring/runtime-benchmarks",
|
||||
"pezsp-statement-store/runtime-benchmarks",
|
||||
"pezkuwi-zombienet-orchestrator/runtime-benchmarks",
|
||||
"pezkuwi-zombienet-sdk/runtime-benchmarks"
|
||||
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezsc-statement-store/runtime-benchmarks",
|
||||
"pezsp-keyring/runtime-benchmarks",
|
||||
"pezsp-statement-store/runtime-benchmarks",
|
||||
"pezkuwi-zombienet-orchestrator/runtime-benchmarks",
|
||||
"pezkuwi-zombienet-sdk/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"anyhow/std",
|
||||
"log/std",
|
||||
"codec/std",
|
||||
"pezcumulus-zombienet-sdk-helpers/std",
|
||||
"pezkuwi-zombienet-configuration/std",
|
||||
"pezkuwi-zombienet-orchestrator/std",
|
||||
"pezkuwi-zombienet-sdk/std",
|
||||
"pezsc-statement-store/std",
|
||||
"serde/std",
|
||||
"serde_json/std"
|
||||
"anyhow/std",
|
||||
"log/std",
|
||||
"codec/std",
|
||||
"pezcumulus-zombienet-sdk-helpers/std",
|
||||
"pezkuwi-zombienet-configuration/std",
|
||||
"pezkuwi-zombienet-orchestrator/std",
|
||||
"pezkuwi-zombienet-sdk/std",
|
||||
"pezsc-statement-store/std",
|
||||
"serde/std",
|
||||
"serde_json/std",
|
||||
]
|
||||
serde = []
|
||||
|
||||
@@ -22,7 +22,5 @@ scale-info = { features = ["derive"], workspace = true }
|
||||
default = ["std"]
|
||||
std = ["codec/std", "pezsp-core/std", "pezsp-runtime/std", "scale-info/std"]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -35,8 +35,5 @@ runtime-benchmarks = [
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezsp-trie/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"pezkuwi-pez-node-primitives/std",
|
||||
]
|
||||
std = ["codec/std", "pezkuwi-pez-node-primitives/std"]
|
||||
serde = []
|
||||
|
||||
@@ -33,7 +33,4 @@ runtime-benchmarks = [
|
||||
"pezkuwi-pez-node-primitives/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezkuwi-erasure-coding/std",
|
||||
"pezkuwi-pez-node-primitives/std",
|
||||
]
|
||||
std = ["pezkuwi-erasure-coding/std", "pezkuwi-pez-node-primitives/std"]
|
||||
|
||||
@@ -53,9 +53,5 @@ runtime-benchmarks = [
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezkuwichain-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"gum/std",
|
||||
"pezkuwi-node-core-pvf-common/std",
|
||||
]
|
||||
std = ["codec/std", "gum/std", "pezkuwi-node-core-pvf-common/std"]
|
||||
serde = []
|
||||
|
||||
@@ -21,7 +21,4 @@ runtime-benchmarks = [
|
||||
"pezkuwi-node-subsystem-types/runtime-benchmarks",
|
||||
"pezkuwi-overseer/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezkuwi-node-subsystem-types/std",
|
||||
"pezkuwi-overseer/std",
|
||||
]
|
||||
std = ["pezkuwi-node-subsystem-types/std", "pezkuwi-overseer/std"]
|
||||
|
||||
@@ -31,7 +31,5 @@ tokio-tungstenite = { workspace = true }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = ["gum/runtime-benchmarks"]
|
||||
std = [
|
||||
"gum/std",
|
||||
]
|
||||
std = ["gum/std"]
|
||||
serde = []
|
||||
|
||||
@@ -22,7 +22,5 @@ pezsp-runtime = { workspace = true }
|
||||
default = ["std"]
|
||||
std = ["codec/std", "pezsp-runtime/std"]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -22,8 +22,5 @@ runtime-benchmarks = [
|
||||
"gum/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"gum/std",
|
||||
]
|
||||
std = ["codec/std", "gum/std"]
|
||||
serde = []
|
||||
|
||||
@@ -20,9 +20,5 @@ rustversion = { workspace = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"bizinikiwi-wasm-builder/std",
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"bizinikiwi-wasm-builder/runtime-benchmarks",
|
||||
]
|
||||
std = ["bizinikiwi-wasm-builder/std"]
|
||||
runtime-benchmarks = ["bizinikiwi-wasm-builder/runtime-benchmarks"]
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user