Skip to content

Commit 728247b

Browse files
MorganamiloDaanvdplas
authored andcommitted
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
1 parent 66e2cb2 commit 728247b

59 files changed

Lines changed: 438 additions & 436 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 302 additions & 302 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cumulus/bridges/bin/runtime-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ sp-std = { path = "../../../../substrate/primitives/std", default-features = fal
4141
sp-trie = { path = "../../../../substrate/primitives/trie", default-features = false }
4242

4343
# Polkadot dependencies
44-
xcm = { path = "../../../../polkadot/xcm", default-features = false }
45-
xcm-builder = { path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
44+
xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false }
45+
xcm-builder = { package = "staging-xcm-builder", path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
4646

4747
[dev-dependencies]
4848
bp-test-utils = { path = "../../primitives/test-utils" }

cumulus/bridges/modules/xcm-bridge-hub-router/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ sp-std = { path = "../../../../substrate/primitives/std", default-features = fal
2626

2727
# Polkadot Dependencies
2828

29-
xcm = { path = "../../../../polkadot/xcm", default-features = false }
30-
xcm-builder = { path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
29+
xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false }
30+
xcm-builder = { package = "staging-xcm-builder", path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
3131

3232
[dev-dependencies]
3333
sp-io = { path = "../../../../substrate/primitives/io" }

cumulus/pallets/dmp-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sp-runtime = { path = "../../../substrate/primitives/runtime", default-features
1717
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
1818

1919
# Polkadot
20-
xcm = { path = "../../../polkadot/xcm", default-features = false}
20+
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
2121

2222
# Cumulus
2323
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }

cumulus/pallets/parachain-system/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ sp-version = { path = "../../../substrate/primitives/version", default-features
2929

3030
# Polkadot
3131
polkadot-parachain = { path = "../../../polkadot/parachain", default-features = false, features = [ "wasm-api" ]}
32-
xcm = { path = "../../../polkadot/xcm", default-features = false}
32+
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
3333

3434
# Cumulus
3535
cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false }

cumulus/pallets/xcm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sp-runtime = { path = "../../../substrate/primitives/runtime", default-features
1414
frame-support = { path = "../../../substrate/frame/support", default-features = false}
1515
frame-system = { path = "../../../substrate/frame/system", default-features = false}
1616

17-
xcm = { path = "../../../polkadot/xcm", default-features = false}
17+
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
1818

1919
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
2020

cumulus/pallets/xcmp-queue/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ sp-std = { path = "../../../substrate/primitives/std", default-features = false}
1919

2020
# Polkadot
2121
polkadot-runtime-common = { path = "../../../polkadot/runtime/common", default-features = false}
22-
xcm = { path = "../../../polkadot/xcm", default-features = false}
23-
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
22+
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
23+
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false}
2424

2525
# Cumulus
2626
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
@@ -35,7 +35,7 @@ sp-core = { path = "../../../substrate/primitives/core" }
3535
pallet-balances = { path = "../../../substrate/frame/balances" }
3636

3737
# Polkadot
38-
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder" }
38+
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder" }
3939

4040
# Cumulus
4141
cumulus-pallet-parachain-system = { path = "../parachain-system" }

cumulus/parachain-template/node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ substrate-prometheus-endpoint = { path = "../../../substrate/utils/prometheus" }
5656
# Polkadot
5757
polkadot-cli = { path = "../../../polkadot/cli", features = ["rococo-native"] }
5858
polkadot-primitives = { path = "../../../polkadot/primitives" }
59-
xcm = { path = "../../../polkadot/xcm", default-features = false}
59+
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
6060

6161
# Cumulus
6262
cumulus-client-cli = { path = "../../client/cli" }

cumulus/parachain-template/runtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ sp-version = { path = "../../../substrate/primitives/version", default-features
5656
pallet-xcm = { path = "../../../polkadot/xcm/pallet-xcm", default-features = false}
5757
polkadot-parachain = { path = "../../../polkadot/parachain", default-features = false}
5858
polkadot-runtime-common = { path = "../../../polkadot/runtime/common", default-features = false}
59-
xcm = { path = "../../../polkadot/xcm", default-features = false}
60-
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder", default-features = false}
61-
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
59+
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
60+
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder", default-features = false}
61+
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false}
6262

6363
# Cumulus
6464
cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false }

cumulus/parachains/common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ sp-std = { path = "../../../substrate/primitives/std", default-features = false
2929

3030
# Polkadot
3131
polkadot-primitives = { path = "../../../polkadot/primitives", default-features = false}
32-
xcm = { path = "../../../polkadot/xcm", default-features = false}
33-
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder", default-features = false}
34-
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
32+
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}
33+
xcm-builder = { package = "staging-xcm-builder", path = "../../../polkadot/xcm/xcm-builder", default-features = false}
34+
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor", default-features = false}
3535

3636
# Cumulus
3737
pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false }

0 commit comments

Comments
 (0)