Adds quantities and units to rust to allow unit safe computation
Note: this crate uses an unstable feature which requires you to add #![feature(generic_const_exprs)]
and use the nightly compiler
currently only three dimensions are supported: Time, Length, Mass
```rust use measurement::{Quantity, Dimension};
pub type Time = Quantity
pub type Velocity = Quantity
```