@@ -11,16 +11,24 @@ edition = "2021"
1111scale-info = { version = " 2.1.2" , default-features = false , features = [" derive" ] }
1212serde = { version = " 1.0.136" , optional = true }
1313codec = { package = " parity-scale-codec" , version = " 3.0.0" , default-features = false , features = [" max-encoded-len" ] }
14+
15+ # substrate
1416sp-runtime = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.23" , default-features = false }
1517sp-std = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.23" , default-features = false }
1618frame-support = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.23" , default-features = false }
1719frame-system = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.23" , default-features = false }
18- orml-traits = { path = " ../traits" , version = " 0.4.1-dev" , default-features = false }
20+
21+ # polkadot
22+ pallet-xcm = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" , default-features = false }
1923xcm = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" , default-features = false }
2024xcm-builder = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" , default-features = false }
2125xcm-executor = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" , default-features = false }
2226
27+ # orml
28+ orml-traits = { path = " ../traits" , version = " 0.4.1-dev" , default-features = false }
29+
2330[dev-dependencies ]
31+ # substrate
2432sp-io = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.23" , default-features = false }
2533sp-core = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.23" }
2634pallet-balances = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.23" }
@@ -34,13 +42,10 @@ parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polk
3442
3543# polkadot
3644polkadot-parachain = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" }
37- xcm = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" }
38- xcm-executor = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" }
39- xcm-builder = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" }
40- pallet-xcm = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" }
4145polkadot-runtime-parachains = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" }
4246xcm-simulator = { git = " https://github.com/paritytech/polkadot" , branch = " release-v0.9.23" }
4347
48+ # orml
4449orml-tokens = { path = " ../tokens" }
4550orml-xtokens = { path = " ../xtokens" }
4651orml-xcm = { path = " ../xcm" }
@@ -57,15 +62,15 @@ std = [
5762 " frame-support/std" ,
5863 " frame-system/std" ,
5964 " orml-traits/std" ,
65+ " pallet-xcm/std" ,
6066 " xcm/std" ,
6167 " xcm-builder/std" ,
6268 " xcm-executor/std" ,
6369]
6470runtime-benchmarks = [
6571 " frame-support/runtime-benchmarks" ,
6672 " frame-system/runtime-benchmarks" ,
67-
73+ " pallet-xcm/runtime-benchmarks " ,
6874 " xcm-builder/runtime-benchmarks" ,
69- " xcm-executor/runtime-benchmarks" ,
7075]
7176try-runtime = [" frame-support/try-runtime" ]
0 commit comments