Version 0.1.0
This release marks the first public release of this crate. It contains a minimal API and a basic working implementation. To use this crate, simply add it to your dependencies:
[dependencies]
emballoc = "0.1.0"
and register the emballoc::Allocator
as the global allocator:
#[global_allocator]
static ALLOCATOR: emballoc::Allocator<4096> = emballoc::Allocator::new();