1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![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 node;
pub mod number;
pub mod result;
pub mod style;

mod algo;