Skip to content

Bump the rust-version-updates group in /src/rust with 28 updates#23152

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/src/rust/rust-version-updates-cbc8b4b4e5
Closed

Bump the rust-version-updates group in /src/rust with 28 updates#23152
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/src/rust/rust-version-updates-cbc8b4b4e5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 1, 2026

Bumps the rust-version-updates group in /src/rust with 28 updates:

Package From To
bollard 0.18.1 0.20.1
chrono 0.4.43 0.4.44
digest 0.11.0 0.11.1
fuser 0.11.1 0.17.0
generic-array 0.14.7 1.3.3
internment 0.6.0 0.8.6
nix 0.26.4 0.30.1
opendal 0.53.3 0.55.0
pin-project 1.1.10 1.1.11
pin-project-lite 0.2.16 0.2.17
prost 0.13.5 0.14.3
prost-build 0.13.5 0.14.3
prost-types 0.13.5 0.14.3
pyo3 0.27.2 0.28.2
pyo3-build-config 0.27.2 0.28.2
rlimit 0.10.2 0.11.0
rustls 0.23.36 0.23.37
shellexpand 2.1.2 3.1.2
strum 0.26.3 0.28.0
strum_macros 0.26.4 0.28.0
sysinfo 0.20.5 0.38.2
tempfile 3.25.0 3.26.0
terminal_size 0.1.17 0.4.3
tokio-retry2 0.6.0 0.9.1
toml 0.8.23 1.0.3+spec-1.1.0
whoami 1.6.1 2.1.0
tree-sitter 0.26.5 0.26.6
cargo_metadata 0.23.0 0.23.1

Updates bollard from 0.18.1 to 0.20.1

Release notes

Sourced from bollard's releases.

Release v0.20.1

What's Changed

New Contributors

Full Changelog: fussybeaver/bollard@v0.20.0...v0.20.1

Release v0.20.0

What's Changed

... (truncated)

Commits

Updates chrono from 0.4.43 to 0.4.44

Release notes

Sourced from chrono's releases.

0.4.44

What's Changed

Commits
  • c14b459 Bump version to 0.4.44
  • ea832c5 Add track_caller to non-deprecated functions
  • cfae889 Fix panic message in to_rfc2822
  • f8900b5 docs: match MSRV with Cargo.toml contents
  • See full diff in compare view

Updates digest from 0.11.0 to 0.11.1

Commits

Updates fuser from 0.11.1 to 0.17.0

Release notes

Sourced from fuser's releases.

0.17.0

Major changes:

  • Change many integer-based public API parameters to strongly-typed newtypes and bitflags. This breaking changes affects many of the methods on Filesystem
  • Change Filesystem trait methods to use &self, and require mounted filesystems to be Send + Sync + 'static
  • Improve typed error handling across request/reply APIs
  • Replace Vec<MountOption> mount APIs with a structured Config API, including ACL option handling
  • Feature flags abi-7-xx are now ignored and will be removed in 0.18, with compatibility checks moved to runtime behavior
  • Remove the old ABI-specific feature-flag surface (abi-7-9 through abi-7-19, plus tooling/docs/examples references)
  • Add support for multiple event loops per session, which can be enabled via Config::n_threads
  • Add experimental async API (AsyncFilesystem)

Minor changes:

  • Rename BackgroundSession::join to umount_and_join, returning io::Result<()> instead of panicking
  • Add FUSE_DEV_IOC_CLONE support and improve passthrough descriptor handling (ReplyCreate, ReplyOpen, BackingId)
  • Improve passthrough descriptor handling (ReplyCreate, ReplyOpen, BackingId)
  • Add FileType conversion from std FileType
  • Add option to explicitly choose libfuse2 or libfuse3, prefer libfuse3 by default
  • Support building without libfuse on BSD
  • Remove remaining osxfuse support and improve macfuse compatibility
  • The path to the fusermount binary can be specified with the FUSERMOUNT_PATH environment variable
  • allow_root or allow_other must be enabled when using auto_unmount
  • Remove deprecated mount and spawn_mount -- use mount2 and spawn_mount2 instead
  • Update and expand documentation

