mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41:02 +00:00
eadfbca388
* Allow functions to work over both parachains and relay chains * additional references * import * backup * refactoring para and relay traits * use runtime crates to build types * decouple ProcessMessage * decouple ProcessMessage 2 * dmp and xcmp handlers decouple * backup * refactor done * common int values working * added global ext with mutex * works for two mutex * single mutex and remove condvar * global test ext done * failing moving test_ext because relay block num * relay_block_number issue fixed * backup * Test working with assertions * assertions get Test as arg * DispatchArgs as generic * clean up * backup * teleports for asset-hub-kusama done * improve assert_expected_events macro * rename Test generics * check assertions for tuples * test assertions redone * reserve_transfer_assets done * send transact done * hrmp test for paras * hrmp channels test done * hrmp channels test done 2 * before modifying test dispatch * reserve tests done & Test dispatch fixed * reserve transfer local asset * force_create_and_mint_asset * force create and mint done * tests done * fix imports in common * common events refactored * add option to events attributes * asset-hub-polkadot tests done * asset-hub-westend half done * relay chain events move to common * remove failing send tests for asset-hub-westend * added events to bridge-hub-rococo * added events to collectives-polkadot * cargo clean up * fix asset-hub-westend tests * ".git/.scripts/commands/fmt/fmt.sh" * fix clippy * ".git/.scripts/commands/fmt/fmt.sh" * Removed unnecessary deps * Extracted some commonality for Kusama/Polkadot (which will be reused also for BridgeHubs) (#2971) * Extracted some commonality for Kusama/Polkadot (which will be reused also for BridgeHubs) * AssetHubRococo should better use AssetHubKusama runtime * add fund_account --------- Co-authored-by: NachoPal <ignacio.palacios.santos@gmail.com> * address comments * rename event assertion helpers * clean comments * address comments 2 * ".git/.scripts/commands/fmt/fmt.sh" --------- Co-authored-by: Giles Cope <gilescope@gmail.com> Co-authored-by: command-bot <> Co-authored-by: Branislav Kontur <bkontur@gmail.com>
39 lines
2.4 KiB
TOML
39 lines
2.4 KiB
TOML
[package]
|
|
name = "bridge-hub-rococo-integration-tests"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
description = "Bridge Hub Rococo runtime integration tests with xcm-emulator"
|
|
|
|
[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" }
|
|
|
|
# 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" }
|
|
cumulus-pallet-parachain-system = { path = "../../../../../pallets/parachain-system" }
|
|
pallet-bridge-messages = { default-features = false, path = "../../../../../bridges/modules/messages" }
|
|
bp-messages = { default-features = false, path = "../../../../../bridges/primitives/messages" }
|
|
|
|
# Local
|
|
xcm-emulator = { default-features = false, path = "../../../../../xcm/xcm-emulator" }
|
|
integration-tests-common = { default-features = false, path = "../../common" }
|