Skip to content
Cargo.toml 2.76 KiB
Newer Older
Gavin Wood's avatar
Gavin Wood committed
[package]
authors.workspace = true
description = "Simple pallet to select collators for a parachain."
edition.workspace = true
homepage = "https://substrate.io"
license = "Apache-2.0"
name = "pallet-collator-selection"
readme = "README.md"
repository.workspace = true
version = "9.0.0"
Gavin Wood's avatar
Gavin Wood committed

Gavin Wood's avatar
Gavin Wood committed
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Gavin Wood's avatar
Gavin Wood committed

[dependencies]
log = { workspace = true }
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.11.1", 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-balances = { path = "../../../substrate/frame/balances", default-features = false }
pallet-session = { path = "../../../substrate/frame/session", default-features = false }
Gavin Wood's avatar
Gavin Wood committed

frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true }
Gavin Wood's avatar
Gavin Wood committed

[dev-dependencies]
Alexander's avatar
Alexander committed
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-aura = { path = "../../../substrate/frame/aura" }
Gavin Wood's avatar
Gavin Wood committed

[features]
Gavin Wood's avatar
Gavin Wood committed
runtime-benchmarks = [
	"frame-benchmarking/runtime-benchmarks",
	"frame-support/runtime-benchmarks",
	"frame-system/runtime-benchmarks",
Oliver Tale-Yazdi's avatar
Oliver Tale-Yazdi committed
	"pallet-balances/runtime-benchmarks",
	"pallet-timestamp/runtime-benchmarks",
	"sp-runtime/runtime-benchmarks",
	"sp-staking/runtime-benchmarks",
Gavin Wood's avatar
Gavin Wood committed
]
std = [
	"frame-benchmarking/std",
	"frame-support/std",
	"frame-system/std",
	"pallet-authorship/std",
	"pallet-balances/std",
	"pallet-session/std",
	"scale-info/std",
	"sp-runtime/std",
	"sp-staking/std",
	"sp-std/std",
Gavin Wood's avatar
Gavin Wood committed
]
Oliver Tale-Yazdi's avatar
Oliver Tale-Yazdi committed
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",
]