Checkers is a simple allocation checker for Rust that runs purely inside of Rust.
You use checkers by installing checkers::Allocator
as your allocator, then
making use of either the #[checkers::test]
or checkers::with!
macros.
```rust
static CHECKED: checkers::Allocator = checkers::Allocator;
fn testallocations() { let _ = Box::intoraw(Box::new(42)); }
fn testmanually() { checkers::with!(|| { let _ = Box::intoraw(Box::new(42)); }); } ```