Crates.io | buddy-alloc |
lib.rs | buddy-alloc |
version | 0.6.0 |
source | src |
created_at | 2020-01-05 03:14:10.740292 |
updated_at | 2024-10-15 08:38:45.854759 |
description | Buddy-alloc is a memory allocator for no-std Rust, used for embedded environments. |
homepage | |
repository | https://github.com/jjyr/buddy-alloc |
max_upload_size | |
id | 195314 |
size | 57,415 |
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, stable, and efficient enough.
This crate is designed to be used in general environment, it should be able to used in similar embedded environments.
MIT