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

difftreelog

source

pallets/collator-selection/Cargo.toml3.1 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]15codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "3.0.0" }16log = { version = "0.4.17", default-features = false }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 }2021frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24pallet-configuration = { default-features = false, path = "../configuration" }25pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }27sp-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }28sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2930frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3132[dev-dependencies]33pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }34pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }35pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }36sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }37sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }38sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }39sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }40sp-tracing = { 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	"frame-benchmarking/std",52	"frame-support/std",53	"frame-system/std",54	"log/std",55	"pallet-authorship/std",56	"pallet-session/std",57	"rand/std",58	"scale-info/std",59	"sp-runtime/std",60	"sp-staking/std",61	"sp-std/std",62]6364try-runtime = ["frame-support/try-runtime"]