5 releases (breaking)
0.5.0 | Mar 26, 2022 |
---|---|
0.4.0 | Oct 24, 2021 |
0.3.0 | Nov 12, 2019 |
0.2.0 | Nov 11, 2019 |
0.1.0 | Nov 9, 2019 |
#328 in Science
48KB
1.5K
SLoC
Mag is a library for dealing with physical quantities and units.
Quantities are created by multiplying scalar values by a unit type. These units are named after common abbreviations:
use mag::{length::{ft, m, mi}, time::{h, s}};
let a = 1.0 * ft;
assert_eq!(a.to_string(), "1 ft");
let b = a.to::<m>();
assert_eq!(b.to_string(), "0.3048 m");
let c = 30 * s;
assert_eq!(c.to_string(), "30 s");
let d = 60.0 / s;
assert_eq!(d.to_string(), "60 ㎐");
let e = 55.0 * mi / h;
assert_eq!(e.to_string(), "55 mi/h");
Highlights
- Easy to understand and use
- Performs conversions between units (SI, imperial)
- Units are not discarded when creating quantities
- Fast compile time
- No external dependencies
Alternative
If mag doesn't fit your needs, you could try the uom crate, which has many more features.