Internal changes:

  • Improve Linux/BSD/macOS test coverage by migrating mount tests to fuser-tests and expanding CI
  • Rework session lifecycle internals (handshake/session startup, destroy ordering, and unmount error propagation)

0.16.0

  • Add support for passthrough file descriptors
  • Change KernelConfig capabilities flags parameters to u64
  • Remove feature flags abi-7-9 through abi-7-18
  • Remove libfuse feature flag from defaults. Linking with libfuse can be enabled with the libfuse feature flag
  • Improve macfuse compatibility (note that macfuse remains untested)
  • Fix unsound behavior when linking with libfuse3
  • Performance optimizations
  • Update documentation

0.15.1

  • Fix crtime related panic that could occur on MacOS. See PR #322 for details.

0.15.0

  • Add file handle argument to getattr()
  • Change poll() to take a PollHandle instead of a u64
  • Add low level API for manually mounting or wrapping a fuse file descriptor into a Session
  • Fix compatibility with MacFUSE 4.x
  • Performance optimizations

v0.14.0

... (truncated)

Changelog

Sourced from fuser's changelog.

0.17.0 - 2026-02-14

Major changes:

  • Change many integer-based public API parameters to strongly-typed newtypes and bitflags. This breaking changes affects many of the methods on Filesystem
  • Change Filesystem trait methods to use &self, and require mounted filesystems to be Send + Sync + 'static
  • Improve typed error handling across request/reply APIs
  • Replace Vec<MountOption> mount APIs with a structured Config API, including ACL option handling
  • Feature flags abi-7-xx are now ignored and will be removed in 0.18, with compatibility checks moved to runtime behavior
  • Remove the old ABI-specific feature-flag surface (abi-7-9 through abi-7-19, plus tooling/docs/examples references)
  • Add support for multiple event loops per session, which can be enabled via Config::n_threads
  • Add experimental async API (AsyncFilesystem)

Minor changes:

  • Rename BackgroundSession::join to umount_and_join, returning io::Result<()> instead of panicking
  • Add FUSE_DEV_IOC_CLONE support and improve passthrough descriptor handling (ReplyCreate, ReplyOpen, BackingId)
  • Improve passthrough descriptor handling (ReplyCreate, ReplyOpen, BackingId)
  • Add FileType conversion from std FileType
  • Add option to explicitly choose libfuse2 or libfuse3, prefer libfuse3 by default
  • Support building without libfuse on BSD
  • Remove remaining osxfuse support and improve macfuse compatibility
  • The path to the fusermount binary can be specified with the FUSERMOUNT_PATH environment variable
  • allow_root or allow_other must be enabled when using auto_unmount
  • Remove deprecated mount and spawn_mount -- use mount2 and spawn_mount2 instead
  • Update and expand documentation

Internal changes:

  • Improve Linux/BSD/macOS test coverage by migrating mount tests to fuser-tests and expanding CI
  • Rework session lifecycle internals (handshake/session startup, destroy ordering, and unmount error propagation)

0.16.0 - 2025-09-12

  • Add support for passthrough file descriptors
  • Change KernelConfig capabilities flags parameters to u64
  • Remove feature flags abi-7-9 through abi-7-18
  • Remove libfuse feature flag from defaults. Linking with libfuse can be enabled with the libfuse feature flag
  • Improve macfuse compatibility (note that macfuse remains untested)
  • Fix unsound behavior when linking with libfuse3
  • Performance optimizations
  • Update documentation

0.15.1 - 2024-11-27

  • Fix crtime related panic that could occur on MacOS. See PR #322 for details.

0.15.0 - 2024-10-25

  • Add file handle argument to getattr()
  • Change poll() to take a PollHandle instead of a u64
  • Add low level API for manually mounting or wrapping a fuse file descriptor into a Session
  • Fix compatibility with MacFUSE 4.x
  • Performance optimizations

... (truncated)

