git.delta.rocks / unique-network / refs/commits / 4f4018846dc9

difftreelog

source

pallets/collator-selection/Cargo.toml3.1 KiBsourcehistory
1[package]2name = "pallet-collator-selection"3version = "4.0.0"4description = "Simple staking pallet with a fixed stake."5authors = ["Parity Technologies <admin@parity.io>", "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.36" }22sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23sp-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }25frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }27pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }28pallet-configuration = { default-features = false, path = "../configuration" }2930frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3132[dev-dependencies]33sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }34sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }35sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }36sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }37pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }38sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }39pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }40pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }4142[features]43default = ["std"]44runtime-benchmarks = [45	"frame-benchmarking/runtime-benchmarks",46	"frame-support/runtime-benchmarks",47	"frame-system/runtime-benchmarks",48]49std = [50	"codec/std",51	"log/std",52	"scale-info/std",53	"rand/std",54	"sp-runtime/std",55	"sp-staking/std",56	"sp-std/std",57	"frame-support/std",58	"frame-system/std",59	"frame-benchmarking/std",60	"pallet-authorship/std",61	"pallet-session/std",62]6364try-runtime = [ "frame-support/try-runtime" ]