Crate emma

Source
Expand description

Emma is an EMbeddable Memory Allocator. It is no_std and “no-libc” safe, and has zero binary dependencies.

Use emma as you would any other allocator:

#[global_allocator]
static EMMA: emma::DefaultEmma = emma::DefaultEmma::new();

Structs§

Emma
The main allocator struct. Instantiate to interface with Emma.

Type Aliases§

DefaultEmma