mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-11 21:05:49 +00:00
0c5038e556
Bumps [log](https://github.com/rust-lang/log) from 0.4.17 to 0.4.18. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.17...0.4.18) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
2.1 KiB
TOML
39 lines
2.1 KiB
TOML
[package]
|
|
name = "xcm-emulator"
|
|
description = "Test kit to emulate XCM program execution."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
paste = "1.0.5"
|
|
quote = "1.0.28"
|
|
casey = "0.4.0"
|
|
log = { version = "0.4.18", default-features = false }
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-message-queue = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
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" }
|
|
cumulus-test-service = { path = "../../test/service" }
|
|
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" }
|
|
|
|
xcm = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|