1[package]2name = "pallet-collator-selection"3version = "3.0.0"4description = "Simple staking pallet with a fixed stake."5authors = ["Unique Network <support@uniquenetwork.io>"]6edition = "2021"7homepage = "https://unique.network"8repository = "https://github.com/UniqueNetwork/unique-chain"9license = "GPLv3"1011[package.metadata.docs.rs]12targets = ["x86_64-unknown-linux-gnu"]1314[dependencies]15log = { version = "0.4.17", default-features = false }16codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "3.0.0" }17rand = { version = "0.8.5", features = ["std_rng"], default-features = false }18scale-info = { version = "2.2.0", default-features = false, features = ["derive"] }19serde = { version = "1.0.145", default-features = false }2021sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }22sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }23sp-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }24frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }25frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }26pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }27pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }2829frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }3031[dev-dependencies]32sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }33sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }34sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }35sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }36pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }37sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }38pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }39pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }4041[features]42default = ["std"]43runtime-benchmarks = [44 "frame-benchmarking/runtime-benchmarks",45 "frame-support/runtime-benchmarks",46 "frame-system/runtime-benchmarks",47]48std = [49 "codec/std",50 "log/std",51 "scale-info/std",52 "rand/std",53 "sp-runtime/std",54 "sp-staking/std",55 "sp-std/std",56 "frame-support/std",57 "frame-system/std",58 "frame-benchmarking/std",59 "pallet-authorship/std",60 "pallet-session/std",61]6263try-runtime = [ "frame-support/try-runtime" ]