httpdt/
lib.rs

1//! # httpdt
2//!
3//! A datetime library for HTTP clients and servers.
4//!
5//! Generates timestamps for use in the HTTP Date header,
6//! the only format required for implementation of HTTP.
7//!
8//! Calculates with a focus on clarity from `SystemTime`,
9//! with no external dependencies, and provides for
10//! updates to previously generated datetimes for speed.
11
12mod datetime;
13mod date;
14mod time;
15
16pub use datetime::Datetime;