pmhelp-internal 0.0.2

Internals that will be used by `pmhelp`. This should not be used directly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(all(not(feature = "from-base"), not(test)), no_std)]
#![allow(unused_variables, unused_macros, unused_imports, dead_code, unused_mut)]
extern crate alloc;

#[macro_use]
extern crate paste;

#[cfg(not(feature = "from-base"))]
mod macros;

pub mod exts;
pub mod parse;
pub mod util;