Skip to content

chore(deps): bump the cargo-updates group across 1 directory with 5 updates#76

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/cargo-updates-3a5de2bcb7
Open

chore(deps): bump the cargo-updates group across 1 directory with 5 updates#76
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/cargo-updates-3a5de2bcb7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps the cargo-updates group with 5 updates in the / directory:

Package From To
bitflags 2.10.0 2.11.0
uefi-raw 0.13.0 0.14.0
anyhow 1.0.101 1.0.102
toml 0.9.11+spec-1.1.0 1.0.7+spec-1.1.0
uefi 0.36.1 0.37.0

Updates bitflags from 2.10.0 to 2.11.0

Release notes

Sourced from bitflags's releases.

2.11.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.10.0...2.11.0

Changelog

Sourced from bitflags's changelog.

2.11.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.10.0...2.11.0

Commits
  • 60c6a72 Merge pull request #474 from bitflags/cargo/2.11.0
  • 79f4c05 prepare for 2.11.0 release
  • 81d5fac Merge pull request #473 from WaterWhisperer/feat/get-unknown-bits
  • a1c40f0 Fix clippy error
  • b5d15b6 Add tests
  • 2041dc3 Add methods to get the known/unknown bits from a flags value
  • 90488e5 Merge pull request #462 from james7132/serde_core
  • bc3c4fa Use serde_core instead of serde
  • See full diff in compare view

Updates uefi-raw from 0.13.0 to 0.14.0

Commits
  • 2ac78e4 Merge pull request #1918 from rust-osdev/release-v0.37
  • 072fa50 release: uefi-raw-0.14.0, uefi-0.37.0
  • 09f7b40 Merge pull request #1915 from rust-osdev/var-to-cstr16
  • 2be7c63 runtime: add CStr16::from_bytes_with_nul for UCS-2 string handling
  • 3244fd0 Merge pull request #1917 from rust-osdev/push-yxlxulqwnpot
  • 75076ac Replace a couple as casts with ptr::from_ref
  • 3210a82 Merge pull request #1875 from rust-osdev/uefi-serial-improve-read-write
  • 3cdf689 Merge pull request #1916 from rust-osdev/updates
  • 64946c0 cargo: update all transitive deps
  • 01b735d cargo: update deps (fix GitHub Security Alerts)
  • Additional commits viewable in compare view

Updates anyhow from 1.0.101 to 1.0.102

Release notes

Sourced from anyhow's releases.

1.0.102

Commits
  • 5c657b3 Release 1.0.102
  • e737fb6 Merge pull request #442 from dtolnay/backtrace
  • 7fe62b5 Further simply backtrace conditional compilation
  • c8cb5ca Merge pull request #441 from dtolnay/backtrace
  • de27df7 Delete CI use of --features=backtrace
  • 9b67e5d Merge pull request #440 from dtolnay/backtrace
  • efdb11a Simplify std_backtrace conditional code
  • b8a9a70 Merge pull request #439 from dtolnay/backtrace
  • a42fc2c Remove feature = "backtrace" conditional code
  • 2a2a3ce Re-word backtrace feature comment
  • Additional commits viewable in compare view

Updates toml from 0.9.11+spec-1.1.0 to 1.0.7+spec-1.1.0

Commits

Updates uefi from 0.36.1 to 0.37.0

Release notes

Sourced from uefi's releases.

uefi-v0.37.0

uefi - v0.37.0 (2026-03-22)

Added

  • Added proto::ata::AtaRequestBuilder::read_pio().
  • Added proto::shell::Shell::{var(), set_var(), vars()}
  • Added proto::pci::root_bridge::PciRootBridgeIo::configuration().
  • Added proto::pci::root_bridge::PciRootBridgeIo::enumerate().
  • Added proto::nvme::pass_thru::NvmePassThru::broadcast().
  • Added proto::media::block::BlockIO2.
  • Added proto::device_path::DevicePath::to_pool().
  • Added proto::device_path::DevicePathUtilities::duplicate_path().
  • Added proto::pci::enumeration::PciTree::device_path().
  • Added revision() and device_type_guid() to Serial protocol
  • Implemented Display for DevicePath, DevicePathNode and ScopedProtocol, enabling an easy and convenient way to visualize a device path. For example, this may print PciRoot(0x0)/Pci(0x6,0x0)/MAC(525400000001,0x1). ScopedProtocol only implements Display if the underlying protocol also implements Display.
  • Added Handle::component_name() and Handle::device_path() to simplify the common use-case of querying more information about a handle.
  • Added fs::path::Path::join().
  • Added Serial::read_exact() and Serial::write_exact()
  • CStr16::from_bytes_with_nul(): This is especially useful to transform the retrieved value from a UEFI variable into a UCS2 (CStr16) string.

