diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 14:43:24 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 14:43:24 +0200 |
| commit | 781fe28b327ed2610d3d761fbceccab953aeeb33 (patch) | |
| tree | d6d0e188f31c75a7632f436615c4b94c03ae7016 | |
| parent | e3d59da253839b27137fccb9c5496d5973948fc4 (diff) | |
configure alloc
| -rw-r--r-- | StrixKernel/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/StrixKernel/Cargo.toml b/StrixKernel/Cargo.toml index 8e43a3d..cb98c90 100644 --- a/StrixKernel/Cargo.toml +++ b/StrixKernel/Cargo.toml @@ -69,6 +69,10 @@ pic8259 = "0.10.1" # Converts raw scancodes to ASCII characters pc-keyboard = "0.7.0" +# Linked List Allocator (v0.9.0): A no_std allocator based on +# a linked list structure to keep track of deallocated memory +linked_list_allocator = "0.9.0" + # Lazy Static (v1.0): Lazily initialized statics for no_std # The `spin_no_std` feature uses spinlocks instead of std::sync [dependencies.lazy_static] |
