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
33
34
35
36
37
38
39
40
41
//! natural_constants: a collection of constants and helper functions
//!
//! Written by Willi Kappler, Version 0.2 (2022.10.11)
//!
//! Repository: https://github.com/willi-kappler/natural_constants
//!
//! License: MIT
//!
//!
//! # Example:
//!
//! ```
//! use natural_constants::physics::*;
//!
//!
//! fn main() {
//!     let c = speed_of_light_vac;
//!     let m0 = 100.0;
//!
//!     // Use c in your code:
//!     let E = m0 * c * c;
//! }
//! ```


// For clippy
// #![feature(plugin)]
//
// #![plugin(clippy)]

#![allow(non_upper_case_globals)]
#![allow(dead_code)]

pub mod math;
pub mod physics;
pub mod chemistry;
pub mod biology;
pub mod engineering;
pub mod conversion;
pub mod misc;
pub mod geosciences;