From 5c8e25329f4a8ad2bf9d38f233b2879eaa95aac1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 05:06:16 +0000 Subject: [PATCH] build(deps): bump linked_list_allocator from 0.9.1 to 0.10.5 Bumps [linked_list_allocator](https://github.com/phil-opp/linked-list-allocator) from 0.9.1 to 0.10.5. - [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.5) --- updated-dependencies: - dependency-name: linked_list_allocator dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- libs/vm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2af4bca4..a0b29124 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -358,9 +358,9 @@ checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a" [[package]] name = "linked_list_allocator" -version = "0.9.1" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "549ce1740e46b291953c4340adcd74c59bcf4308f4cac050fd33ba91b7168f4a" +checksum = "9afa463f5405ee81cdb9cc2baf37e08ec7e4c8209442b5d72c04cfb2cd6e6286" [[package]] name = "lock_api" diff --git a/libs/vm/Cargo.toml b/libs/vm/Cargo.toml index 3a36f85f..613602a4 100644 --- a/libs/vm/Cargo.toml +++ b/libs/vm/Cargo.toml @@ -13,7 +13,7 @@ aligned_ptr = "0.1.0" conquer-once = { version = "0.3.2", default-features = false } elfloader = "0.15.0" frame_allocator = { path = "../frame_allocator" } -linked_list_allocator = { version = "0.9.1", default-features = false } +linked_list_allocator = { version = "0.10.5", default-features = false } os_units = "0.4.2" predefined_mmap = { path = "../predefined_mmap" } spinning_top = "0.2.4"