From 3990334564b081d4c98ce2dedaef125dc61264f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Apr 2023 20:56:09 +0000 Subject: [PATCH] Update uefi requirement from 0.15 to 0.20 in /kernel Updates the requirements on [uefi](https://github.com/rust-osdev/uefi-rs) to permit the latest version. - [Release notes](https://github.com/rust-osdev/uefi-rs/releases) - [Changelog](https://github.com/rust-osdev/uefi-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-osdev/uefi-rs/compare/uefi-services-v0.15.0...uefi-v0.20.0) --- updated-dependencies: - dependency-name: uefi dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- kernel/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index 29551c867..5c9cfa6e5 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -39,7 +39,7 @@ once_cell = { version = "1.12.0", features = [ "alloc" ], default-features = fal logos = { version = "0.12", default-features = false, features = ["export_derive"] } hashbrown = { version = "0.11", features = [ "nightly" ] } cstr_core = { version = "0.2.3", default-features = false } -uefi = "0.15" +uefi = "0.20" crossbeam-utils = { version = "0.8.0", default-features = false } static_assertions = "1.1.0" bit_field = "0.10"