ea341084f0
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
65 lines
1.6 KiB
TOML
65 lines
1.6 KiB
TOML
[package]
|
|
name = "pezpallet-staking-async-rc-runtime-constants"
|
|
version = "7.0.0"
|
|
description = "Constants used throughout the Staking Async RC network."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[package.metadata.pezkuwi-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
smallvec = { workspace = true, default-features = true }
|
|
|
|
pezframe-support = { workspace = true }
|
|
pezkuwi-primitives = { workspace = true }
|
|
pezkuwi-runtime-common = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-weights = { workspace = true }
|
|
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"pezframe-support/std",
|
|
"pezkuwi-primitives/std",
|
|
"pezkuwi-runtime-common/std",
|
|
"pezsp-core/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-weights/std",
|
|
"xcm-builder/std",
|
|
"xcm/std",
|
|
]
|
|
|
|
# Set timing constants (e.g. session period) to faster versions to speed up testing.
|
|
fast-runtime = []
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezkuwi-runtime-common/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezkuwi-primitives/try-runtime",
|
|
"pezkuwi-runtime-common/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"xcm-builder/try-runtime",
|
|
"xcm/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
tuples-96 = []
|