From 2171c0756a58525a7e3efb0773a668e2650a8ce9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:35:06 +0200 Subject: [PATCH] cargo: bump pc-keyboard from 0.7.0 to 0.8.0 in /kernel (#30) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [pc-keyboard](https://github.com/rust-embedded-community/pc-keyboard) from 0.7.0 to 0.8.0.
Release notes

Sourced from pc-keyboard's releases.

Release v0.8.0

What's Changed

New Contributors

Full Changelog: https://github.com/rust-embedded-community/pc-keyboard/compare/v0.7.0...v0.8.0

Changelog

Sourced from pc-keyboard's changelog.

v0.8.0 (13 Sep 2024)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pc-keyboard&package-manager=cargo&previous-version=0.7.0&new-version=0.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- 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 a6885b7..72402d0 100644 --- a/kernel/Cargo.lock +++ b/kernel/Cargo.lock @@ -77,9 +77,9 @@ dependencies = [ [[package]] name = "pc-keyboard" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed089a1fbffe3337a1a345501c981f1eb1e47e69de5a40e852433e12953c3174" +checksum = "f0ca629cbb3f0d5b699c338f0129ff78c9bfd7ea8b1258ad529bff490dc8ed5a" [[package]] name = "pic8259" diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index 7219d08..64418d5 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -13,7 +13,7 @@ spin = "0.9" x86_64 = "0.14" uart_16550 = "0.3" pic8259 = "0.11" -pc-keyboard = "0.7" +pc-keyboard = "0.8" linked_list_allocator = "0.10" [dependencies.bootloader]