[package] name = "pezpallet-xcm" version = "7.0.0" description = "A pallet 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-apis = { 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-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-apis/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-apis/runtime-benchmarks", "xcm-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", ]