[package] name = "pallet-timestamp" version = "2.0.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] serde = { version = "1.0.101", optional = true } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } rstd = { package = "sp-std", path = "../../primitives/sr-std", default-features = false } sp-runtime = { path = "../../primitives/sr-primitives", default-features = false } inherents = { package = "sp-inherents", path = "../../primitives/inherents", default-features = false } support = { package = "frame-support", path = "../support", default-features = false } system = { package = "frame-system", path = "../system", default-features = false } sp-timestamp = { path = "../../primitives/timestamp", default-features = false } impl-trait-for-tuples = "0.1.3" [dev-dependencies] runtime-io ={ package = "sp-io", path = "../../primitives/sr-io" } primitives = { package = "sp-core", path = "../../primitives/core" } [features] default = ["std"] std = [ "inherents/std", "codec/std", "rstd/std", "sp-runtime/std", "support/std", "serde", "system/std", "sp-timestamp/std" ]