embedded-date-time 0.1.1

Lightweight date and time types to be used on embedded systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Fundamental primitives to communicate date and time information.
//!
//! The focus of this implementation is to be lightweight and easy to use
//! so that it can be used on resource-constrained embedded systems.
//! Only basic checks will be performed for the reasonable use-cases.

#![no_std]

mod date;
mod date_time;
mod time;
mod weekday;

pub use date::Date;
pub use date_time::DateTime;
pub use time::Time;
pub use weekday::Weekday;