mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 19:51:02 +00:00
7f2c72395a
* mostly there with westend * add network * initial way to set host api version * 3 tests all passing * Remove duplication * fix runtime-benchmarks * Fix typo --------- Co-authored-by: joepetrowski <joe@parity.io>
60 lines
4.1 KiB
TOML
60 lines
4.1 KiB
TOML
[package]
|
|
name = "integration-tests-common"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
description = "Common resources for integration testing with xcm-emulator"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
|
|
# Substrate
|
|
grandpa = { package = "sc-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-authority-discovery = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
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" }
|
|
sp-consensus-babe = { 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-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-im-online = { 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-service = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-primitives = { 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" }
|
|
polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
kusama-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
westend-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
westend-runtime-constants = { 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" }
|
|
parachain-info = { path = "../../../pallets/parachain-info" }
|
|
cumulus-primitives-core = { path = "../../../../primitives/core" }
|
|
penpal-runtime = { path = "../../../runtimes/testing/penpal" }
|
|
asset-hub-polkadot-runtime = { path = "../../../runtimes/assets/asset-hub-polkadot" }
|
|
asset-hub-kusama-runtime = { path = "../../../runtimes/assets/asset-hub-kusama" }
|
|
asset-hub-westend-runtime = { path = "../../../runtimes/assets/asset-hub-westend" }
|
|
collectives-polkadot-runtime = { path = "../../../runtimes/collectives/collectives-polkadot" }
|
|
bridge-hub-kusama-runtime = { path = "../../../runtimes/bridge-hubs/bridge-hub-kusama" }
|
|
bridge-hub-polkadot-runtime = { path = "../../../runtimes/bridge-hubs/bridge-hub-polkadot" }
|
|
xcm-emulator = { default-features = false, path = "../../../../xcm/xcm-emulator" }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"kusama-runtime/runtime-benchmarks",
|
|
"polkadot-runtime/runtime-benchmarks",
|
|
"westend-runtime/runtime-benchmarks",
|
|
]
|