Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]
#![warn(missing_docs)]

//! Because copy pasting the same thing into every new project is annoying

#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "alloc")]
use alloc::{collections::BTreeMap, string::String, vec::Vec};

#[cfg(feature = "cli")]
pub mod cli;

#[cfg(feature = "macros")]
mod macros;