simple-datetime-rs 0.3.0

A high-performance, lightweight date and time library for Rust with dramatically faster parsing, memory-efficient operations, and chrono-compatible formatting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod constants;
pub mod date;
pub mod date_error;
pub mod date_time;
pub mod format;
pub mod time;
pub mod utils;

pub use date::Date;
pub use date_error::DateError;
pub use date_time::DateTime;
pub use format::Format;
pub use time::Time;