dimas-time 0.5.1

dimas-time - time library for DiMAS
Documentation
// Copyright © 2024 Stephan Kunz
#![no_std]

//! Library implements time related things.
//!

// region:    --- modules
mod error;
mod timer;
#[cfg(feature = "std")]
mod timer_builder;

// flatten
pub use timer::*;
#[cfg(feature = "std")]
pub use timer_builder::*;
// endregion: --- modules

#[cfg(test)]
mod tests {}