1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*!
# dimensioned

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

I will do my best to provide detailed documentation and examples here.

For more in depth and basic tutorials, please check
 [here](http://paholg.com/dimensioned).
 */
#![doc(html_logo_url = "http://paholg.com/dimensioned/imgs/favicon.png",
       html_favicon_url = "http://paholg.com/dimensioned/imgs/favicon.png",
       html_root_url = "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;