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

difftreelog

source

pallets/collator-selection/Cargo.toml1.9 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]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-session = { workspace = true }27sp-runtime = { workspace = true }28sp-staking = { workspace = true }29sp-std = { workspace = true }3031frame-benchmarking = { workspace = true, optional = true }3233[dev-dependencies]34pallet-aura = { workspace = true }35pallet-balances = { features = ["insecure_zero_ed"], workspace = true }36pallet-timestamp = { workspace = true }37sp-consensus-aura = { workspace = true }38sp-core = { workspace = true }39sp-io = { workspace = true }40sp-runtime = { workspace = true }41sp-tracing = { workspace = true }4243[features]44default = ["std"]45runtime-benchmarks = [46	"frame-benchmarking/runtime-benchmarks",47	"frame-support/runtime-benchmarks",48	"frame-system/runtime-benchmarks",49]50std = [51	"codec/std",52	"frame-benchmarking/std",53	"frame-support/std",54	"frame-system/std",55	"log/std",56	"pallet-authorship/std",57	"pallet-session/std",58	"rand/std",59	"scale-info/std",60	"sp-consensus-aura/std",61	"sp-runtime/std",62	"sp-staking/std",63	"sp-std/std",64	'pallet-aura/std',65	'pallet-balances/std',66]6768try-runtime = ["frame-support/try-runtime"]