From 1356b26c0f08e9624e5d4c9b3be377d2547793bd Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 29 Oct 2025 20:15:33 +0100 Subject: [PATCH] build: bump bitfield-struct from 0.11.0 to 0.12.1 Should fix beta clippy. Signed-off-by: Alyssa Ross --- Cargo.lock | 8 ++++---- devices/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c1b2507b4..0057c99c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,9 +294,9 @@ dependencies = [ [[package]] name = "bitfield-struct" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3ca019570363e800b05ad4fd890734f28ac7b72f563ad8a35079efb793616f8" +checksum = "8769c4854c5ada2852ddf6fd09d15cf43d4c2aaeccb4de6432f5402f08a6003b" dependencies = [ "proc-macro2", "quote", @@ -539,7 +539,7 @@ dependencies = [ "acpi_tables", "anyhow", "arch", - "bitfield-struct 0.11.0", + "bitfield-struct 0.12.1", "bitflags 2.9.4", "byteorder", "event_monitor", @@ -927,7 +927,7 @@ version = "0.1.0" dependencies = [ "anyhow", "arc-swap", - "bitfield-struct 0.11.0", + "bitfield-struct 0.12.1", "byteorder", "cfg-if", "concat-idents", diff --git a/devices/Cargo.toml b/devices/Cargo.toml index a15030870..201d5284f 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.0" acpi_tables = { workspace = true } anyhow = { workspace = true } arch = { path = "../arch" } -bitfield-struct = { version = "0.11.0", optional = true } +bitfield-struct = { version = "0.12.0", optional = true } bitflags = { workspace = true } byteorder = { workspace = true } event_monitor = { path = "../event_monitor" } diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index ec65d85cc..93343c931 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -15,7 +15,7 @@ tdx = [] [dependencies] anyhow = { workspace = true } arc-swap = "1.7.1" -bitfield-struct = "0.11.0" +bitfield-struct = "0.12.0" byteorder = { workspace = true } cfg-if = { workspace = true } concat-idents = "1.1.5"