From ea024be8e7bdb1bfec6333e3a1c43562d68dd45f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 12:32:10 +0000 Subject: [PATCH] build(deps): bump volatile from 0.4.6 to 0.6.1 Bumps [volatile](https://github.com/rust-osdev/volatile) from 0.4.6 to 0.6.1. - [Changelog](https://github.com/rust-osdev/volatile/blob/main/Changelog.md) - [Commits](https://github.com/rust-osdev/volatile/compare/v0.4.6...v0.6.1) --- updated-dependencies: - dependency-name: volatile dependency-version: 0.6.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cd123cd5ff..e5ca0b9f07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -527,7 +527,7 @@ dependencies = [ "smallvec", "smoltcp", "spin", - "volatile", + "volatile 0.6.1", "x25519-dalek", "x86_64", ] @@ -961,6 +961,12 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "442887c63f2c839b346c192d047a7c87e73d0689c9157b00b53dcc27dd5ea793" +[[package]] +name = "volatile" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af8ca9a5d4debca0633e697c88269395493cebf2e10db21ca2dbde37c1356452" + [[package]] name = "wasi" version = "0.11.1+wasi-snapshot-preview1" @@ -995,7 +1001,7 @@ dependencies = [ "bit_field", "bitflags 2.11.1", "rustversion", - "volatile", + "volatile 0.4.6", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a9dd26c3c4..fb2ee98a52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -741,7 +741,7 @@ sha2 = { version = "0.10", default-features = false, features = ["force-soft"] # Core utilities used in the kernel tree. bitflags = { version = "2.4", default-features = false } -volatile = { version = "0.4", default-features = false } +volatile = { version = "0.6", default-features = false } # Network stack used by the virtio-net interface bridge. smoltcp = { version = "0.11", default-features = false, features = ["alloc", "socket-raw", "socket-udp", "socket-tcp", "proto-ipv4", "proto-ipv6", "medium-ethernet"] }