[package]
edition = "2024"
name = "rtc-interval"
version = "0.1.0"
authors = ["Serhij S. <div@altertech.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wall clock synchronized interval timers"
readme = "README.md"
keywords = [
"rtc",
"interval",
]
license = "MIT"
repository = "https://github.com/eva-ics/rtc-interval"
[features]
async = ["dep:tokio"]
default = ["async"]
[lib]
name = "rtc_interval"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.bma-ts]
version = "0.2.5"
[dependencies.rtsc]
version = "0.4.4"
[dependencies.tokio]
version = "1"
features = ["time"]
optional = true
[dev-dependencies.bma-ts]
version = "0.2.5"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"time",
]