greg 0.1.2

WIP: datetime library
Documentation
//! Simple Date & Time library
//!
//! Organized into two categories: *real / physical time* dealing only in seconds and the more abstract *calendar time* dealing with dates, time-of-day and time zones as understood by humans.
//!
//! Note that for the time being this library only operates at the **precision of a full second** -- this is more convenient to work with, but it is far too imprecise for many applications.
//!
//! Other notable caveats include:
//! - no `strftime` type formatting (only `YYYY-MM-DD` and `hh:mm:ss` provided)
//! - no locale support
//! - no [leap second] support
//!
//! [leap second]: https://en.wikipedia.org/wiki/Leap_second

#![allow(clippy::zero_prefixed_literal)]

pub mod real;
pub use real::{
	Point,
	Span,
	Frame,
	Scale
};
pub mod calendar;
pub use calendar::{
	Calendar,
	Utc
};

#[cfg(test)]
mod tests;