moneylib 0.13.0

Library to deal with money in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// `Money<C>` serde implementations
pub mod money;

#[cfg(feature = "raw_money")]
/// `RawMoney<C>` serde implementations
pub mod raw_money;

#[cfg(test)]
mod money_test;

#[cfg(all(test, feature = "raw_money"))]
mod raw_money_test;