1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*!
# dimensioned

**dimensioned** is a library for compile time type checking for arbitrary unit systems.

The best place to read about it is [here](http://paholg.com/dimensioned)
*/
#![warn(missing_docs)]

#![feature(optin_builtin_traits)]
#![feature(zero_one)]
extern crate num;


pub use dimensioned::*;

pub mod peano;
#[macro_use]
pub mod dimensioned;
#[macro_use]
mod make_units;

pub mod si;
pub mod cgs;