78095d125e
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
100 lines
3.8 KiB
TOML
100 lines
3.8 KiB
TOML
[package]
|
|
name = "xcm-pez-emulator"
|
|
description = "Test kit to emulate XCM program execution."
|
|
version = "0.5.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
array-bytes = { workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
impl-trait-for-tuples = { workspace = true }
|
|
paste = { workspace = true, default-features = true }
|
|
tracing = { workspace = true, default-features = true }
|
|
|
|
# Bizinikiwi
|
|
pezframe-support = { workspace = true, default-features = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezpallet-aura = { workspace = true, default-features = true }
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-message-queue = { workspace = true, default-features = true }
|
|
pezpallet-timestamp = { workspace = true, default-features = true }
|
|
pezsp-arithmetic = { workspace = true, default-features = true }
|
|
pezsp-consensus-aura = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-crypto-hashing = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
|
|
# Pezcumulus
|
|
pezcumulus-pezpallet-teyrchain-system = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-core = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-teyrchain-inherent = { workspace = true, default-features = true }
|
|
pezcumulus-test-relay-sproof-builder = { workspace = true, default-features = true }
|
|
teyrchains-common = { workspace = true, default-features = true }
|
|
|
|
# Pezkuwi
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true, default-features = true }
|
|
pezkuwi-teyrchain-primitives = { workspace = true, default-features = true }
|
|
xcm = { workspace = true, default-features = true }
|
|
xcm-executor = { workspace = true, default-features = true }
|
|
xcm-pez-simulator = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezcumulus-primitives-teyrchain-inherent/runtime-benchmarks",
|
|
"pezcumulus-test-relay-sproof-builder/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
|
|
"pezpallet-aura/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-timestamp/runtime-benchmarks",
|
|
"pezsp-consensus-aura/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"teyrchains-common/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-pez-simulator/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
std = ["xcm-pez-simulator/std"]
|
|
try-runtime = [
|
|
"pezcumulus-pezpallet-teyrchain-system/try-runtime",
|
|
"pezcumulus-primitives-core/try-runtime",
|
|
"pezcumulus-test-relay-sproof-builder/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezkuwi-primitives/try-runtime",
|
|
"pezkuwi-runtime-teyrchains/try-runtime",
|
|
"pezkuwi-teyrchain-primitives/try-runtime",
|
|
"pezpallet-aura/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezpallet-message-queue/try-runtime",
|
|
"pezpallet-timestamp/try-runtime",
|
|
"pezsp-consensus-aura/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"teyrchains-common/try-runtime",
|
|
"xcm-executor/try-runtime",
|
|
"xcm-pez-simulator/try-runtime",
|
|
"xcm/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
with-tracing = []
|
|
tuples-96 = []
|