Skip to content

Version 0.1.0

Compare
Choose a tag to compare
@jfrimmel jfrimmel released this 21 Aug 10:09
· 74 commits to main since this release
c3662ca

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();