dimas_time/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 {}