dinero 0.0.11

Dinero lets you express monetary values. You can perform mutations, conversions, comparisons, format them extensively, and overall make money manipulation in your application easier and safer.
Documentation
mod add;
mod allocate;
mod compare;
mod convert;
mod equal;
mod greater_than;
mod greater_than_or_equal;
mod has_sub_units;
mod have_same_amount;
mod have_same_currency;
mod is_negative;
mod is_positive;
mod is_zero;
mod less_than;
mod less_than_or_equal;
mod maximum;
mod minimum;
mod multiply;
mod normalize_scale;
mod normalize_scale_tuple;
mod subtract;
mod transform_scale;
mod trim_scale;

pub use self::add::add;
pub use self::allocate::allocate;
pub use self::compare::compare;
pub use self::convert::convert;
pub use self::convert::Rate;
pub use self::equal::equal;
pub use self::greater_than::greater_than;
pub use self::greater_than_or_equal::greater_than_or_equal;
pub use self::has_sub_units::has_sub_units;
pub use self::have_same_amount::have_same_amount;
pub use self::have_same_currency::have_same_currency;
pub use self::is_negative::is_negative;
pub use self::is_positive::is_positive;
pub use self::is_zero::is_zero;
pub use self::less_than::less_than;
pub use self::less_than_or_equal::less_than_or_equal;
pub use self::maximum::maximum;
pub use self::minimum::minimum;
pub use self::multiply::multiply;
pub use self::normalize_scale::normalize_scale;
pub use self::normalize_scale_tuple::normalize_scale_tuple;
pub use self::subtract::subtract;
pub use self::transform_scale::transform_scale;
pub use self::trim_scale::trim_scale;