[package] name = "sp-election-providers" version = "3.0.0" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" description = "Primitive election providers" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } sp-std = { version = "3.0.0", default-features = false, path = "../std" } sp-arithmetic = { version = "3.0.0", default-features = false, path = "../arithmetic" } sp-npos-elections = { version = "3.0.0", default-features = false, path = "../npos-elections" } [features] default = ["std"] runtime-benchmarks = [] std = [ "codec/std", "sp-std/std", "sp-npos-elections/std", "sp-arithmetic/std", ]