embedded_date_time/lib.rs
1//! Fundamental primitives to communicate date and time information.
2//!
3//! The focus of this implementation is to be lightweight and easy to use
4//! so that it can be used on resource-constrained embedded systems.
5//! Only basic checks will be performed for the reasonable use-cases.
6
7#![no_std]
8
9mod date;
10mod date_time;
11mod time;
12mod weekday;
13
14pub use date::Date;
15pub use date_time::DateTime;
16pub use time::Time;
17pub use weekday::Weekday;