[package] name = "noble-lottery" version = "2.0.0" authors = ["Parity Technologies ", "Tetcoin Developers "] edition = "2018" license = "Apache-2.0" keywords = ["tetcoin", "tetcore", "crypto", "blockchain", "framework"] categories = ["cryptography::cryptocurrencies"] homepage = "https://core.tetcoin.org" repository = "https://github.com/tetcoin/tetcore" documentation = "https://docs.rs/lottery" description = "FABRIC Participation Lottery Noble" 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"] } tetcore-std = { version = "2.0.2", default-features = false, path = "../../primitives/std" } tp-runtime = { version = "2.0.2", default-features = false, path = "../../primitives/runtime" } fabric-support = { version = "2.0.0", default-features = false, path = "../support" } fabric-system = { version = "2.0.0", default-features = false, path = "../system" } fabric-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] noble-balances = { version = "2.0.1", path = "../balances" } tet-core = { version = "2.0.2", path = "../../primitives/core" } tet-io = { version = "2.0.2", path = "../../primitives/io" } [features] default = ["std"] std = [ "codec/std", "tetcore-std/std", "fabric-support/std", "tp-runtime/std", "fabric-system/std", ] runtime-benchmarks = [ "fabric-benchmarking", "fabric-system/runtime-benchmarks", "fabric-support/runtime-benchmarks", ]