#currency #international #money #bank

qsv_currency

A library for representing international currencies

2 unstable releases

0.6.0 Dec 18, 2022
0.5.0 Dec 28, 2021

#160 in Finance

Download history 156/week @ 2023-12-04 90/week @ 2023-12-11 137/week @ 2023-12-18 175/week @ 2023-12-25 194/week @ 2024-01-01 64/week @ 2024-01-08 125/week @ 2024-01-15 75/week @ 2024-01-22 79/week @ 2024-01-29 93/week @ 2024-02-05 48/week @ 2024-02-12 101/week @ 2024-02-19 214/week @ 2024-02-26 149/week @ 2024-03-04 133/week @ 2024-03-11 118/week @ 2024-03-18

621 downloads per month
Used in qsv

MIT license

46KB
1K SLoC

Rust Currency Library

A very small library, providing a way to represent currencies in Rust.

This is a fork of https://github.com/Tahler/currency-rs, pulling in pending PRs for currency strings (e.g. "USD, EUR, etc." - not just single character symbols - "$, €, etc.") and serde support.

It also upgrades the num dependency from 0.1.32 to 0.4.0.

This fork was primarily created for the qsv CSV data-wrangling toolkit.


lib.rs:

A Currency is a combination of an optional character (Option<char>``) and a big integer (BigInt`).

Common operations are overloaded to make numerical operations easy.

Perhaps the most useful part of this crate is the Currency::from_str function, which can convert international currency representations such as "$1,000.42" and "£10,99" into a usable Currency instance.

Example

extern crate qsv_currency;

fn main() {
    use qsv_currency::Currency;

    let sock_price = Currency::from_str("$11.99").unwrap();
    let toothbrush_price = Currency::from_str("$1.99").unwrap();
    let subtotal = sock_price + toothbrush_price;
    let tax_rate = 0.07;
    let total = &subtotal + (&subtotal * tax_rate);
    assert_eq!(format!("{}", total), "$14.95");
}

Limitations

This crate cannot lookup conversion data dynamically. It does supply a convert function, but the conversion rates will need to be input by the user.

This crate also does not handle rounding or precision. Values are truncated during multiplication, division, and extra precision in a parse (such as gas prices).

Dependencies

~0.5–0.8MB
~17K SLoC