approx_eq
This crate provides a macro to check whether two numbers are approximately equal. It does so by checking that the relative difference between the two numbers is less than some upper limit.
To use this in your Rust program, add the following to your Cargo.toml
file:
// Cargo.toml
approx_eq = "0.1"
Using this macro is easy!
// main.rs
use assert_approx_eq;