// Copyright © 2023 Mini Functions library. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Application Common mathematical constants functionality
//!
//! Provides access to functions for accessing a collection of mathematical and cryptographic constants.
/// Re-exported [`Common`] type from cmn providing access to common constants.
pub use Common;
/// Re-exported [`Constants`] struct from cmn providing math/crypto constants.
pub use Constants;
/// Re-exported [`Words`] struct from cmn with common words list.
pub use Words;
/// Re-exported [`run()`] function from cmn.
pub use run;
/// Re-exported macros from cmn providing access to common macros.
pub use macros as cmn_macros;