-
Notifications
You must be signed in to change notification settings - Fork 710
/
Cargo.toml
36 lines (32 loc) · 2.34 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "asset-hub-rococo-integration-tests"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
description = "Asset Hub Rococo runtime integration tests with xcm-emulator"
publish = false
[lints]
workspace = true
[dependencies]
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
assert_matches = "1.5.0"
# Substrate
sp-runtime = { path = "../../../../../../../substrate/primitives/runtime", default-features = false, version = "33.0.0" }
frame-support = { path = "../../../../../../../substrate/frame/support", default-features = false, version = "30.0.0" }
pallet-balances = { path = "../../../../../../../substrate/frame/balances", default-features = false, version = "30.0.0" }
pallet-assets = { path = "../../../../../../../substrate/frame/assets", default-features = false, version = "31.0.0" }
pallet-asset-conversion = { path = "../../../../../../../substrate/frame/asset-conversion", default-features = false, version = "12.0.0" }
pallet-message-queue = { path = "../../../../../../../substrate/frame/message-queue", default-features = false, version = "33.0.0" }
# Polkadot
xcm = { package = "staging-xcm", path = "../../../../../../../polkadot/xcm", default-features = false, version = "9.0.0" }
pallet-xcm = { path = "../../../../../../../polkadot/xcm/pallet-xcm", default-features = false, version = "9.0.1" }
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../../polkadot/xcm/xcm-executor", default-features = false, version = "9.0.1" }
rococo-runtime = { version = "9.0.0", path = "../../../../../../../polkadot/runtime/rococo" }
asset-test-utils = { version = "9.0.0", path = "../../../../../runtimes/assets/test-utils" }
parachains-common = { version = "9.0.0", path = "../../../../../common" }
cumulus-pallet-parachain-system = { path = "../../../../../../pallets/parachain-system", default-features = false, version = "0.9.0" }
testnet-parachains-constants = { path = "../../../../../runtimes/constants", features = ["rococo"], version = "2.0.0" }
asset-hub-rococo-runtime = { version = "0.13.0", path = "../../../../../runtimes/assets/asset-hub-rococo" }
emulated-integration-tests-common = { path = "../../../common", default-features = false, version = "5.0.0" }
rococo-system-emulated-network = { version = "0.1.0", path = "../../../networks/rococo-system" }