1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(not(feature = "std"), feature(alloc))]
#[cfg(not(feature = "std"))]
extern crate alloc;

pub mod geometry;
pub mod layout;
pub mod number;
pub mod result;
pub mod style;

mod algo;
mod ref_eq;
pub use crate::algo::compute;