From 01db513ef45aa39a3471111c1ead2bf4c4533780 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Nov 2022 05:54:08 +0000 Subject: [PATCH] Update linked_list_allocator requirement from 0.9.1 to 0.10.4 Updates the requirements on [linked_list_allocator](https://github.com/phil-opp/linked-list-allocator) to permit the latest version. - [Release notes](https://github.com/phil-opp/linked-list-allocator/releases) - [Changelog](https://github.com/rust-osdev/linked-list-allocator/blob/main/Changelog.md) - [Commits](https://github.com/phil-opp/linked-list-allocator/compare/v0.9.1...v0.10.4) --- updated-dependencies: - dependency-name: linked_list_allocator dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- arch/x86_64/Cargo.toml | 2 +- mm/nmallocator/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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]