Commits
  • 16e20c1 Bump version to 0.17.0
  • 0889b3a Update changelog
  • 52a8c0b Remove deprecated mount() and spawn_mount()
  • 020f604 Preserve signed lseek offsets through dispatch
  • e54ffab Update 0.17 unreleased changelog notes
  • a9421f2 Deny warnings on macos
  • 5cc50c6 FUSE_DEV_IOC_CLONE
  • 3ba96a0 CanonicalTempDir
  • e778f12 Simplify macOS test exe termination
  • 01e9be4 Use generic wait_for_fuse_mount in FreeBSD tests
  • Additional commits viewable in compare view

Updates generic-array from 0.14.7 to 1.3.3

Release notes

Sourced from generic-array's releases.

1.0.0

Changelog

Primary PR

Commits

Updates internment from 0.6.0 to 0.8.6

Changelog

Sourced from internment's changelog.

  • 0.8.6 - September 14 2024

  • 0.8.4 - June 22, 2024

  • 0.8.3 - April 21, 2024

    • Made Intern<str> work with serde.
  • 0.8.2 - April 17, 2024

    • Added support for deepsize for all three intern types.
  • 0.8.1 - April 11, 2024

    • Increased MSRV to 1.70.

    • Made ArcIntern not implement Borrow which I apparently missed in version 0.7.0.

  • 0.7.4 - October 28, 2023

    • Increased MSRV to 1.65, got it wrong last time because I forgot to check the arc feature.
  • 0.7.3 - October 28, 2023

    • Made Copy and Clone for ArenaIntern support ?Sized types.
  • 0.7.2 - October 28, 2023

    • Increased MSRV to 1.60 for building and 1.65 for testing due to changes in dependencies.

    • Bumped ahash dependency version.

    • Optimization of ArcInvtern (thanks gwy15!).

  • 0.7.1 - June 17, 2023

    • Added ArcIntern::into_ref (thanks PuzzleMaker!).
  • 0.7.0 - March 30, 2022

... (truncated)

Commits

Updates nix from 0.26.4 to 0.30.1

Changelog

Sourced from nix's changelog.

[0.30.1] - 2025-05-04

Fixed

[0.30.0] - 2025-04-29

