mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 21:01:02 +00:00
bfaec080cc
* fix migrations
* use society versioned runtime upgrade
* simplify usage of versionedruntimeupgrade
* use society experimental feature
* improve usage of experimental flag
* doc comment
* Merge branch 'master' of github.com:paritytech/polkadot into liam-fix-migrations
* Revert "Merge branch 'master' of github.com:paritytech/polkadot into liam-fix-migrations"
This reverts commit 41ab0621811ead11b0a7f91338b0895208feef77.
* doc comment
* westend experimental feature
* Revert "westend experimental feature"
This reverts commit 42f4f1b76655ef509a92c324d18d635a1b913dcb.
* feature gate experimental xcm migration
* update lockfile for {"substrate"}
---------
Co-authored-by: parity-processbot <>
60 lines
2.3 KiB
TOML
60 lines
2.3 KiB
TOML
[package]
|
|
name = "pallet-xcm"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
|
|
|
|
[dependencies]
|
|
bounded-collections = { version = "0.1.8", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.163", optional = true, features = ["derive"] }
|
|
log = { version = "0.4.17", default-features = false }
|
|
|
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
xcm = { path = "..", default-features = false }
|
|
xcm-executor = { path = "../xcm-executor", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-runtime-parachains = { path = "../../runtime/parachains" }
|
|
polkadot-parachain = { path = "../../parachain" }
|
|
xcm-builder = { path = "../xcm-builder" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
# Enable `VersionedRuntimeUpgrade` for the migrations that is currently still experimental.
|
|
experimental = [
|
|
"frame-support/experimental"
|
|
]
|
|
std = [
|
|
"bounded-collections/std",
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"sp-std/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"xcm/std",
|
|
"xcm-executor/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|