git.delta.rocks / unique-network / refs/commits / d56676c55888

difftreelog

source

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