Added

  • Add socket option IPV6_PKTINFO for BSDs/Linux/Android, also IPV6_RECVPKTINFO for DragonFlyBSD (#2113)
  • Add fcntl's F_PREALLOCATE constant for Apple targets. (#2393)
  • Improve support for extracting the TTL / Hop Limit from incoming packets and support for DSCP (ToS / Traffic Class). (#2425)
  • Add socket option IP_TOS (nix::sys::socket::sockopt::IpTos) IPV6_TCLASS (nix::sys::socket::sockopt::Ipv6TClass) on Android/FreeBSD (#2464)
  • Add SeekData and SeekHole to Whence for hurd and apple targets (#2473)
  • Add From trait implementation between SocketAddr and Sockaddr, Sockaddr6 (#2474)
  • Added wrappers for posix_spawn API (#2475)
  • Add the support for Emscripten. (#2477)
  • Add fcntl constant F_RDADVISE for Apple target (#2480)
  • Add fcntl constant F_RDAHEAD for Apple target (#2482)
  • Add F_LOG2PHYS and F_LOG2PHYS_EXT for Apple target (#2483)
  • MAP_SHARED_VALIDATE was added for all linux targets. & MAP_SYNC was added for linux with the exclusion of mips architecures, and uclibc (#2499)
  • Add getregs()/getregset()/setregset() for Linux/musl/aarch64 (#2502)
  • Add FcntlArgs F_TRANSFEREXTENTS constant for Apple targets (#2504)
  • Add MapFlags::MAP_STACK in sys::man for netbsd (#2526)
  • Add support for libc::LOCAL_PEERTOKEN in getsockopt. (#2529)
  • Add support for syslog, openlog, closelog on all unix.

... (truncated)

Commits

Updates opendal from 0.53.3 to 0.55.0

Release notes

Sourced from opendal's releases.

v0.55.0

Rust Core Upgrade to v0.55

Public API

Timestamp types now come from jiff

All public metadata APIs that previously exposed chrono::DateTime<Utc> now use jiff::Timestamp. For example, Metadata::last_modified() and related setters return/accept Timestamp values (core/src/types/metadata.rs). Update downstream crates to depend on jiff if they manipulate these timestamps or convert them to other formats.

Scheme handling is string-based

OperatorInfo::scheme() now returns &'static str instead of Scheme, and Operator::via_iter accepts impl AsRef<str> (typically the services::*_SCHEME constants). Additionally, the deprecated constructors Operator::from_map and Operator::via_map have been removed. Migrate any code that relied on the enum variants or the removed constructors to the new string-based constants and from_iter/via_iter.

List APIs only support versions

OpList::with_version()/version() and Capability::list_with_version have been removed after a long deprecation cycle. Use with_versions()/versions() on OpList and read Capability::list_with_versions instead.

S3Builder::security_token removed

S3Builder no longer exposes the deprecated security_token() helper. Use session_token() exclusively when configuring temporary credentials.

KV-style services no longer pretend to support list

Services that never returned meaningful results for Operator::list (such as D1, FoundationDB, GridFS, Memcached, MongoDB, MySQL, Persy, PostgreSQL, Redb, Redis, SurrealDB, TiKV, etc.) now rely on the default Unsupported implementation. Those features will be implemented later.

Raw API

Deprecated KV adapters removed

The legacy opendal::raw::adapters::{kv, typed_kv} modules have been deleted. Services should directly implement Access instead of depending on the adapters. Remove the corresponding imports and shim layers from any out-of-tree services.

Bindings Python Upgrade to v0.47

Breaking change: Module exports are explicit

opendal.__init__ now only re-exports the capability, exceptions, file, layers, services, types, Operator, and AsyncOperator symbols. Imports such as:

from opendal import Metadata, Layer

no longer work. Update them to use the dedicated submodules:

from opendal.types import Metadata
from opendal.layers import Layer

The legacy helper module opendal.__base has also been removed together with _Base.

... (truncated)

Changelog

Sourced from opendal's changelog.

[v0.55.0] - 2025-11-11

Added

Changed

... (truncated)

Commits
  • 48c48b1 ci: Remove hdfs-native from arm platform (#6792)
  • f9b6790 chore: Don't introduce openssl for python binding (#6790)
  • ec8d0cd chore: Fix build (#6789)
  • fe8c14f Bump to version 0.55.0 with rc.2 (#6788)
  • d05602c fix(bindings/python): Update python/stubgen & core/hdfs-native (#6774)
  • 0c51354 docs: Make it clear that bindings have different version with rust core. (#6780)
  • e9494dc chore(services/fs): use NotADirectory directly (#6786)
  • d0eddb2 No need to copy the whole tree (#6783)
  • fc5725a feat(binding/nodejs): add TimeoutLayer, LoggingLayer and ThrottleLayer in nod...
  • 147b1e1 chore(services/s3)!: remove deprecated S3::security_token (#6779)
  • Additional commits viewable in compare view

Updates pin-project from 1.1.10 to 1.1.11

Release notes

Sourced from pin-project's releases.

1.1.11

Changelog

Sourced from pin-project's changelog.

[1.1.11] - 2026-02-27

Commits
  • 3aa50f9 Release 1.1.11
  • bd565cf Update changelog
  • 90389fc Update allowed lint list
  • 67339af tests: Update ui test output to nightly-2026-02-16
  • d5de5f6 tools: Update tidy.sh
  • afceb72 Fix clippy::unnecessary_map_or warning
  • e985eee Bump MSRV to 1.71
  • b66e5d9 tests: Update ui test output to nightly-2026-02-07
  • 3c70784 Apply clippy to doctest
  • ade4308 tests: Update ui test output to nightly-2026-01-22
  • Additional commits viewable in compare view

Updates pin-project-lite from 0.2.16 to 0.2.17

Release notes

Sourced from pin-project-lite's releases.

0.2.17

Changelog

Sourced from pin-project-lite's changelog.

[0.2.17] - 2026-02-27

Commits
  • 3bdf763 Release 0.2.17
  • 1743702 Update changelog
  • be3eb1a Add comment about rust-version field to Cargo.toml
  • 2b5f66d Update allowed lint list
  • c7495a0 tools: Update tidy.sh
  • aa30a9f Apply clippy to doctest
  • 0944bb9 Update .deny.toml
  • 401bd71 rustfmt: Set hex_literal_case = "Upper"
  • 28c4fec test: Update lint test
  • 67a0449 tests: Update ui test output to nightly-2025-12-04
  • Additional commits viewable in compare view

Updates prost from 0.13.5 to 0.14.3

Changelog

Sourced from prost's changelog.

Prost version 0.14.2

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

⚠️ Heads-up

  • Increase MSRV to 1.82 (#1356)

  • Update maintenance status to Passively Maintained (#1359)

    This excerpt is from the readme:

    The current maintainer is not contributing new features and doesn't have the time to review new features. Bug fixes and small improvements are welcome. Feel free to contribute small and easily reviewable PRs.

    Bug fixes are still important, and security fixes will be released as soon as possible. Contact the #prost channel in Tokio discord if you feel a bug or security fix is not getting enough attention.

    The maintainer expects the official protobuf project to release their rust library soon and expects it to be as fully featured as the C++ library. See their source code and crate for more information.

🚀 Features

  • Configure prost path via prost_build::Config or #[(prost(prost_path = "::prost")] (#1274)
  • Support for deprecated enum and oneof fields (#1316)

🐛 Bug Fixes

  • (prost-build) Resolve OneOf type name conflict with embedded message (#1294)
  • (prost-build) Avoid OneOf type collision with enums and keyword names (#1341)

💼 Dependencies

  • Use trait Error from core (#1179)
  • (deps) Update protobuf to v25.8 (#1323)
  • (deps) Update criterion requirement from 0.6 to 0.7 (#1308)
  • (deps) Update petgraph to 0.8 (#1327)
  • (deps) Bump actions/upload-artifact from 4 to 5 (#1351)
  • (deps) Bump actions/checkout from 5 to 6 (#1370)
  • Bump actions/checkout to v5 (#1312)
  • Update clippy to version 1.87 (#1292)
  • Replace once_cell dependency by std lib (#1119)

📚 Documentation

  • Update outdated link is test documentation (#1289)
  • Describe use of encoding module (#1322)
  • Update the readme MSRV to the actual number (#1331)
  • Update URLs after manual review (#1336)
  • Answer why fields are wrapped in option (#1358)

🎨 Styling

  • Add spaces to derive arguments in generated code (#1290)
  • Use variables directly in the format! string (#1293)

... (truncated)

Commits
  • fafa97f chore: remove protobuf submodule and leverage cmake for it (#1389)
  • e0643e2 release 0.14.3
  • 5595b61 fix: Add back DecodeError::new (#1382)
  • e42dcad Bufix: Name::full_name() is correct for empty packages (#1386)
  • 107153f build(deps): update pulldown-cmark-to-cmark requirement from 21 to 22 (#1384)
  • 3fc7003 build(deps): bump actions/upload-artifact from 5 to 6 (#1381)
  • 33f8721 fix some forgotten prost import paths (

Bumps the rust-version-updates group in /src/rust with 28 updates:

| Package | From | To |
| --- | --- | --- |
| [bollard](https://github.com/fussybeaver/bollard) | `0.18.1` | `0.20.1` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.43` | `0.4.44` |
| [digest](https://github.com/RustCrypto/traits) | `0.11.0` | `0.11.1` |
| [fuser](https://github.com/cberner/fuser) | `0.11.1` | `0.17.0` |
| [generic-array](https://github.com/fizyk20/generic-array) | `0.14.7` | `1.3.3` |
| [internment](https://github.com/droundy/internment) | `0.6.0` | `0.8.6` |
| [nix](https://github.com/nix-rust/nix) | `0.26.4` | `0.30.1` |
| [opendal](https://github.com/apache/opendal) | `0.53.3` | `0.55.0` |
| [pin-project](https://github.com/taiki-e/pin-project) | `1.1.10` | `1.1.11` |
| [pin-project-lite](https://github.com/taiki-e/pin-project-lite) | `0.2.16` | `0.2.17` |
| [prost](https://github.com/tokio-rs/prost) | `0.13.5` | `0.14.3` |
| [prost-build](https://github.com/tokio-rs/prost) | `0.13.5` | `0.14.3` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.13.5` | `0.14.3` |
| [pyo3](https://github.com/pyo3/pyo3) | `0.27.2` | `0.28.2` |
| [pyo3-build-config](https://github.com/pyo3/pyo3) | `0.27.2` | `0.28.2` |
| [rlimit](https://github.com/Nugine/rlimit) | `0.10.2` | `0.11.0` |
| [rustls](https://github.com/rustls/rustls) | `0.23.36` | `0.23.37` |
| [shellexpand](https://gitlab.com/ijackson/rust-shellexpand) | `2.1.2` | `3.1.2` |
| [strum](https://github.com/Peternator7/strum) | `0.26.3` | `0.28.0` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.26.4` | `0.28.0` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.20.5` | `0.38.2` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.25.0` | `3.26.0` |
| [terminal_size](https://github.com/eminence/terminal-size) | `0.1.17` | `0.4.3` |
| [tokio-retry2](https://github.com/naomijub/tokio-retry) | `0.6.0` | `0.9.1` |
| [toml](https://github.com/toml-rs/toml) | `0.8.23` | `1.0.3+spec-1.1.0` |
| [whoami](https://github.com/ardaku/whoami) | `1.6.1` | `2.1.0` |
| [tree-sitter](https://github.com/tree-sitter/tree-sitter) | `0.26.5` | `0.26.6` |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | `0.23.0` | `0.23.1` |


Updates `bollard` from 0.18.1 to 0.20.1
- [Release notes](https://github.com/fussybeaver/bollard/releases)
- [Changelog](https://github.com/fussybeaver/bollard/blob/master/RELEASE.md)
- [Commits](fussybeaver/bollard@v0.18.1...v0.20.1)

Updates `chrono` from 0.4.43 to 0.4.44
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.43...v0.4.44)

Updates `digest` from 0.11.0 to 0.11.1
- [Commits](RustCrypto/traits@digest-v0.11.0...digest-v0.11.1)

Updates `fuser` from 0.11.1 to 0.17.0
- [Release notes](https://github.com/cberner/fuser/releases)
- [Changelog](https://github.com/cberner/fuser/blob/master/CHANGELOG.md)
- [Commits](cberner/fuser@v0.11.1...v0.17.0)

Updates `generic-array` from 0.14.7 to 1.3.3
- [Release notes](https://github.com/fizyk20/generic-array/releases)
- [Changelog](https://github.com/fizyk20/generic-array/blob/master/CHANGELOG.md)
- [Commits](https://github.com/fizyk20/generic-array/commits)

Updates `internment` from 0.6.0 to 0.8.6
- [Changelog](https://github.com/droundy/internment/blob/master/CHANGELOG.md)
- [Commits](https://github.com/droundy/internment/commits)

Updates `nix` from 0.26.4 to 0.30.1
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.26.4...v0.30.1)

Updates `opendal` from 0.53.3 to 0.55.0
- [Release notes](https://github.com/apache/opendal/releases)
- [Changelog](https://github.com/apache/opendal/blob/main/CHANGELOG.md)
- [Commits](apache/opendal@v0.53.3...v0.55.0)

Updates `pin-project` from 1.1.10 to 1.1.11
- [Release notes](https://github.com/taiki-e/pin-project/releases)
- [Changelog](https://github.com/taiki-e/pin-project/blob/main/CHANGELOG.md)
- [Commits](taiki-e/pin-project@v1.1.10...v1.1.11)

Updates `pin-project-lite` from 0.2.16 to 0.2.17
- [Release notes](https://github.com/taiki-e/pin-project-lite/releases)
- [Changelog](https://github.com/taiki-e/pin-project-lite/blob/main/CHANGELOG.md)
- [Commits](taiki-e/pin-project-lite@v0.2.16...v0.2.17)

Updates `prost` from 0.13.5 to 0.14.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.13.5...v0.14.3)

Updates `prost-build` from 0.13.5 to 0.14.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.13.5...v0.14.3)

Updates `prost-types` from 0.13.5 to 0.14.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.13.5...v0.14.3)

Updates `pyo3` from 0.27.2 to 0.28.2
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.27.2...v0.28.2)

Updates `pyo3-build-config` from 0.27.2 to 0.28.2
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.27.2...v0.28.2)

Updates `rlimit` from 0.10.2 to 0.11.0
- [Changelog](https://github.com/Nugine/rlimit/blob/main/CHANGELOG.md)
- [Commits](Nugine/rlimit@v0.10.2...v0.11.0)

Updates `rustls` from 0.23.36 to 0.23.37
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.36...v/0.23.37)

Updates `shellexpand` from 2.1.2 to 3.1.2
- [Commits](https://gitlab.com/ijackson/rust-shellexpand/compare/shellexpand/2.1.2...shellexpand-3.1.2)

Updates `strum` from 0.26.3 to 0.28.0
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.26.3...v0.28.0)

Updates `strum_macros` from 0.26.4 to 0.28.0
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Peternator7/strum/commits/v0.28.0)

Updates `sysinfo` from 0.20.5 to 0.38.2
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.20.5...v0.38.2)

Updates `tempfile` from 3.25.0 to 3.26.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Stebalien/tempfile/commits/v3.26.0)

Updates `terminal_size` from 0.1.17 to 0.4.3
- [Release notes](https://github.com/eminence/terminal-size/releases)
- [Commits](eminence/terminal-size@v0.1.17...v0.4.3)

Updates `tokio-retry2` from 0.6.0 to 0.9.1
- [Changelog](https://github.com/naomijub/tokio-retry/blob/main/CHANGELOG.md)
- [Commits](https://github.com/naomijub/tokio-retry/commits)

Updates `toml` from 0.8.23 to 1.0.3+spec-1.1.0
- [Commits](toml-rs/toml@toml-v0.8.23...toml-v1.0.3)

Updates `whoami` from 1.6.1 to 2.1.0
- [Release notes](https://github.com/ardaku/whoami/releases)
- [Commits](https://github.com/ardaku/whoami/commits/v2.1.0)

Updates `tree-sitter` from 0.26.5 to 0.26.6
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](tree-sitter/tree-sitter@v0.26.5...v0.26.6)

Updates `cargo_metadata` from 0.23.0 to 0.23.1
- [Release notes](https://github.com/oli-obk/cargo_metadata/releases)
- [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md)
- [Commits](oli-obk/cargo_metadata@0.23.0...0.23.1)

---
updated-dependencies:
- dependency-name: bollard
  dependency-version: 0.20.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: chrono
  dependency-version: 0.4.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: digest
  dependency-version: 0.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: fuser
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: generic-array
  dependency-version: 1.3.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-version-updates
- dependency-name: internment
  dependency-version: 0.8.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: nix
  dependency-version: 0.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: opendal
  dependency-version: 0.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: pin-project
  dependency-version: 1.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: pin-project-lite
  dependency-version: 0.2.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: prost
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: prost-build
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: prost-types
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: pyo3
  dependency-version: 0.28.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: pyo3-build-config
  dependency-version: 0.28.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: rlimit
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: rustls
  dependency-version: 0.23.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: shellexpand
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-version-updates
- dependency-name: strum
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: strum_macros
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: sysinfo
  dependency-version: 0.38.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: tempfile
  dependency-version: 3.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: terminal_size
  dependency-version: 0.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: tokio-retry2
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: toml
  dependency-version: 1.0.3+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-version-updates
- dependency-name: whoami
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-version-updates
- dependency-name: tree-sitter
  dependency-version: 0.26.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: cargo_metadata
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added category:internal CI, fixes for not-yet-released features, etc. dependencies Pull requests that update a dependency file release-notes:not-required [CI] PR doesn't require mention in release notes labels Mar 1, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 28, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Mar 28, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/src/rust/rust-version-updates-cbc8b4b4e5 branch March 28, 2026 21:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

category:internal CI, fixes for not-yet-released features, etc. dependencies Pull requests that update a dependency file release-notes:not-required [CI] PR doesn't require mention in release notes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants