diff --git a/arch/x86_64/Cargo.toml b/arch/x86_64/Cargo.toml index 1febcbd9..6bb85be8 100644 --- a/arch/x86_64/Cargo.toml +++ b/arch/x86_64/Cargo.toml @@ -16,7 +16,7 @@ libcolor = { path = "../../lib/libcolor/" } modules = { path = "../../kernel/modules/" } nkuefi = { path = "../../drivers/nkuefi/" } lazy_static = { version = "1.4.0", features = ["spin_no_std"] } -linked_list_allocator = "0.9.1" +linked_list_allocator = "0.10.4" multiboot = { path = "../../drivers/boot/multiboot/" } pc_keyboard = { path = "../../drivers/input/keyboard/pc_keyboard/" } nmallocator = { path = "../../mm/nmallocator/" } diff --git a/mm/nmallocator/Cargo.toml b/mm/nmallocator/Cargo.toml index e5425a96..84be9781 100644 --- a/mm/nmallocator/Cargo.toml +++ b/mm/nmallocator/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] cfg-if = "1.0.0" -linked_list_allocator = "0.9.1" +linked_list_allocator = "0.10.4" wee_alloc = { version = "0.4.5", features = ["static_array_backend"] } [features]