[][src]Crate ruspiro_allocator

Custom Allocator for HEAP memory allocations

This crate provides a custom allocator for heap memory. If any baremetal crate uses functions and structures from the core::alloc crate an allocator need to be provided as well. However, this crate does not export any public API to be used. It only encapsulates the memeory allocator that shall be linked into the binary.

Usage

To link the custom allocator with your project just add the usage to your main crate rust file like so:

extern crate ruspiro_allocator;