pmhelp_internal/
lib.rs

1#![cfg_attr(all(not(feature = "from-base"), not(test)), no_std)]
2#![allow(unused_variables, unused_macros, unused_imports, dead_code, unused_mut)]
3extern crate alloc;
4
5#[macro_use]
6extern crate paste;
7
8#[cfg(not(feature = "from-base"))]
9mod macros;
10
11pub mod exts;
12pub mod parse;
13pub mod util;