mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 04:41:03 +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
42 lines
2.5 KiB
TOML
42 lines
2.5 KiB
TOML
[package]
|
|
name = "collectives-polkadot-integration-tests"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Polkadot Collectives parachain runtime integration tests based on xcm-emulator"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
|
|
# Substrate
|
|
sp-runtime = { path = "../../../../../../substrate/primitives/runtime", default-features = false}
|
|
frame-support = { path = "../../../../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../../../../substrate/frame/system", default-features = false}
|
|
sp-core = { path = "../../../../../../substrate/primitives/core", default-features = false}
|
|
sp-weights = { path = "../../../../../../substrate/primitives/weights", default-features = false}
|
|
pallet-balances = { path = "../../../../../../substrate/frame/balances", default-features = false}
|
|
pallet-assets = { path = "../../../../../../substrate/frame/assets", default-features = false}
|
|
pallet-core-fellowship = { path = "../../../../../../substrate/frame/core-fellowship", default-features = false}
|
|
pallet-salary = { path = "../../../../../../substrate/frame/salary", default-features = false}
|
|
|
|
# Polkadot
|
|
polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives", default-features = false}
|
|
polkadot-parachain = { path = "../../../../../../polkadot/parachain", default-features = false}
|
|
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
|
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
|
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
|
|
parachains-common = { path = "../../../../common" }
|
|
cumulus-pallet-xcmp-queue = { path = "../../../../../pallets/xcmp-queue", default-features = false}
|
|
cumulus-pallet-parachain-system = { path = "../../../../../pallets/parachain-system" }
|
|
collectives-polkadot-runtime = { path = "../../../../runtimes/collectives/collectives-polkadot" }
|
|
asset-hub-polkadot-runtime = { path = "../../../../runtimes/assets/asset-hub-polkadot" }
|
|
|
|
# Local
|
|
xcm-emulator = { path = "../../../../../xcm/xcm-emulator", default-features = false}
|
|
integration-tests-common = { path = "../../common", default-features = false}
|