#allocator #small #custom #minimal #one

no-std one_alloc

A custom allocator that allows a singular allocation of a specific size known ahead of time

1 unstable release

0.1.0 Jun 11, 2022

#1387 in Embedded development

22 downloads per month

Apache-2.0 OR BSL-1.0 OR MIT

4KB

One Alloc

A custom allocator that allows a singular allocation of a specific size known ahead of time.

For situations where one allocation is required, but otherwise allocations are not allowed (usually for constrained embedded devices). Extremely small (only 32 lines of code).


lib.rs:

A custom allocator that allows a singular allocation of a specific size known ahead of time.

Getting Started

This example allocates once by creating an Arc of the unit tuple (). Requires libc for printing, but can be replaced with a serial port implementation.

Run with cargo +nightly run --example main from within the repo.

No runtime deps