1 2 3 4 5 6 7 8 9 10 11 12
#![doc = include_str!("../README.md")] mod adjustment; mod clock; mod simple; pub use adjustment::{AdjustmentSettings, ConstantRate}; pub use clock::Clock; pub use simple::AdjustingClock; #[cfg(test)] mod test;