dimensioned 0.6.0

Compile-time dimensional analysis for various unit systems using Rust's type system. Dimensioned aims to build on Rust's safety features by adding unit safety with no runtime cost. In addition, it aims to be as easy to use as possible, hopefully making things easier for you not just by avoiding bugs but also by making it clear what units things are. Never again should you need to specify units in a comment!
Documentation
# Changelog

This project follows semantic versioning.

### 0.6.0 (Unpublished)
- `[changed]` ***BREAKING*** Dimensioned has been rewritten from the ground up. It still does the
  same thing but the internals are completely different. Stay tuned for a blog post that will cover
  it in more detail.

### 0.5.0 (2015-12-02)
- `[added]` This change log!
- `[changed]` ***BREAKING*** Use typenum instead of peano for faster and more complete type-level
  numbers. ([PR #3]https://github.com/paholg/dimensioned/pull/3)
- `[added]` Re-export useful things from typenum so that crates downstream don't need to depend on
  it.