buddy-alloc 0.2.0

Buddy-alloc is a Rust implemented allocator, used for embedded environments.
Documentation
1
2
3
4
5
6
7
8
#![cfg_attr(not(test), no_std)]

pub mod buddy_alloc;
mod non_threadsafe_alloc;
#[cfg(test)]
mod tests;

pub use non_threadsafe_alloc::NonThreadsafeAlloc;