//! Precise times and durations using 64bit primitives and whole nanoseconds.
//!
//! Unlike `std::time`, these types always have a fixed size representation and
//! also includes atomic types.
pub use AtomicDuration;
pub use AtomicInstant;
pub use AtomicUnixInstant;
pub use Duration;
pub use Instant;
pub use UnixInstant;