1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//#![no_std]

#![allow(dead_code)]

mod ext_mock;
mod big_int_mock;
mod big_uint_mock;

pub use ext_mock::*;
pub use big_int_mock::*;
pub use big_uint_mock::*;

#[macro_use]
extern crate alloc;
pub use alloc::boxed::Box;
pub use alloc::vec::Vec;

//pub use hashbrown::HashMap;
pub use std::collections::HashMap;