metric 0.1.0

zero-cost dimensional analysis for safe, unit-aware numeric computations in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![warn(unused_results)]
#![deny(future_incompatible,)]

#![no_std]

#[macro_use]
mod implmacro;

pub mod temperature;
pub mod length;
pub mod time;
pub mod mass;
pub mod electrical;
pub mod force;

pub mod constants;

pub mod composite;