From 0bc6e7e91f03ca347e7d1dc223ffc3c4c9d8bb2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Apr 2023 20:56:13 +0000 Subject: [PATCH] Update logos requirement from 0.12 to 0.13 in /kernel Updates the requirements on [logos](https://github.com/maciejhirsz/logos) to permit the latest version. - [Release notes](https://github.com/maciejhirsz/logos/releases) - [Commits](https://github.com/maciejhirsz/logos/compare/v0.12.0...v0.13) --- updated-dependencies: - dependency-name: logos 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..da5bf066c 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -36,7 +36,7 @@ log = "0.4" displaydoc = { version = "0.2", default-features = false } lazy_static = { version = "1.4", features = ["spin_no_std"] } once_cell = { version = "1.12.0", features = [ "alloc" ], default-features = false } -logos = { version = "0.12", default-features = false, features = ["export_derive"] } +logos = { version = "0.13", default-features = false, features = ["export_derive"] } hashbrown = { version = "0.11", features = [ "nightly" ] } cstr_core = { version = "0.2.3", default-features = false } uefi = "0.15"