mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-09 02:27:21 +00:00
31c79470a3
* Rename squatted crates This commit adds the staging- prefix to squatted crates so we can go forward and publish them to crates.io. Using the staging- prefix is a temp fix until we decide on replacement names. https://forum.parity.io/t/renaming-squated-crates-in-substrate-polkadot-cumulus/1964/6 * Fix test after crate renames * Update Lockfile
43 lines
1.9 KiB
TOML
43 lines
1.9 KiB
TOML
[package]
|
|
name = "xcm-emulator"
|
|
description = "Test kit to emulate XCM program execution."
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
paste = "1.0.14"
|
|
log = { version = "0.4.20", default-features = false }
|
|
lazy_static = "1.4.0"
|
|
impl-trait-for-tuples = "0.2.2"
|
|
|
|
# Substrate
|
|
frame-support = { path = "../../../substrate/frame/support" }
|
|
frame-system = { path = "../../../substrate/frame/system" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-std = { path = "../../../substrate/primitives/std" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-arithmetic = { path = "../../../substrate/primitives/arithmetic" }
|
|
sp-trie = { path = "../../../substrate/primitives/trie" }
|
|
pallet-balances = { path = "../../../substrate/frame/balances" }
|
|
pallet-message-queue = { path = "../../../substrate/frame/message-queue" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-pallet-xcmp-queue = { path = "../../pallets/xcmp-queue" }
|
|
cumulus-pallet-dmp-queue = { path = "../../pallets/dmp-queue" }
|
|
cumulus-pallet-parachain-system = { path = "../../pallets/parachain-system" }
|
|
parachain-info = { path = "../../parachains/pallets/parachain-info" }
|
|
cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" }
|
|
cumulus-test-relay-sproof-builder = { path = "../../test/relay-sproof-builder" }
|
|
parachains-common = { path = "../../parachains/common" }
|
|
|
|
# Polkadot
|
|
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm" }
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor" }
|
|
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
|
polkadot-runtime-parachains = { path = "../../../polkadot/runtime/parachains" }
|