universal_constants 0.0.1

Physical and mathematical constants that are generally considered to be universally constant.
Documentation
//! Collection of physical and mathematical concepts that are generally considered to be universally constant. This
//! package serves to supplement builtin constant values

pub mod conversions;

/// Mathematical constants.
pub mod math {
    /// π.
    pub use std::f64::consts::PI;

    /// Euler's number (e).
    pub use std::f64::consts::E as EULER;
}

pub mod planets;

#[cfg(test)]
mod tests {
    use crate::math;

    #[test]
    fn math_tests() {
        assert_eq!(math::PI, std::f64::consts::PI);
        assert_eq!(math::EULER, std::f64::consts::E);
    }
}