expiration_date 0.2.0

A professional financial instrument expiration date management library with support for standard day count conventions.
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;