Changed

  • export all text::{input, output}::* types
  • Changed ordering of proto::pci::PciIoAddress to (bus -> dev -> fun -> reg -> ext_reg).
  • Return request with status as error data object for proto::ata::pass_thru::AtaDevice.
  • Breaking: SimpleNetwork::wait_for_packet
    • has been renamed to wait_for_packet_event
    • now returns Result<Event> instead of &Event
  • Breaking: Http::get_mode_data doesn't consume a parameter anymore and instead return an owned value of type HttpConfigData
  • Input::wait_for_key_event() now returns Result<Event> rather than an Option.
  • Pointer::wait_for_input_event() now returns Result<Event> rather than an Option.
  • Breaking: boot::check_event now consumes &Event rather than Event, removing the need for unnecessary Event::unsafe_clone()s.
  • MSRV increased to 1.88.
  • Breaking: Renamed DevicePath::to_string() to DevicePath::to_string16() to better differentiate with the new to_string() coming from the new Display.
  • Breaking: Renamed DevicePathNode::to_string() to DevicePathNode::to_string16() to better differentiate with the new to_string() coming from the new Display.
  • Fixed potential partial writes in fmt::Write impl for Serial protocol

uefi-raw - v0.14.0 (2026-03-22)

... (truncated)

Commits
  • 2ac78e4 Merge pull request #1918 from rust-osdev/release-v0.37
  • 072fa50 release: uefi-raw-0.14.0, uefi-0.37.0
  • 09f7b40 Merge pull request #1915 from rust-osdev/var-to-cstr16
  • 2be7c63 runtime: add CStr16::from_bytes_with_nul for UCS-2 string handling
  • 3244fd0 Merge pull request #1917 from rust-osdev/push-yxlxulqwnpot
  • 75076ac Replace a couple as casts with ptr::from_ref
  • 3210a82 Merge pull request #1875 from rust-osdev/uefi-serial-improve-read-write
  • 3cdf689 Merge pull request #1916 from rust-osdev/updates
  • 64946c0 cargo: update all transitive deps
  • 01b735d cargo: update deps (fix GitHub Security Alerts)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Mar 30, 2026
@dependabot dependabot bot requested a review from azenla as a code owner March 30, 2026 09:26
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Mar 30, 2026
…pdates

Bumps the cargo-updates group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bitflags](https://github.com/bitflags/bitflags) | `2.10.0` | `2.11.0` |
| [uefi-raw](https://github.com/rust-osdev/uefi-rs) | `0.13.0` | `0.14.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.101` | `1.0.102` |
| [toml](https://github.com/toml-rs/toml) | `0.9.11+spec-1.1.0` | `1.0.7+spec-1.1.0` |
| [uefi](https://github.com/rust-osdev/uefi-rs) | `0.36.1` | `0.37.0` |



Updates `bitflags` from 2.10.0 to 2.11.0
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.10.0...2.11.0)

Updates `uefi-raw` from 0.13.0 to 0.14.0
- [Release notes](https://github.com/rust-osdev/uefi-rs/releases)
- [Changelog](https://github.com/rust-osdev/uefi-rs/blob/main/CHANGELOG.md)
- [Commits](rust-osdev/uefi-rs@uefi-raw-v0.13.0...uefi-raw-v0.14.0)

Updates `anyhow` from 1.0.101 to 1.0.102
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.101...1.0.102)

Updates `toml` from 0.9.11+spec-1.1.0 to 1.0.7+spec-1.1.0
- [Commits](toml-rs/toml@toml-v0.9.11...toml-v1.0.7)

Updates `uefi` from 0.36.1 to 0.37.0
- [Release notes](https://github.com/rust-osdev/uefi-rs/releases)
- [Changelog](https://github.com/rust-osdev/uefi-rs/blob/main/CHANGELOG.md)
- [Commits](rust-osdev/uefi-rs@uefi-v0.36.1...uefi-v0.37.0)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-updates
- dependency-name: uefi-raw
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-updates
- dependency-name: anyhow
  dependency-version: 1.0.102
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-updates
- dependency-name: toml
  dependency-version: 1.0.7+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-updates
- dependency-name: uefi
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-updates-3a5de2bcb7 branch from a441794 to ad76675 Compare March 30, 2026 22:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants