mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "pallet-bags-list-remote-tests"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "FRAME pallet bags list remote test"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
# frame
|
|
pallet-staking = { path = "../../staking" }
|
|
pallet-bags-list = { path = "..", features = ["fuzz"] }
|
|
frame-election-provider-support = { path = "../../election-provider-support" }
|
|
frame-system = { path = "../../system" }
|
|
frame-support = { path = "../../support" }
|
|
|
|
# core
|
|
sp-storage = { path = "../../../primitives/storage" }
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-tracing = { path = "../../../primitives/tracing" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
sp-std = { path = "../../../primitives/std" }
|
|
|
|
# utils
|
|
remote-externalities = { package = "frame-remote-externalities" , path = "../../../utils/frame/remote-externalities" }
|
|
|
|
# others
|
|
log = "0.4.17"
|