rust_decimal 1.34.3

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(any(feature = "db-diesel1-postgres", feature = "db-diesel2-postgres"))]
mod diesel;

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