1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! # Utils
//!
//! `utils` is the module providing utility types and helper functions used across the library.

/// Types used to produce and manipulate timestamps.
pub mod timestamp;

/// Functions used to match and pattern match strings against a regex.
pub mod regex;

/// Type and constants used for versioning (semver).
pub mod version;

pub use self::timestamp::{Timestamp, TimestampDiff};
pub use self::version::Version;