embedded-utils 0.1.0

`embedded-utils` provides some features in Rust(no_std) embedded systems.
Documentation
1
2
3
4
5
6
7
8
9
//! The time library provides the function of processing time.

mod datetime;
#[allow(dead_code)]
mod duration;
mod timezone;

pub use datetime::DateTime;
pub use timezone::TimeZone;