u64_array_bigints_core 0.3.3

Core library for `u64_array_bigints`
Documentation
//! This crate only exists separate from `u64_array_bigints` because we want to
//! export the macros from `u64_array_bigints_macros` from the main crate
//! without a lot of code duplication or cyclic references. Most users should
//! just use the main `u64_array_bigints` crate in their `Cargo.toml`.

#![no_std]
#![allow(clippy::manual_map)]

extern crate alloc;
mod common;
mod serial;
mod std_ops;
mod uint;
mod utils;
pub use serial::FromStrRadixErr;

pub use crate::uint::Uint;

#[cfg(not(feature = "use_parity_uint"))]
mod u256;
#[cfg(not(feature = "use_parity_uint"))]
pub use u256::U256;
#[cfg(feature = "use_parity_uint")]
mod parity_uint;
#[cfg(feature = "use_parity_uint")]
pub use parity_uint::*;