30 lines
702 B
TOML
30 lines
702 B
TOML
[package]
|
|
name = "cumulus-primitives-timestamp"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Provides timestamp related functionality for teyrchains."
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# Substrate
|
|
sp-inherents = { workspace = true }
|
|
sp-timestamp = { workspace = true }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["cumulus-primitives-core/std", "sp-inherents/std", "sp-timestamp/std"]
|
|
runtime-benchmarks = [
|
|
"cumulus-primitives-core/runtime-benchmarks",
|
|
"sp-inherents/runtime-benchmarks",
|
|
"sp-timestamp/runtime-benchmarks",
|
|
]
|