frame-election-provider-support 22.0.0

election provider supporting traits
Documentation
[package]
name = "frame-election-provider-support"
version = "22.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "election provider supporting traits"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
frame-election-provider-solution-type = { version = "9.0.0", path = "solution-type" }
frame-support = { version = "22.0.0", default-features = false, path = "../support" }
frame-system = { version = "22.0.0", default-features = false, path = "../system" }
sp-arithmetic = { version = "17.0.0", default-features = false, path = "../../primitives/arithmetic" }
sp-npos-elections = { version = "20.0.0", default-features = false, path = "../../primitives/npos-elections" }
sp-runtime = { version = "25.0.0", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "9.0.0", default-features = false, path = "../../primitives/std" }
sp-core = { version = "22.0.0", default-features = false, path = "../../primitives/core" }

[dev-dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
sp-io = { path = "../../primitives/io" }
sp-npos-elections = { path = "../../primitives/npos-elections" }

[features]
default = ["std"]
fuzz = ["default"]
std = [
	"codec/std",
	"frame-support/std",
	"frame-system/std",
	"scale-info/std",
	"sp-arithmetic/std",
	"sp-npos-elections/std",
	"sp-core/std",
	"sp-runtime/std",
	"sp-std/std",
]
runtime-benchmarks = []
try-runtime = []