finetime 0.8.1

High-fidelity time library for applications where sub-nanosecond accuracy and exact arithmetic are needed
Documentation
//! Representation of specific calendrical types, used to represent individual dates according to a
//! variety of historical calendars.

mod date;
pub use date::Date;
mod gregorian;
pub use gregorian::GregorianDate;
mod historic;
pub use historic::HistoricDate;
mod julian;
pub use julian::JulianDate;
mod julian_day;
pub use julian_day::JulianDay;
mod modified_julian_date;
pub use modified_julian_date::ModifiedJulianDate;
mod month;
pub use month::Month;
mod week_day;
pub use week_day::WeekDay;