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

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 = "4.0.0"1011[package.metadata.docs.rs]12targets = ["x86_64-unknown-linux-gnu"]1314[dependencies]15# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.16codec = { workspace = true, package = "parity-scale-codec" }1718log = { workspace = true }19rand = { version = "0.8.5", features = ["std_rng"], default-features = false }20scale-info = { workspace = true }21serde = { workspace = true }2223frame-support = { workspace = true }24frame-system = { workspace = true }25pallet-authorship = { workspace = true }26pallet-configuration = { workspace = true }27pallet-session = { workspace = true }28sp-runtime = { workspace = true }29sp-staking = { workspace = true }30sp-std = { workspace = true }3132frame-benchmarking = { workspace = true, optional = true }3334[dev-dependencies]35pallet-aura = { workspace = true }36pallet-balances = { workspace = true }37pallet-timestamp = { workspace = true }38sp-consensus-aura = { workspace = true }39sp-core = { workspace = true }40sp-io = { workspace = true }41sp-runtime = { workspace = true }42sp-tracing = { workspace = true }4344[features]45default = ["std"]46runtime-benchmarks = [47	"frame-benchmarking/runtime-benchmarks",48	"frame-support/runtime-benchmarks",49	"frame-system/runtime-benchmarks",50]51std = [52	"codec/std",53	"frame-benchmarking/std",54	"frame-support/std",55	"frame-system/std",56	"log/std",57	"pallet-authorship/std",58	"pallet-session/std",59	"rand/std",60	"scale-info/std",61	"sp-runtime/std",62	"sp-staking/std",63	"sp-std/std",64]6566try-runtime = ["frame-support/try-runtime"]