Skip to content

Version 0.1.1

Compare
Choose a tag to compare
@jfrimmel jfrimmel released this 21 Aug 15:10
· 61 commits to main since this release

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