mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
b3648e88e8
Bumps [parking_lot](https://github.com/Amanieu/parking_lot) from 0.11.1 to 0.11.2. - [Release notes](https://github.com/Amanieu/parking_lot/releases) - [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md) - [Commits](https://github.com/Amanieu/parking_lot/compare/0.11.1...0.11.2) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
82 lines
3.0 KiB
TOML
82 lines
3.0 KiB
TOML
[package]
|
|
name = "pallet-election-provider-multi-phase"
|
|
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 = "PALLET two phase election providers"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
static_assertions = "1.1.0"
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
log = { version = "0.4.14", default-features = false }
|
|
|
|
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-io = { version = "4.0.0", default-features = false, path = "../../primitives/io" }
|
|
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-core = { version = "4.1.0-dev", default-features = false, path = "../../primitives/core" }
|
|
sp-runtime = { version = "4.0.0", default-features = false, path = "../../primitives/runtime" }
|
|
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
|
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
|
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" }
|
|
|
|
# Optional imports for benchmarking
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
|
rand = { version = "0.7.3", default-features = false, optional = true, features = [
|
|
"alloc",
|
|
"small_rng",
|
|
] }
|
|
strum = { optional = true, version = "0.22.0" }
|
|
strum_macros = { optional = true, version = "0.22.0" }
|
|
|
|
[dev-dependencies]
|
|
parking_lot = "0.11.2"
|
|
rand = { version = "0.7.3" }
|
|
sp-core = { version = "4.1.0-dev", default-features = false, path = "../../primitives/core" }
|
|
sp-io = { version = "4.0.0-dev", path = "../../primitives/io" }
|
|
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
|
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
|
|
frame-election-provider-support = { version = "4.0.0-dev", features = [
|
|
], path = "../election-provider-support" }
|
|
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
|
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"log/std",
|
|
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
|
|
"sp-io/std",
|
|
"sp-std/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-npos-elections/std",
|
|
"sp-arithmetic/std",
|
|
"frame-election-provider-support/std",
|
|
"log/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-election-provider-support/runtime-benchmarks",
|
|
"rand",
|
|
"strum",
|
|
"strum_macros",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|