dimas_time/lib.rs
1// Copyright © 2024 Stephan Kunz
2#![no_std]
3
4//! Library implements time related things.
5//!
6
7// region: --- modules
8mod error;
9mod timer;
10#[cfg(feature = "std")]
11mod timer_builder;
12
13// flatten
14pub use timer::*;
15#[cfg(feature = "std")]
16pub use timer_builder::*;
17// endregion: --- modules
18
19#[cfg(test)]
20mod tests {}