mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
26 lines
894 B
TOML
26 lines
894 B
TOML
[package]
|
|
name = "xcm-simulator"
|
|
description = "Test kit to simulate cross-chain message passing and XCM execution"
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
paste = "1.0.7"
|
|
|
|
frame-support = { path = "../../../substrate/frame/support" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
sp-std = { path = "../../../substrate/primitives/std" }
|
|
|
|
xcm = { package = "staging-xcm", path = ".." }
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../xcm-executor" }
|
|
xcm-builder = { package = "staging-xcm-builder", path = "../xcm-builder" }
|
|
polkadot-core-primitives = { path = "../../core-primitives" }
|
|
polkadot-parachain-primitives = { path = "../../parachain" }
|
|
polkadot-runtime-parachains = { path = "../../runtime/parachains" }
|