1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
    Appellation: acme-core <library>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Core
//!
//!
#[cfg(not(feature = "std"))]
extern crate alloc;

// pub use self::utils::*;

#[macro_use]
pub(crate) mod utils;

pub mod error;
pub mod id;
pub mod math;
pub mod ops;
pub mod specs;
pub mod types;

pub mod prelude {
    pub use crate::error::*;
    pub use crate::id::*;
    pub use crate::ops::prelude::*;
    pub use crate::specs::prelude::*;
    pub use crate::types::*;
}