From 7f466a32563bb5d28e3b50bb867dc6a2cca3271b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 03:59:40 +0000 Subject: [PATCH] Bump the major group across 1 directory with 3 updates Bumps the major group with 3 updates in the / directory: spin, [buddy_system_allocator](https://github.com/rcore-os/buddy_system_allocator) and [object](https://github.com/gimli-rs/object). Updates `spin` from 0.9.8 to 0.12.1 Updates `buddy_system_allocator` from 0.10.0 to 0.13.0 - [Commits](https://github.com/rcore-os/buddy_system_allocator/compare/v0.10.0...v0.13.0) Updates `object` from 0.36.7 to 0.39.1 - [Changelog](https://github.com/gimli-rs/object/blob/main/CHANGELOG.md) - [Commits](https://github.com/gimli-rs/object/compare/0.36.7...v0.39.1) --- updated-dependencies: - dependency-name: buddy_system_allocator dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: major - dependency-name: object dependency-version: 0.39.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: major - dependency-name: spin dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ frame/Cargo.toml | 4 ++-- kernel/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec9fc79..aeffef3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,9 +31,9 @@ dependencies = [ [[package]] name = "buddy_system_allocator" -version = "0.10.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7913f22349ffcfc6ca0ca9a656ec26cfbba538ed49c31a273dff2c5d1ea83d9" +checksum = "c1af5a01adeeade54c9f5060300227a8ee64c05b6376f28e9b8ee3b72dd2056f" [[package]] name = "byteorder" @@ -259,9 +259,9 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "object" -version = "0.36.7" +version = "0.39.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" +checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b" dependencies = [ "memchr", ] @@ -337,9 +337,9 @@ dependencies = [ [[package]] name = "spin" -version = "0.9.8" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +checksum = "bd5231412d905519dca6a5deb0327d407be68d6c941feec004533401d3a0a715" [[package]] name = "stable_deref_trait" diff --git a/frame/Cargo.toml b/frame/Cargo.toml index ba09d49..a9f4273 100644 --- a/frame/Cargo.toml +++ b/frame/Cargo.toml @@ -18,7 +18,7 @@ bench = false doctest = false [dependencies] -spin = { version = "0.9", default-features = false, features = ["lazy", "once"] } +spin = { version = "0.12", default-features = false, features = ["lazy", "once"] } # x86_64: typed wrappers for descriptor tables, page-table entries, control # registers, MSRs. `abi_x86_interrupt` enables `set_handler_fn` impls that @@ -32,6 +32,6 @@ linked_list_allocator = { version = "0.10", default-features = false } # Buddy allocator for physical frames. The `FrameAllocator` type sits # behind the `alloc` feature. -buddy_system_allocator = { version = "0.10", default-features = false, features = ["alloc"] } +buddy_system_allocator = { version = "0.13", default-features = false, features = ["alloc"] } bitflags = { version = "2.12", default-features = false } diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index 2a2d95d..4afdfbf 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -45,7 +45,7 @@ virtio = { path = "../drivers/virtio", optional = true } # Result everywhere (no panics on malformed input) and is exercised by # every Rust compile. # read_core + elf only — no compression, no write, no archive. -object = { version = "0.36", default-features = false, features = ["read_core", "elf"], optional = true } +object = { version = "0.39", default-features = false, features = ["read_core", "elf"], optional = true } bitflags = { version = "2.12", default-features = false } # smoltcp — TCP/IP stack. Wraps our virtio-net driver via a Device # adapter. MIT/Apache, used under MIT. The heapless "medium-ip"