From d7328756a0e8a54b416acacb9739d2e95f8859b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 11:37:11 +0000 Subject: [PATCH] cargo: bump pc-keyboard from 0.8.0 to 0.9.0 in /kernel Bumps [pc-keyboard](https://github.com/rust-embedded-community/pc-keyboard) from 0.8.0 to 0.9.0. - [Release notes](https://github.com/rust-embedded-community/pc-keyboard/releases) - [Changelog](https://github.com/rust-embedded-community/pc-keyboard/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-embedded-community/pc-keyboard/compare/v0.8.0...v0.9.0) --- updated-dependencies: - dependency-name: pc-keyboard dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- kernel/Cargo.lock | 4 ++-- kernel/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/Cargo.lock b/kernel/Cargo.lock index 55baaf0..d6d61ec 100644 --- a/kernel/Cargo.lock +++ b/kernel/Cargo.lock @@ -77,9 +77,9 @@ dependencies = [ [[package]] name = "pc-keyboard" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0ca629cbb3f0d5b699c338f0129ff78c9bfd7ea8b1258ad529bff490dc8ed5a" +checksum = "73c53b65bbadd653c9d125e745d2659a3a060539b17d96ab1c59f9f5bfdacce5" [[package]] name = "pic8259" diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index 8268957..b568417 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -13,7 +13,7 @@ spin = "0.10" x86_64 = "0.14" uart_16550 = "0.3" pic8259 = "0.11" -pc-keyboard = "0.8" +pc-keyboard = "0.9" linked_list_allocator = "0.10" [dependencies.bootloader]