mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
47 lines
2.0 KiB
TOML
47 lines
2.0 KiB
TOML
[package]
|
|
name = "xcm-simulator-example"
|
|
description = "Examples of xcm-simulator usage."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
scale-info = { version = "2.5.0", features = ["derive"] }
|
|
log = { version = "0.4.14", default-features = false }
|
|
|
|
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" }
|
|
pallet-message-queue = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-uniques = { 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" }
|
|
sp-tracing = { 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" }
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"frame-system/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-message-queue/runtime-benchmarks",
|
|
"pallet-uniques/runtime-benchmarks",
|
|
"pallet-xcm/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"polkadot-runtime-parachains/runtime-benchmarks",
|
|
"polkadot-parachain/runtime-benchmarks",
|
|
]
|