This crate gets the excellent custom wrapper example that keeps track of memory usage.
``` use daktylos::Allocator;
static A: Allocator = Allocator::new();
fn main() { println!("{}", A.current_usage()); } ```