brahe 1.3.4

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
/*!
 * Module containing utility functions.
 */

pub use cache::*;
pub use errors::*;
pub use formatting::*;
pub use fs::*;
pub use identifiable::*;
pub use state_providers::*;
pub use threading::*;

pub mod cache;
pub mod errors;
pub mod formatting;
pub mod fs;
pub mod identifiable;
pub mod operators;
pub mod state_providers;
pub mod threading;

#[cfg(test)]
#[allow(dead_code)]
// We allow dead code in testing module since not all fixtures maybe be currently used
pub mod testing;