-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathCargo.toml
99 lines (88 loc) · 2.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
authors = ["Composable Developers"]
edition = "2021"
homepage = "https://composable.finance"
name = "pallet-multihop-xcm-ibc"
version = "1.0.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[package.metadata.cargo-udeps.ignore]
development = ["pallet-balances"]
# alias "parity-scale-code" to "codec"
[dependencies.codec]
default-features = false
features = ["derive"]
package = "parity-scale-codec"
version = "3.0.0"
[dependencies]
bech32-no_std = { workspace = true, default-features = false, features = [
"strict",
] }
composable-traits = { path = "../composable-traits", default-features = false, features = [
"centauri",
] }
xc-core = { path = "../../../cvm/lib/core", default-features = false, features = [
"xcm",
] }
hex = { version = "0.4.3", default-features = false }
composable-support = { default-features = false, path = "../composable-support" }
frame-benchmarking = { default-features = false, optional = true, workspace = true }
frame-support = { default-features = false, workspace = true }
frame-system = { default-features = false, workspace = true }
sp-core = { default-features = false, workspace = true }
sp-io = { default-features = false, workspace = true }
sp-runtime = { default-features = false, workspace = true }
sp-std = { default-features = false, workspace = true }
xcm = { default-features = false, workspace = true }
pallet-ibc = { workspace = true, default-features = false }
ibc-primitives = { workspace = true, default-features = false }
log = { version = "0.4.14", default-features = false }
scale-info = { version = "2.1.1", default-features = false, features = [
"derive",
] }
primitives = { path = "../../runtime/primitives", default-features = false }
orml-xtokens = { workspace = true, default-features = false }
ibc-rs-scale = { workspace = true, default-features = false, features = [
"parity-scale-codec",
"serde",
] }
[dev-dependencies]
frame-benchmarking = { default-features = false, workspace = true }
pallet-balances = { workspace = true }
[features]
default = ["std"]
std = [
"bech32-no_std/std",
"codec/std",
"composable-support/std",
"composable-traits/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"hex/std",
"ibc-primitives/std",
"ibc-rs-scale/std",
"log/std",
"orml-xtokens/std",
"pallet-balances/std",
"pallet-ibc/std",
"primitives/std",
"scale-info/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"xc-core/std",
"xcm/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"ibc-primitives/runtime-benchmarks",
"orml-xtokens/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-ibc/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]