-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCargo.toml
58 lines (52 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "pallet-xcm"
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true
[dependencies]
bounded-collections = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true, optional = true }
log = { workspace = true }
frame-benchmarking = { workspace = true, optional = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
xcm = { workspace = true }
xcm-executor = { workspace = true }
[dev-dependencies]
pallet-balances = { workspace = true }
polkadot-runtime-parachains = { workspace = true }
polkadot-parachain = { workspace = true }
xcm-builder = { workspace = true }
[features]
default = ["std"]
# Enable `VersionedRuntimeUpgrade` for the migrations that is currently still experimental.
experimental = ["frame-support/experimental"]
std = [
"bounded-collections/std",
"parity-scale-codec/std",
"scale-info/std",
"serde",
"sp-std/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"xcm/std",
"xcm-executor/std",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
]
try-runtime = ["frame-support/try-runtime"]