diff options
| -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] |
