Buddy-alloc is a Rust implemented allocator, used for embedded environments.
I want to use the alloc
crate in the CKB-VM(an embedded-like environment) without introducing LibC; so a pure Rust implementation allocator comes to my head, buddy memory allocation is simple and is efficient enough for my use case, it may be used in other embedded environments which have same requirements.