Buddy-alloc is a memory allocator for no-std Rust, used for embedded environments.
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.
MIT