Files
pezkuwi-sdk/pezkuwi/xcm/xcm-executor/integration-tests/Cargo.toml
T
pezkuwichain bd2d665c4e fix: comprehensive feature propagation and dep:serde fixes
- 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.
2026-01-04 20:37:14 +03:00

86 lines
2.7 KiB
TOML

[package]
name = "xcm-pez-executor-integration-tests"
description = "Integration tests for the XCM Executor"
authors.workspace = true
edition.workspace = true
license.workspace = true
version = "1.0.0"
publish = false
documentation.workspace = true
repository = { workspace = true }
homepage = { workspace = true }
[lints]
workspace = true
[dependencies]
codec = { workspace = true, default-features = true }
futures = { workspace = true }
pezframe-support = { workspace = true }
pezframe-system = { workspace = true, default-features = true }
pezkuwi-runtime-teyrchains = { workspace = true, default-features = true }
pezkuwi-test-client = { workspace = true }
pezkuwi-test-runtime = { workspace = true }
pezkuwi-test-service = { workspace = true }
pezpallet-sudo = { workspace = true, default-features = true }
pezpallet-transaction-payment = { workspace = true, default-features = true }
pezpallet-xcm = { workspace = true, default-features = true }
pezsp-consensus = { workspace = true, default-features = true }
pezsp-keyring = { workspace = true, default-features = true }
pezsp-runtime = { workspace = true }
pezsp-state-machine = { workspace = true, default-features = true }
pezsp-tracing = { workspace = true, default-features = true }
xcm = { workspace = true }
xcm-executor = { workspace = true, default-features = true }
[features]
default = ["std"]
std = [
"pezframe-support/std",
"pezframe-system/std",
"pezkuwi-runtime-teyrchains/std",
"pezkuwi-test-client/std",
"pezkuwi-test-service/std",
"pezpallet-sudo/std",
"pezsp-consensus/std",
"pezsp-runtime/std",
"xcm/std",
]
runtime-benchmarks = [
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
"pezkuwi-test-client/runtime-benchmarks",
"pezkuwi-test-runtime/runtime-benchmarks",
"pezkuwi-test-service/runtime-benchmarks",
"pezpallet-sudo/runtime-benchmarks",
"pezpallet-transaction-payment/runtime-benchmarks",
"pezpallet-xcm/runtime-benchmarks",
"pezsp-consensus/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-state-machine/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
"xcm/runtime-benchmarks",
]
try-runtime = [
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
"pezkuwi-runtime-teyrchains/try-runtime",
"pezkuwi-test-client/try-runtime",
"pezkuwi-test-runtime/try-runtime",
"pezkuwi-test-service/try-runtime",
"pezpallet-sudo/try-runtime",
"pezpallet-transaction-payment/try-runtime",
"pezpallet-xcm/try-runtime",
"pezsp-consensus/try-runtime",
"pezsp-keyring/try-runtime",
"pezsp-runtime/try-runtime",
"xcm-executor/try-runtime",
"xcm/try-runtime",
]
serde = []
experimental = []
with-tracing = []
tuples-96 = []