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:
Lulu
2023-08-30 16:57:49 +02:00
committed by GitHub
parent be7f1244c9
commit 31c79470a3
59 changed files with 438 additions and 436 deletions
+1 -1
View File
@@ -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" }
+3 -3
View File
@@ -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"