Version 0.1.1
This release contains many improvements of the code documentation and takes care of some missing information on crates.io. If you already depend on that crate, simply run
$ cargo update -p emballoc
If you want to use this as a new dependency in your Rust project, just add the following snippet to your Cargo.toml
[dependencies]
emballoc = "0.1.1"
and register the emballoc::Allocator
as the global allocator:
#[global_allocator]
static ALLOCATOR: emballoc::Allocator<4096> = emballoc::Allocator::new();