moneylib 0.13.0

Library to deal with money in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
#[allow(clippy::module_inception)]
mod raw_money;
pub use raw_money::RawMoney;

mod dec_ops;
mod money_ext;
mod ops;

#[cfg(test)]
mod raw_money_test;