mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-21 02:45:43 +00:00
0400ed9075
* Manually fix conflicting ? Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove duplicates Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Autofix feature propagation zepter lint propagate-feature --feature try-runtime --left-side-feature-missing=ignore --workspace --fix --feature-enables-dep="try-runtime:frame-try-runtime" zepter lint propagate-feature --feature runtime-benchmarks --left-side-feature-missing=ignore --workspace --fix --feature-enables-dep="runtime-benchmarks:frame-benchmarking" zepter lint propagate-feature --feature std --left-side-feature-missing=ignore --workspace --fix zepter f f Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Bump zepter Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add some duplicates Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert "Add some duplicates" This reverts commit c6ce627273881c478f5b34f23d3a67db632dbebf. * Remove default enabled features Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Bump Zepter Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Bump in correct location 🤦 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * DNM: Add some mistakes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * DNM: Add some mistakes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert "DNM: Add some mistakes" This reverts commit d469b3f0ba2aaed5f35f6ff5995f99e682da5800. * Revert "DNM: Add some mistakes" This reverts commit d892a73a35cac01e3721bdba74574b88bd04f83c. --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
79 lines
2.8 KiB
TOML
79 lines
2.8 KiB
TOML
[package]
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Simple pallet to select collators for a parachain."
|
|
edition = "2021"
|
|
homepage = "https://substrate.io"
|
|
license = "Apache-2.0"
|
|
name = "pallet-collator-selection"
|
|
readme = "README.md"
|
|
repository = "https://github.com/paritytech/cumulus/"
|
|
version = "3.0.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
log = { version = "0.4.20", default-features = false }
|
|
codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "3.0.0" }
|
|
rand = { version = "0.8.5", features = ["std_rng"], default-features = false }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
|
sp-staking = { path = "../../../substrate/primitives/staking", default-features = false}
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false}
|
|
pallet-authorship = { path = "../../../substrate/frame/authorship", default-features = false}
|
|
pallet-session = { path = "../../../substrate/frame/session", default-features = false}
|
|
|
|
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true}
|
|
|
|
[dev-dependencies]
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
sp-tracing = { path = "../../../substrate/primitives/tracing" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
pallet-timestamp = { path = "../../../substrate/frame/timestamp" }
|
|
sp-consensus-aura = { path = "../../../substrate/primitives/consensus/aura" }
|
|
pallet-balances = { path = "../../../substrate/frame/balances" }
|
|
pallet-aura = { path = "../../../substrate/frame/aura" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-authorship/std",
|
|
"pallet-session/std",
|
|
"rand/std",
|
|
"scale-info/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|
|
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
experimental = [ "pallet-aura/experimental" ]
|