mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 18:41:03 +00:00
f6b33fe927
* rename bridge hub + BridgeMessages type * bridge base * bridge string approach * add decl_test_bridges macro * outbound lanes on the way * get & dispatch mock bridge done * fix bridge errors + log::debug for messages * clean up * update source OutboundLaneData * rococo & wococo added * sender_receiver_accounts_parameter_types macro * sender_receiver_accounts_parameter_types macro 2 * fixed multi parachain + example on the way * working but router error * bridge working * refactor NetworkComponent * make it generic * working as generic * clean up * last bit * ".git/.scripts/commands/fmt/fmt.sh" * fix bridge hub handler name * ".git/.scripts/commands/fmt/fmt.sh" * add AssetConversion back for AssetHubWestend * Update xcm/xcm-emulator/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * add LaneId wrapper * update substrate * fix wrapper conversion * remove duplicate in workspace * Revert "update substrate" This reverts commit 92e8f201ae433aed3f70b998ebd4c23d9168d0ee. * ".git/.scripts/commands/fmt/fmt.sh" --------- Co-authored-by: command-bot <> Co-authored-by: Squirrel <gilescope@gmail.com>
40 lines
2.6 KiB
TOML
40 lines
2.6 KiB
TOML
[package]
|
|
name = "collectives-polkadot-integration-tests"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
description = "Polkadot Collectives parachain runtime integration tests based on xcm-emulator"
|
|
|
|
[dev-dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
|
|
# Substrate
|
|
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-weights = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-assets = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-core-fellowship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-salary = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot
|
|
polkadot-core-primitives = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-parachain = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm-executor = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
pallet-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus
|
|
parachains-common = { path = "../../../../common" }
|
|
cumulus-pallet-xcmp-queue = { default-features = false, path = "../../../../../pallets/xcmp-queue" }
|
|
collectives-polkadot-runtime = { path = "../../../../runtimes/collectives/collectives-polkadot" }
|
|
asset-hub-polkadot-runtime = { path = "../../../../runtimes/assets/asset-hub-polkadot" }
|
|
|
|
# Local
|
|
xcm-emulator = { default-features = false, path = "../../../../../xcm/xcm-emulator" }
|
|
integration-tests-common = { default-features = false, path = "../../common" }
|