[package] name = "tp-npos-elections" version = "2.0.2" authors = ["Parity Technologies ", "Tetcoin Developers "] edition = "2018" license = "Apache-2.0" homepage = "https://core.tetcoin.org" repository = "https://github.com/tetcoin/tetcore/" documentation = "https://docs.rs/npos-elections" description = "Tetcore NPoS election algorithm primitives" readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] } tetcore-std = { version = "2.0.2", default-features = false, path = "../std" } tp-npos-elections-compact = { version = "2.0.2", path = "./compact" } arithmetic = { version = "2.0.2", default-features = false, path = "../arithmetic" } tet-core = { version = "2.0.2", default-features = false, path = "../core" } [dev-dependencies] # tetcore-test-utils = { version = "2.0.0", path = "../../test-utils" } tetcore-test-utils = { path = "../../test-utils" } rand = "0.7.3" tp-runtime = { version = "2.0.2", path = "../runtime" } [features] default = ["std"] bench = [] std = [ "codec/std", "serde", "tetcore-std/std", "arithmetic/std", "tet-core/std", ]