moneylib 0.14.0

Library to deal with money in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Money type with runtime currencies.
//!
//! Useful for accepting money with user-defined currencies and aggregating multiple moneys with different currencies.

mod dyn_money;
pub use dyn_money::DynMoney;

#[allow(clippy::module_inception)]
mod obj_money;
pub use obj_money::{ObjCurrency, ObjMoney, register_currency};

#[cfg(test)]
mod obj_money_test;