checkers

Documentation Crates Actions Status

Checkers is a simple allocation checker for Rust that runs purely inside of Rust.

Examples

You use checkers by installing it's allocator, then making use of either the #[checkers::test] or checkers::with! macros.

```rust

[global_allocator]

static CHECKED: checkers::Allocator = checkers::Allocator;

[checkers::test]

fn testallocations() { let _ = Box::intoraw(Box::new(42)); }

[test]

fn testmanually() { checkers::with!(|| { let _ = Box::intoraw(Box::new(42)); }); } ```