1//! # Decimal Floating-Point Arithmetic for Rust 2//! 3//! Based on bindings for **Intel(R) Decimal Floating-Point Math Library v2.3** 4 5extern crate dfp_number_sys; 6 7mod decimal128; 8 9pub use decimal128::*;