//! Rust interface for the [Boost](https://github.com/boostorg/boost) C++ library.
//!
//! Currently, this crate only provides bindings for the Boost Math library
//! ([repo][boost-math-repo], [docs][boost-math-docs]), which will be the main focus of this
//! project for the time being.
//!
//! See the [`math`] module for details on the available functions.
//!
//! [boost-math-repo]: https://github.com/boostorg/math
//! [boost-math-docs]: https://www.boost.org/doc/libs/latest/libs/math/doc/html/index.html
extern crate alloc;
extern crate approx;