mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-25 04:45:42 +00:00
31c79470a3
* 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
25 lines
1013 B
TOML
25 lines
1013 B
TOML
[package]
|
|
name = "remote-ext-tests-bags-list"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
polkadot-runtime = { path = "../../../runtime/polkadot" }
|
|
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" }
|
|
westend-runtime-constants = { path = "../../../runtime/westend/constants" }
|
|
|
|
pallet-bags-list-remote-tests = { path = "../../../../substrate/frame/bags-list/remote-tests" }
|
|
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
|
frame-system = { path = "../../../../substrate/frame/system" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
|
|
clap = { version = "4.4.1", features = ["derive"] }
|
|
log = "0.4.17"
|
|
tokio = { version = "1.24.2", features = ["macros"] }
|