From a62f722dab62b81e495b844fd21a6dec268b6b8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 15:59:31 +0000 Subject: [PATCH] build(deps): bump uart_16550 from 0.2.19 to 0.3.0 Bumps [uart_16550](https://github.com/rust-osdev/uart_16550) from 0.2.19 to 0.3.0. - [Changelog](https://github.com/rust-osdev/uart_16550/blob/master/Changelog.md) - [Commits](https://github.com/rust-osdev/uart_16550/compare/v0.2.19...v0.3.0) --- updated-dependencies: - dependency-name: uart_16550 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 +++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 70dcd23a..9fe940c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,6 +156,15 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "raw-cpuid" +version = "10.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" +dependencies = [ + "bitflags 1.3.2", +] + [[package]] name = "rustversion" version = "1.0.12" @@ -225,13 +234,13 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" [[package]] name = "uart_16550" -version = "0.2.19" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "614ff2a87880d4bd4374722268598a970bbad05ced8bf630439417347254ab2e" +checksum = "6dc00444796f6c71f47c85397a35e9c4dbf9901902ac02386940d178e2b78687" dependencies = [ "bitflags 1.3.2", "rustversion", - "x86_64", + "x86", ] [[package]] @@ -309,6 +318,17 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "442887c63f2c839b346c192d047a7c87e73d0689c9157b00b53dcc27dd5ea793" +[[package]] +name = "x86" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385" +dependencies = [ + "bit_field", + "bitflags 1.3.2", + "raw-cpuid", +] + [[package]] name = "x86_64" version = "0.14.10" diff --git a/Cargo.toml b/Cargo.toml index 559286fb..e4b05f63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ fc = [] multiboot = "0.8" [target.'cfg(target_arch = "x86_64")'.dependencies] -uart_16550 = "0.2" +uart_16550 = "0.3" x86_64 = { version = "0.14", default-features = false } [target.'cfg(target_arch = "aarch64")'.dependencies]