mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 17:31:03 +00:00
1b0baab401
* Add xcm-simulator and xcm-simulator-example. * Abstract xcmp and dmp handling. * Use mock message queue. * Xcm simulator example unit tests. * Use relay chain block number on sending msg. * Fix typo. * fmt * more fmt * Fix deps.
27 lines
1.2 KiB
TOML
27 lines
1.2 KiB
TOML
[package]
|
|
name = "xcm-simulator-example"
|
|
version = "0.9.8"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Examples of xcm-simulator usage."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
paste = "1.0.5"
|
|
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
xcm = { path = "../../" }
|
|
xcm-simulator = { path = "../" }
|
|
xcm-executor = { path = "../../xcm-executor" }
|
|
xcm-builder = { path = "../../xcm-builder" }
|
|
pallet-xcm = { path = "../../pallet-xcm" }
|
|
polkadot-core-primitives = { path = "../../../core-primitives"}
|
|
polkadot-runtime-parachains = { path = "../../../runtime/parachains" }
|
|
polkadot-parachain = { path = "../../../parachain" } |