[package] name = "noble-timestamp" 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/noble-timestamp" description = "FABRIC Timestamp Module" readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true } 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" } tet-io = { version = "2.0.2", default-features = false, path = "../../primitives/io", optional = true } tp-runtime = { version = "2.0.2", default-features = false, path = "../../primitives/runtime" } tp-inherents = { version = "2.0.2", default-features = false, path = "../../primitives/inherents" } fabric-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true } fabric-support = { version = "2.0.0", default-features = false, path = "../support" } fabric-system = { version = "2.0.0", default-features = false, path = "../system" } tp-timestamp = { version = "2.0.2", default-features = false, path = "../../primitives/timestamp" } impl-trait-for-tuples = "0.2.0" [dev-dependencies] tet-io ={ version = "2.0.2", path = "../../primitives/io" } tet-core = { version = "2.0.2", path = "../../primitives/core" } [features] default = ["std"] std = [ "tp-inherents/std", "codec/std", "tetcore-std/std", "tp-runtime/std", "fabric-benchmarking/std", "fabric-support/std", "serde", "fabric-system/std", "tp-timestamp/std" ] runtime-benchmarks = ["fabric-benchmarking", "tet-io"]