From d5878c154af6bf5744dd85a477e7a33ff04916be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 05:58:03 +0000 Subject: [PATCH] chore(deps): bump uart_16550 from 0.2.18 to 0.3.0 Bumps [uart_16550](https://github.com/rust-osdev/uart_16550) from 0.2.18 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.18...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 +++++++++++++++++++++++--- oro-boot-limine-x64/Cargo.toml | 2 +- oro-kernel/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 76247ae0..73004da0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -190,6 +190,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" @@ -257,13 +266,13 @@ dependencies = [ [[package]] name = "uart_16550" -version = "0.2.18" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b074eb9300ad949edd74c529c0e8d451625af71bb948e6b65fe69f72dc1363d9" +checksum = "6dc00444796f6c71f47c85397a35e9c4dbf9901902ac02386940d178e2b78687" dependencies = [ "bitflags 1.3.2", "rustversion", - "x86_64", + "x86", ] [[package]] @@ -284,6 +293,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.11" diff --git a/oro-boot-limine-x64/Cargo.toml b/oro-boot-limine-x64/Cargo.toml index f46d73b7..0a2d48e5 100644 --- a/oro-boot-limine-x64/Cargo.toml +++ b/oro-boot-limine-x64/Cargo.toml @@ -20,7 +20,7 @@ oro-arch-x64 = { path = "../oro-arch-x64" } lazy_static = { version = "1.4.0", features = ["spin_no_std"] } spin = "0.9.8" limine = "0.1.11" -uart_16550 = "0.2.18" +uart_16550 = "0.3.0" elf = { version = "0.7.4", default-features = false } [target.'cfg(target_arch="x86_64")'.dependencies] diff --git a/oro-kernel/Cargo.toml b/oro-kernel/Cargo.toml index c2c4a9f1..ccbf3843 100644 --- a/oro-kernel/Cargo.toml +++ b/oro-kernel/Cargo.toml @@ -23,7 +23,7 @@ buddy_system_allocator = { version = "0.9.0", features = ["use_spin", "spin", "c [target.'cfg(target_arch="x86_64")'.dependencies] x86_64 = "0.14.11" -uart_16550 = "0.2.18" +uart_16550 = "0.3.0" oro-arch-x64 = { path = "../oro-arch-x64" } [build-dependencies]