[package]
edition = "2024"
rust-version = "1.95"
name = "rusty_time-core"
version = "0.1.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable NTPv4 protocol and clock-discipline algorithms: packet codec, regression sample filter, falseticker selection, rate limiting and interleaved mode. No I/O, no OS clock, deny(unsafe). The engine inside the rusty_time NTP/NTS daemon."
homepage = "https://www.mata.network/"
documentation = "https://docs.rs/rusty_time-core"
readme = "README.md"
keywords = [
"ntp",
"nts",
"time",
"clock",
"sntp",
]
categories = [
"date-and-time",
"network-programming",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/remade-with-rust/rusty_time"
resolver = "2"
[lib]
name = "rusty_time_core"
path = "src/lib.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[[bench]]
name = "client_path"
path = "benches/client_path.rs"
harness = false
[[bench]]
name = "hot_path"
path = "benches/hot_path.rs"
harness = false
[[bench]]
name = "mru_report"
path = "benches/mru_report.rs"
harness = false
[dependencies]
[lints.rust]
unsafe_code = "deny"