forked from polkadot-fellows/runtimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1.04 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
37
38
[package]
name = "asset-hub-polkadot-integration-tests"
version = "1.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
description = "Asset Hub Polkadot runtime integration tests with xcm-emulator"
publish = false
[dependencies]
codec = { package = "parity-scale-codec", version = "3.4.0" }
# Substrate
sp-runtime = { version = "28.0.0" }
frame-support = { version = "25.0.0" }
frame-system = { version = "25.0.0" }
pallet-assets = { version = "26.0.0" }
pallet-balances = { version = "25.0.0" }
pallet-asset-conversion = { version = "7.0.0" }
# Polkadot
polkadot-core-primitives = { version = "4.0.0" }
polkadot-parachain-primitives = { version = "3.0.0" }
polkadot-runtime-parachains = { version = "4.0.0" }
xcm = { package = "staging-xcm", version = "4.0.0" }
pallet-xcm = { version = "4.0.0" }
# Cumulus
parachains-common = { version = "4.0.0" }
xcm-emulator = { version = "0.2.0" }
# Local
integration-tests-common = { path = "../../common" }
[features]
runtime-benchmarks = [
"integration-tests-common/runtime-benchmarks"
]