mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 22:07:58 +00:00
f830db9642
* Move phragmen to primitives * Improved docs * New crate. * Update lock. * Fix dependency. * Fix build. * Add basic testing and truth-value implementation with float types * Update srml/staking/src/lib.rs * Nits. * Bump. * Fix benchmarks.
20 lines
452 B
TOML
20 lines
452 B
TOML
[package]
|
|
name = "substrate-phragmen"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
sr-primitives = { path = "../sr-primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
support = { package = "srml-support", path = "../../srml/support" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"sr-primitives/std",
|
|
]
|