Rust Money parser
A library that handles parsing and display money.
```rust
money!("20", "USD"); // 20.00
```
let money = money!("20.00", "USD"); format!("{: >1}", money); // $ 20.00