[package] name = "noble-scheduler" version = "2.0.0" authors = ["Parity Technologies ", "Tetcoin Developers "] edition = "2018" license = "Unlicense" keywords = ["tetcoin", "tetcore", "crypto", "blockchain", "framework"] categories = ["cryptography::cryptocurrencies"] homepage = "https://core.tetcoin.org" repository = "https://github.com/tetcoin/tetcore" documentation = "https://docs.rs/noble-scheduler" description = "FABRIC example noble" readme = "README.md" [dependencies] serde = { version = "1.0.101", optional = true } codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false } fabric-support = { version = "2.0.0", default-features = false, path = "../support" } fabric-system = { version = "2.0.0", default-features = false, path = "../system" } tp-runtime = { version = "2.0.2", default-features = false, path = "../../primitives/runtime" } tetcore-std = { version = "2.0.2", default-features = false, path = "../../primitives/std" } tet-io = { version = "2.0.2", default-features = false, path = "../../primitives/io" } fabric-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] tet-core = { version = "2.0.2", path = "../../primitives/core", default-features = false } # tetcore-test-utils = { version = "2.0.0", path = "../../test-utils" } tetcore-test-utils = { path = "../../test-utils" } [features] default = ["std"] std = [ "serde", "codec/std", "tp-runtime/std", "fabric-benchmarking/std", "fabric-support/std", "fabric-system/std", "tet-io/std", "tetcore-std/std" ] runtime-benchmarks = [ "fabric-benchmarking", "fabric-support/runtime-benchmarks", "fabric-system/runtime-benchmarks", ]