expiration_date 0.1.2

A standalone crate for handling financial instrument expiration dates with support for days-based and datetime-based representations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Prelude module for convenient imports.
//!
//! This module re-exports the most commonly used types and traits from the
//! `expiration_date` crate, allowing users to import everything they need
//! with a single `use` statement:
//!
//! ```rust
//! use expiration_date::prelude::*;
//! ```

pub use crate::EPSILON;
pub use crate::ExpirationDate;
pub use crate::error::ExpirationDateError;