rust_decimal_ext 1.41.2

Decimal number implementation written in pure Rust suitable for financial and fixed-precision calculations.
1
2
3
4
5
6
7
8
// Shared
mod common;

#[cfg(feature = "db-diesel-postgres")]
mod diesel;

#[cfg(any(feature = "db-postgres", feature = "db-tokio-postgres"))]
mod driver;