roughtime 0.1.0

A no_std-capable Roughtime secure time-sync client with pluggable crypto backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Concrete, OS-specific [`SystemClock`](crate::clock::SystemClock) implementations.
//!
//! Only Linux is supported in this initial release. On other platforms, implement
//! [`crate::clock::SystemClock`] yourself — the trait itself requires no feature flag and has
//! no OS dependency.

#[cfg(target_os = "linux")]
mod linux;

#[cfg(target_os = "linux")]
pub use linux::LinuxClock;