Mag is a library for dealing with units of measure. Magnitude!

Highlights

Example

```rust use mag::{length::{ft, m, mi}, time::{h, s}};

let a = 1.0 * ft; // Length let b = a.to::(); // convert to Length let c = 30.0 * s; // Period let d = 60.0 / s; // Frequency let e = 55.0 * mi / h; // Speed

asserteq!(a.tostring(), "1 ft"); asserteq!(b.tostring(), "0.3048 m"); asserteq!(c.tostring(), "30 s"); asserteq!(d.tostring(), "60 ㎐"); asserteq!(e.tostring(), "55 mi/h"); ```

Room For Improvement

Alternatives

There are similar crates out there. Here is a partial list: