16 releases (8 stable)

Uses old Rust 2015

2.1.0 Mar 8, 2021
2.0.4 Dec 4, 2017
2.0.1 Nov 29, 2017
1.0.1 Jun 18, 2017
0.2.0 Dec 16, 2015

#865 in Rust patterns

Download history 767/week @ 2024-11-30 673/week @ 2024-12-07 718/week @ 2024-12-14 494/week @ 2024-12-21 488/week @ 2024-12-28 755/week @ 2025-01-04 805/week @ 2025-01-11 700/week @ 2025-01-18 842/week @ 2025-01-25 993/week @ 2025-02-01 1232/week @ 2025-02-08 880/week @ 2025-02-15 983/week @ 2025-02-22 683/week @ 2025-03-01 751/week @ 2025-03-08 784/week @ 2025-03-15

3,308 downloads per month
Used in 17 crates (14 directly)

Apache-2.0

1MB
11K SLoC

C 10K SLoC // 0.4% comments Rust 1.5K SLoC // 0.0% comments

decimal

Travis Downloads Crates.io Apache license

Decimal Floating Point arithmetic for rust based on the decNumber library.

The library provides d128 which is a 128-bit decimal floating point number. You can use it as other primitive numbers in Rust. All operators are overloaded to allow ergonomic use of this type.

To emulate literals a macro is used d128!.

Documentation

Example

let x = d128!(1.234);
let y = d128!(1.111);
let z = d128!(2.345);
assert_eq(x + y, z);

Running the decTest test suite

$ cargo build
$ ./target/debug/run-test decTest/decQuad.decTest

Dependencies