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.
74 lines
2.2 KiB
TOML
74 lines
2.2 KiB
TOML
[package]
|
|
name = "governance-zagros-integration-tests"
|
|
version = "0.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Zagros governance integration tests with xcm-pez-emulator"
|
|
publish = false
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, default-features = true }
|
|
|
|
# Bizinikiwi
|
|
pezframe-support = { workspace = true, default-features = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezpallet-utility = { workspace = true, default-features = true }
|
|
pezpallet-whitelist = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
|
|
pezpallet-xcm = { workspace = true, default-features = true }
|
|
xcm = { workspace = true, default-features = true }
|
|
|
|
emulated-integration-tests-common = { workspace = true }
|
|
|
|
# Local
|
|
asset-hub-zagros-runtime = { workspace = true }
|
|
collectives-zagros-runtime = { workspace = true }
|
|
zagros-runtime = { workspace = true }
|
|
zagros-system-emulated-network = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"asset-hub-zagros-runtime/runtime-benchmarks",
|
|
"collectives-zagros-runtime/runtime-benchmarks",
|
|
"emulated-integration-tests-common/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-utility/runtime-benchmarks",
|
|
"pezpallet-whitelist/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
"zagros-runtime/runtime-benchmarks",
|
|
"zagros-system-emulated-network/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"emulated-integration-tests-common/std",
|
|
"zagros-runtime/std",
|
|
"zagros-system-emulated-network/std",
|
|
]
|
|
try-runtime = [
|
|
"asset-hub-zagros-runtime/try-runtime",
|
|
"collectives-zagros-runtime/try-runtime",
|
|
"emulated-integration-tests-common/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-utility/try-runtime",
|
|
"pezpallet-whitelist/try-runtime",
|
|
"pezpallet-xcm/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"xcm/try-runtime",
|
|
"zagros-runtime/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
tuples-96 = []
|