mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 14:21:10 +00:00
a0e24f3aa2
* Initial sotrage migration * Fix some deps * test added * another dep removed * Update srml/elections-phragmen/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * a bit nicer
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "srml-elections-phragmen"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
phragmen = { package = "substrate-phragmen", path = "../../core/phragmen", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io" }
|
|
hex-literal = "0.2.1"
|
|
balances = { package = "srml-balances", path = "../balances" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
serde = { version = "1.0.101" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"srml-support/std",
|
|
"sr-primitives/std",
|
|
"phragmen/std",
|
|
"system/std",
|
|
"rstd/std",
|
|
]
|