mallocator

Crates.iomallocator
lib.rsmallocator
version0.1.0
sourcesrc
created_at2021-06-24 20:32:42.42512
updated_at2021-06-24 20:32:42.42512
descriptionUse malloc() and free() for memory management in Rust.
homepagehttps://github.com/olback/mallocator
repositoryhttps://github.com/olback/mallocator
max_upload_size
id414612
size2,188
Edwin (olback)

documentation

README

Mallocator

#![no_std]
#![feature(default_alloc_error_handler)]

use mallocator::Mallocator;

#[global_allocator]
static A: Mallocator = Mallocator;

fn my_fn_that_requires_heap() {
    let v = vec![1, 2, 3];
}
Commit count: 4

cargo fmt