Version 0.1.3
This is a patch release for fixing this vulnerability. Thanks, @Dylan-DPC!
This release also lowers the minimum supported Rust version (MSRV) to 1.57.
To update the crate, simply run (if you already depend on it):
$ 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.3"
and register the emballoc::Allocator
as the global allocator:
#[global_allocator]
static ALLOCATOR: emballoc::Allocator<4096> = emballoc::Allocator::new();