mini_functions/common.rs
1// Copyright © 2023 Mini Functions library. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4//! Application Common mathematical constants functionality
5//!
6//! Provides access to functions for accessing a collection of mathematical and cryptographic constants.
7
8/// Re-exported [`Common`] type from cmn providing access to common constants.
9pub use cmn::Common;
10
11/// Re-exported [`Constants`] struct from cmn providing math/crypto constants.
12pub use cmn::Constants;
13
14/// Re-exported [`Words`] struct from cmn with common words list.
15pub use cmn::Words;
16
17/// Re-exported [`run()`] function from cmn.
18pub use cmn::run;
19
20/// Re-exported macros from cmn providing access to common macros.
21pub use cmn::macros as cmn_macros;