mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
7eba8f2162
* bump version to 0.9.23 * bump spec_version to 9230
46 lines
2.0 KiB
TOML
46 lines
2.0 KiB
TOML
[package]
|
|
name = "pallet-xcm-benchmarks"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
version = "0.9.23"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
|
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
|
|
frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] }
|
|
frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] }
|
|
log = "0.4.17"
|
|
|
|
[dev-dependencies]
|
|
pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" }
|
|
xcm-builder = { path = "../xcm-builder" }
|
|
xcm = { path = ".." }
|
|
# temp
|
|
pallet-xcm = { path = "../pallet-xcm" }
|
|
polkadot-runtime-common = { path = "../../runtime/common" }
|
|
# westend-runtime = { path = "../../runtime/westend", features = ["runtime-benchmarks"] }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std"
|
|
]
|