httpdt 0.1.0

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

mod datetime;
mod date;
mod time;

pub use datetime::Datetime;