//! Differential formats for serde.
// Types with guaranteed stable serde representations.
//
// This allows for the ability to change the internal structure of a type while
// maintaining backwards compatibility.
//
// Strings are avoided where possible to allow for optimal representations in
// various binary forms.
// OffsetDateTime is in the primitive_date_time module.
pub use Time;
pub use Date;
pub use Duration;
pub use PrimitiveDateTime;
pub use Sign;
pub use UtcOffset;
pub use Weekday;