buddy-alloc 0.3.0

Buddy-alloc is a memory allocator for no-std Rust, used for embedded environments.
Documentation

Buddy-alloc

Crates.io

Buddy-alloc is a memory allocator for no-std Rust, used for embedded environments.

Usage

Check examples and Rust Doc.

Why

My original intention is to enable alloc crate for no-std Rust in CKB-VM without introducing LibC. I choose the buddy allocation algorithm since it's simple, efficient enough, and It's easy to extended or composited with other memory allocation strategies. This crate is designed to be used in general environment, it should be able to used in similar embedded environments.

License

MIT