3139ffa25e
- snowbridge-pezpallet-* → pezsnowbridge-pezpallet-* (201 refs) - pallet/ directories → pezpallet/ (4 locations) - Fixed pezpallet.rs self-include recursion bug - Fixed sc-chain-spec hardcoded crate name in derive macro - Reverted .pezpallet_by_name() to .pallet_by_name() (subxt API) - Added BizinikiwiConfig type alias for zombienet tests - Deleted obsolete session state files Verified: pezsnowbridge-pezpallet-*, pezpallet-staking, pezpallet-staking-async, pezframe-benchmarking-cli all pass cargo check
92 lines
2.7 KiB
TOML
92 lines
2.7 KiB
TOML
[package]
|
|
name = "pezpallet-xcm"
|
|
version = "7.0.0"
|
|
description = "A pezpallet for handling XCM programs."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/pezpallet-xcm"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bounded-collections = { workspace = true }
|
|
codec = { features = ["derive"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { optional = true, features = [
|
|
"derive",
|
|
], workspace = true, default-features = true }
|
|
tracing = { workspace = true }
|
|
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
xcm-runtime-pezapis = { workspace = true }
|
|
|
|
# marked optional, used in benchmarking
|
|
pezframe-benchmarking = { optional = true, workspace = true }
|
|
hex-literal = { workspace = true, default-features = false }
|
|
pezpallet-balances = { optional = true, workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezpallet-assets = { workspace = true, default-features = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true, default-features = true }
|
|
pezkuwi-teyrchain-primitives = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
xcm-pez-simulator = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bounded-collections/std",
|
|
"codec/std",
|
|
"pezframe-benchmarking?/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezpallet-balances/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime/std",
|
|
"tracing/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm-runtime-pezapis/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-benchmarking/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-assets/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-runtime-pezapis/runtime-benchmarks",
|
|
"xcm-pez-simulator/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
test-utils = ["std"]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-assets/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezkuwi-runtime-teyrchains/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|