1 unstable release
0.1.0 | Jun 24, 2021 |
---|
#1054 in Embedded development
265 downloads per month
3KB
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];
}