brine_fp/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2
3// clippy suppressions
4#![allow(clippy::assign_op_pattern)]
5#![allow(clippy::ptr_offset_with_cast)]
6#![allow(clippy::manual_range_contains)]
7#![allow(clippy::reversed_empty_ranges)]
8
9#[cfg(not(feature = "std"))]
10extern crate alloc;
11
12use uint::construct_uint;
13
14construct_uint! {
15 pub struct InnerUint(3);
16}
17
18pub mod consts;
19pub mod unsigned;
20pub mod signed;
21mod exp;
22mod log;
23
24pub use consts::*;
25pub use unsigned::*;
26pub use signed::*;