mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
47 lines
1.8 KiB
TOML
47 lines
1.8 KiB
TOML
[package]
|
|
name = "frame-election-provider-support"
|
|
version = "4.0.0-dev"
|
|
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 = "4.0.0-dev", path = "solution-type" }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
|
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
|
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
|
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
|
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
|
|
|
[dev-dependencies]
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
|
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
|
sp-npos-elections = { version = "4.0.0-dev", 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 = []
|