mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-24 04:21:06 +00:00
Rename squatted crates (#1241)
* Rename squatted crates This commit adds the staging- prefix to squatted crates so we can go forward and publish them to crates.io. Using the staging- prefix is a temp fix until we decide on replacement names. https://forum.parity.io/t/renaming-squated-crates-in-substrate-polkadot-cumulus/1964/6 * Fix test after crate renames * Update Lockfile
This commit is contained in:
Generated
+302
-302
File diff suppressed because it is too large
Load Diff
@@ -41,8 +41,8 @@ sp-std = { path = "../../../../substrate/primitives/std", default-features = fal
|
||||
sp-trie = { path = "../../../../substrate/primitives/trie", default-features = false }
|
||||
|
||||
# Polkadot dependencies
|
||||
xcm = { path = "../../../../polkadot/xcm", default-features = false }
|
||||
xcm-builder = { path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
bp-test-utils = { path = "../../primitives/test-utils" }
|
||||
|
||||
@@ -26,8 +26,8 @@ sp-std = { path = "../../../../substrate/primitives/std", default-features = fal
|
||||
|
||||
# Polkadot Dependencies
|
||||
|
||||
xcm = { path = "../../../../polkadot/xcm", default-features = false }
|
||||
xcm-builder = { path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { path = "../../../../substrate/primitives/io" }
|
||||
|
||||
@@ -17,7 +17,7 @@ sp-runtime = { path = "../../../substrate/primitives/runtime", default-features
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
||||
|
||||
@@ -29,7 +29,7 @@ sp-version = { path = "../../../substrate/primitives/version", default-features
|
||||
|
||||
# Polkadot
|
||||
polkadot-parachain = { path = "../../../polkadot/parachain", default-features = false, features = [ "wasm-api" ]}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false }
|
||||
|
||||
@@ -14,7 +14,7 @@ sp-runtime = { path = "../../../substrate/primitives/runtime", default-features
|
||||
frame-support = { path = "../../../substrate/frame/support", default-features = false}
|
||||
frame-system = { path = "../../../substrate/frame/system", default-features = false}
|
||||
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
|
||||
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
||||
|
||||
|
||||
@@ -19,8 +19,8 @@ sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
polkadot-runtime-common = { path = "../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
||||
@@ -35,7 +35,7 @@ sp-core = { path = "../../../substrate/primitives/core" }
|
||||
pallet-balances = { path = "../../../substrate/frame/balances" }
|
||||
|
||||
# Polkadot
|
||||
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder" }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder" }
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-parachain-system = { path = "../parachain-system" }
|
||||
|
||||
@@ -56,7 +56,7 @@ substrate-prometheus-endpoint = { path = "../../../substrate/utils/prometheus" }
|
||||
# Polkadot
|
||||
polkadot-cli = { path = "../../../polkadot/cli", features = ["rococo-native"] }
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-client-cli = { path = "../../client/cli" }
|
||||
|
||||
@@ -56,9 +56,9 @@ sp-version = { path = "../../../substrate/primitives/version", default-features
|
||||
pallet-xcm = { path = "../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
polkadot-parachain = { path = "../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -29,9 +29,9 @@ sp-std = { path = "../../../substrate/primitives/std", default-features = false
|
||||
|
||||
# Polkadot
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives", default-features = false}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false }
|
||||
|
||||
@@ -25,8 +25,8 @@ polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives"
|
||||
polkadot-parachain = { path = "../../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
||||
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
||||
xcm = { path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
|
||||
@@ -23,8 +23,8 @@ polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives"
|
||||
polkadot-parachain = { path = "../../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
||||
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
||||
xcm = { path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
|
||||
@@ -25,8 +25,8 @@ polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives"
|
||||
polkadot-parachain = { path = "../../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
||||
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
||||
xcm = { path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
|
||||
@@ -23,8 +23,8 @@ polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives"
|
||||
polkadot-parachain = { path = "../../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
||||
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
||||
xcm = { path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
|
||||
+2
-2
@@ -25,8 +25,8 @@ polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives"
|
||||
polkadot-parachain = { path = "../../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
||||
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
||||
xcm = { path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
|
||||
@@ -36,14 +36,14 @@ polkadot-primitives = { path = "../../../../../polkadot/primitives", default-fea
|
||||
polkadot-runtime-parachains = { path = "../../../../../polkadot/runtime/parachains" }
|
||||
polkadot-runtime = { path = "../../../../../polkadot/runtime/polkadot" }
|
||||
polkadot-runtime-constants = { path = "../../../../../polkadot/runtime/polkadot/constants" }
|
||||
kusama-runtime = { path = "../../../../../polkadot/runtime/kusama" }
|
||||
kusama-runtime = { package = "staging-kusama-runtime", path = "../../../../../polkadot/runtime/kusama" }
|
||||
kusama-runtime-constants = { path = "../../../../../polkadot/runtime/kusama/constants" }
|
||||
rococo-runtime = { path = "../../../../../polkadot/runtime/rococo" }
|
||||
rococo-runtime-constants = { path = "../../../../../polkadot/runtime/rococo/constants" }
|
||||
westend-runtime = { path = "../../../../../polkadot/runtime/westend" }
|
||||
westend-runtime-constants = { path = "../../../../../polkadot/runtime/westend/constants" }
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
|
||||
@@ -13,7 +13,7 @@ sp-runtime = { path = "../../../../substrate/primitives/runtime", default-featur
|
||||
frame-support = { path = "../../../../substrate/frame/support", default-features = false}
|
||||
frame-system = { path = "../../../../substrate/frame/system", default-features = false}
|
||||
|
||||
xcm = { path = "../../../../polkadot/xcm", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false}
|
||||
|
||||
cumulus-primitives-core = { path = "../../../primitives/core", default-features = false }
|
||||
cumulus-pallet-xcm = { path = "../../../pallets/xcm", default-features = false }
|
||||
|
||||
@@ -61,9 +61,9 @@ pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchma
|
||||
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -56,9 +56,9 @@ polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", d
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
polkadot-runtime-constants = { path = "../../../../../polkadot/runtime/polkadot/constants", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -59,9 +59,9 @@ polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", d
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
westend-runtime-constants = { path = "../../../../../polkadot/runtime/westend/constants", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -21,9 +21,9 @@ pallet-asset-tx-payment = { path = "../../../../../substrate/frame/transaction-p
|
||||
|
||||
# Polkadot
|
||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../common", default-features = false }
|
||||
|
||||
@@ -35,8 +35,8 @@ parachain-info = { path = "../../../pallets/parachain-info", default-features =
|
||||
parachains-runtimes-test-utils = { path = "../../test-utils", default-features = false }
|
||||
|
||||
# Polkadot
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
|
||||
|
||||
@@ -54,9 +54,9 @@ pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchma
|
||||
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -54,9 +54,9 @@ pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchma
|
||||
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -54,9 +54,9 @@ pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchma
|
||||
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -37,9 +37,9 @@ parachains-runtimes-test-utils = { path = "../../test-utils", default-features =
|
||||
# Polkadot
|
||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Bridges
|
||||
bp-bridge-hub-rococo = { path = "../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
||||
|
||||
@@ -58,9 +58,9 @@ polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", d
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
polkadot-runtime-constants = { path = "../../../../../polkadot/runtime/polkadot/constants", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -57,9 +57,9 @@ pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features
|
||||
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -31,9 +31,9 @@ sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-
|
||||
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
||||
|
||||
@@ -25,9 +25,9 @@ sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-
|
||||
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
||||
|
||||
@@ -35,8 +35,8 @@ cumulus-test-relay-sproof-builder = { path = "../../../test/relay-sproof-builder
|
||||
parachain-info = { path = "../../pallets/parachain-info", default-features = false }
|
||||
|
||||
# Polkadot
|
||||
xcm = { path = "../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
pallet-xcm = { path = "../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../polkadot/parachain", default-features = false}
|
||||
|
||||
|
||||
@@ -58,9 +58,9 @@ polkadot-primitives = { path = "../../../../../polkadot/primitives", default-fea
|
||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -38,9 +38,9 @@ sp-version = { path = "../../../../../substrate/primitives/version", default-fea
|
||||
# Polkadot
|
||||
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
||||
polkadot-parachain = { path = "../../../../../polkadot/parachain", default-features = false}
|
||||
xcm = { path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
||||
|
||||
@@ -77,7 +77,7 @@ substrate-state-trie-migration-rpc = { path = "../../substrate/utils/frame/rpc/s
|
||||
polkadot-cli = { path = "../../polkadot/cli", features = ["rococo-native"] }
|
||||
polkadot-primitives = { path = "../../polkadot/primitives" }
|
||||
polkadot-service = { path = "../../polkadot/node/service" }
|
||||
xcm = { path = "../../polkadot/xcm" }
|
||||
xcm = { package = "staging-xcm", path = "../../polkadot/xcm" }
|
||||
|
||||
# Cumulus
|
||||
cumulus-client-cli = { path = "../client/cli" }
|
||||
|
||||
@@ -18,7 +18,7 @@ sp-trie = { path = "../../../substrate/primitives/trie", default-features = fals
|
||||
polkadot-core-primitives = { path = "../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-parachain = { path = "../../../polkadot/parachain", default-features = false}
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives", default-features = false}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -16,9 +16,9 @@ sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
polkadot-runtime-common = { path = "../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
|
||||
|
||||
# Cumulus
|
||||
|
||||
@@ -36,7 +36,7 @@ cumulus-test-relay-sproof-builder = { path = "../../test/relay-sproof-builder" }
|
||||
parachains-common = { path = "../../parachains/common" }
|
||||
|
||||
# Polkadot
|
||||
xcm = { path = "../../../polkadot/xcm" }
|
||||
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor" }
|
||||
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm" }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor" }
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
||||
polkadot-runtime-parachains = { path = "../../../polkadot/runtime/parachains" }
|
||||
|
||||
@@ -113,7 +113,7 @@ westend-runtime-constants = { path = "../../runtime/westend/constants", optional
|
||||
|
||||
# Polkadot Runtimes
|
||||
polkadot-runtime = { path = "../../runtime/polkadot", optional = true }
|
||||
kusama-runtime = { path = "../../runtime/kusama", optional = true }
|
||||
kusama-runtime = { package = "staging-kusama-runtime", path = "../../runtime/kusama", optional = true }
|
||||
westend-runtime = { path = "../../runtime/westend", optional = true }
|
||||
rococo-runtime = { path = "../../runtime/rococo", optional = true }
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ polkadot-primitives = { path = "../../../primitives" }
|
||||
sc-executor-common = { path = "../../../../substrate/client/executor/common" }
|
||||
sp-maybe-compressed-blob = { path = "../../../../substrate/primitives/maybe-compressed-blob" }
|
||||
|
||||
kusama-runtime = { path = "../../../runtime/kusama" }
|
||||
kusama-runtime = { package = "staging-kusama-runtime", path = "../../../runtime/kusama" }
|
||||
|
||||
[[bin]]
|
||||
name = "gen-ref-constants"
|
||||
|
||||
@@ -49,7 +49,7 @@ libsecp256k1 = { version = "0.7.0", default-features = false }
|
||||
runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parachains", default-features = false }
|
||||
|
||||
slot-range-helper = { path = "slot_range_helper", default-features = false }
|
||||
xcm = { path = "../../xcm", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../xcm", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.4.1"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "kusama-runtime"
|
||||
name = "staging-kusama-runtime"
|
||||
build = "build.rs"
|
||||
version = "1.0.0"
|
||||
authors.workspace = true
|
||||
@@ -107,9 +107,9 @@ runtime-common = { package = "polkadot-runtime-common", path = "../common", defa
|
||||
runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parachains", default-features = false }
|
||||
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
|
||||
|
||||
xcm = { package = "xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
||||
|
||||
@@ -40,8 +40,8 @@ frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-f
|
||||
frame-support = { path = "../../../substrate/frame/support", default-features = false }
|
||||
frame-system = { path = "../../../substrate/frame/system", default-features = false }
|
||||
|
||||
xcm = { package = "xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
|
||||
|
||||
rand = { version = "0.8.5", default-features = false }
|
||||
|
||||
@@ -98,9 +98,9 @@ runtime-common = { package = "polkadot-runtime-common", path = "../common", defa
|
||||
runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parachains", default-features = false }
|
||||
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
|
||||
|
||||
xcm = { package = "xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.4.1"
|
||||
|
||||
@@ -89,9 +89,9 @@ runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parac
|
||||
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
|
||||
polkadot-parachain = { path = "../../parachain", default-features = false }
|
||||
|
||||
xcm = { package = "xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
||||
|
||||
@@ -61,9 +61,9 @@ primitives = { package = "polkadot-primitives", path = "../../primitives", defau
|
||||
pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false }
|
||||
polkadot-parachain = { path = "../../parachain", default-features = false }
|
||||
polkadot-runtime-parachains = { path = "../parachains", default-features = false }
|
||||
xcm-builder = { path = "../../xcm/xcm-builder", default-features = false }
|
||||
xcm-executor = { path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm = { path = "../../xcm", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../xcm", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.4.1"
|
||||
|
||||
@@ -100,9 +100,9 @@ primitives = { package = "polkadot-primitives", path = "../../primitives", defau
|
||||
polkadot-parachain = { path = "../../parachain", default-features = false }
|
||||
runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parachains", default-features = false }
|
||||
|
||||
xcm = { package = "xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "../../xcm", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../xcm/xcm-builder", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.4.1"
|
||||
|
||||
@@ -12,5 +12,5 @@ generate-bags = { path = "../../../substrate/utils/frame/generate-bags" }
|
||||
sp-io = { path = "../../../substrate/primitives/io" }
|
||||
|
||||
westend-runtime = { path = "../../runtime/westend" }
|
||||
kusama-runtime = { path = "../../runtime/kusama" }
|
||||
kusama-runtime = { package = "staging-kusama-runtime", path = "../../runtime/kusama" }
|
||||
polkadot-runtime = { path = "../../runtime/polkadot" }
|
||||
|
||||
@@ -8,7 +8,7 @@ license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
polkadot-runtime = { path = "../../../runtime/polkadot" }
|
||||
kusama-runtime = { path = "../../../runtime/kusama" }
|
||||
kusama-runtime = { package = "staging-kusama-runtime", path = "../../../runtime/kusama" }
|
||||
westend-runtime = { path = "../../../runtime/westend" }
|
||||
polkadot-runtime-constants = { path = "../../../runtime/polkadot/constants" }
|
||||
kusama-runtime-constants = { path = "../../../runtime/kusama/constants" }
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
[[bin]]
|
||||
name = "staking-miner"
|
||||
name = "staging-staking-miner"
|
||||
path = "src/main.rs"
|
||||
|
||||
[package]
|
||||
name = "staking-miner"
|
||||
name = "staging-staking-miner"
|
||||
version = "1.0.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
@@ -42,7 +42,7 @@ core-primitives = { package = "polkadot-core-primitives", path = "../../core-pri
|
||||
|
||||
runtime-common = { package = "polkadot-runtime-common", path = "../../runtime/common" }
|
||||
polkadot-runtime = { path = "../../runtime/polkadot" }
|
||||
kusama-runtime = { path = "../../runtime/kusama" }
|
||||
kusama-runtime = { package = "staging-kusama-runtime", path = "../../runtime/kusama" }
|
||||
westend-runtime = { path = "../../runtime/westend" }
|
||||
exitcode = "1.1"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "xcm"
|
||||
name = "staging-xcm"
|
||||
description = "The basic XCM datastructures."
|
||||
version = "1.0.0"
|
||||
authors.workspace = true
|
||||
|
||||
@@ -16,10 +16,10 @@ frame-system = { path = "../../../substrate/frame/system", default-features = fa
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
sp-io = { path = "../../../substrate/primitives/io", default-features = false}
|
||||
xcm-executor = { path = "../xcm-executor", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../xcm-executor", default-features = false }
|
||||
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false}
|
||||
xcm = { path = "..", default-features = false }
|
||||
xcm-builder = { path = "../xcm-builder", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "..", default-features = false }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../xcm-builder", default-features = false }
|
||||
log = "0.4.17"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -27,7 +27,7 @@ pallet-balances = { path = "../../../substrate/frame/balances" }
|
||||
pallet-assets = { path = "../../../substrate/frame/assets" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-tracing = { path = "../../../substrate/primitives/tracing" }
|
||||
xcm = { path = ".." }
|
||||
xcm = { package = "staging-xcm", path = ".." }
|
||||
# temp
|
||||
pallet-xcm = { path = "../pallet-xcm" }
|
||||
polkadot-runtime-common = { path = "../../runtime/common" }
|
||||
|
||||
@@ -21,14 +21,14 @@ sp-io = { path = "../../../substrate/primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
|
||||
xcm = { path = "..", default-features = false }
|
||||
xcm-executor = { path = "../xcm-executor", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "..", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../xcm-executor", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { path = "../../../substrate/frame/balances" }
|
||||
polkadot-runtime-parachains = { path = "../../runtime/parachains" }
|
||||
polkadot-parachain = { path = "../../parachain" }
|
||||
xcm-builder = { path = "../xcm-builder" }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../xcm-builder" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "xcm-builder"
|
||||
name = "staging-xcm-builder"
|
||||
description = "Tools & types for building with XCM and its executor."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
@@ -10,8 +10,8 @@ version = "1.0.0"
|
||||
impl-trait-for-tuples = "0.2.1"
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
xcm = { path = "..", default-features = false }
|
||||
xcm-executor = { path = "../xcm-executor", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "..", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../xcm-executor", default-features = false }
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false }
|
||||
sp-arithmetic = { path = "../../../substrate/primitives/arithmetic", default-features = false }
|
||||
sp-io = { path = "../../../substrate/primitives/io", default-features = false }
|
||||
|
||||
@@ -30,6 +30,8 @@ use polkadot_runtime_parachains::{configuration, origin, shared};
|
||||
use xcm::latest::{opaque, prelude::*};
|
||||
use xcm_executor::XcmExecutor;
|
||||
|
||||
use staging_xcm_builder as xcm_builder;
|
||||
|
||||
use xcm_builder::{
|
||||
AccountId32Aliases, AllowTopLevelPaidExecutionFrom, AllowUnpaidExecutionFrom,
|
||||
ChildParachainAsNative, ChildParachainConvertsVia, ChildSystemParachainAsSuperuser,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "xcm-executor"
|
||||
name = "staging-xcm-executor"
|
||||
description = "An abstract and configurable XCM message executor."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
@@ -10,7 +10,7 @@ version = "1.0.0"
|
||||
impl-trait-for-tuples = "0.2.2"
|
||||
environmental = { version = "1.1.4", default-features = false }
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
xcm = { path = "..", default-features = false }
|
||||
xcm = { package = "staging-xcm", path = "..", default-features = false }
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false }
|
||||
sp-io = { path = "../../../substrate/primitives/io", default-features = false }
|
||||
sp-arithmetic = { path = "../../../substrate/primitives/arithmetic", default-features = false }
|
||||
|
||||
@@ -20,8 +20,8 @@ sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
||||
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
||||
xcm = { path = "../..", default-features = false }
|
||||
xcm-executor = { path = ".." }
|
||||
xcm = { package = "staging-xcm", path = "../..", default-features = false }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = ".." }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -14,9 +14,9 @@ frame-support = { path = "../../../substrate/frame/support" }
|
||||
sp-io = { path = "../../../substrate/primitives/io" }
|
||||
sp-std = { path = "../../../substrate/primitives/std" }
|
||||
|
||||
xcm = { path = ".." }
|
||||
xcm-executor = { path = "../xcm-executor" }
|
||||
xcm-builder = { path = "../xcm-builder" }
|
||||
xcm = { package = "staging-xcm", path = ".." }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../xcm-executor" }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../xcm-builder" }
|
||||
polkadot-core-primitives = { path = "../../core-primitives" }
|
||||
polkadot-parachain = { path = "../../parachain" }
|
||||
polkadot-runtime-parachains = { path = "../../runtime/parachains" }
|
||||
|
||||
@@ -22,10 +22,10 @@ sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sp-io = { path = "../../../../substrate/primitives/io" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
|
||||
xcm = { path = "../.." }
|
||||
xcm = { package = "staging-xcm", path = "../.." }
|
||||
xcm-simulator = { path = ".." }
|
||||
xcm-executor = { path = "../../xcm-executor" }
|
||||
xcm-builder = { path = "../../xcm-builder" }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm-executor" }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../xcm-builder" }
|
||||
pallet-xcm = { path = "../../pallet-xcm" }
|
||||
polkadot-core-primitives = { path = "../../../core-primitives" }
|
||||
polkadot-runtime-parachains = { path = "../../../runtime/parachains" }
|
||||
|
||||
@@ -22,10 +22,10 @@ sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sp-io = { path = "../../../../substrate/primitives/io" }
|
||||
|
||||
xcm = { path = "../.." }
|
||||
xcm = { package = "staging-xcm", path = "../.." }
|
||||
xcm-simulator = { path = ".." }
|
||||
xcm-executor = { path = "../../xcm-executor" }
|
||||
xcm-builder = { path = "../../xcm-builder" }
|
||||
xcm-executor = { package = "staging-xcm-executor", path = "../../xcm-executor" }
|
||||
xcm-builder = { package = "staging-xcm-builder", path = "../../xcm-builder" }
|
||||
pallet-xcm = { path = "../../pallet-xcm" }
|
||||
polkadot-core-primitives = { path = "../../../core-primitives" }
|
||||
polkadot-runtime-parachains = { path = "../../../runtime/parachains" }
|
||||
|
||||
Reference in New Issue
Block a user