[package]
edition = "2021"
name = "harn-clock"
version = "0.8.24"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified time + sleep abstraction for the Harn runtime, CLI, triggers, cron, and harn-cloud."
homepage = "https://harnlang.com/"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/burin-labs/harn"
[lib]
name = "harn_clock"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"serde",
"macros",
]
[dependencies.tokio]
version = "1"
features = [
"rt",
"sync",
"time",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"test-util",
"time",
]