Measurement

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

Define new quantity

currently only three dimensions are supported: Time, Length, Mass

```rust use measurement::{Quantity, Dimension};

pub type Time = Quantity>; pub type Length = Quantity>; pub type Mass = Quantity>;

pub type Velocity = Quantity>; pub type Acceleration = Quantity>;

```