Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

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

Package From To
axum 0.7.9 0.8.8
axum-server 0.7.2 0.8.0
bollard 0.18.1 0.20.0
chrono 0.4.42 0.4.43
clap 4.5.49 4.5.56
colored 3.0.0 3.1.1
fs-set-times 0.19.2 0.20.3
fuser 0.11.1 0.16.0
generic-array 0.14.7 1.3.3
http 1.3.1 1.4.0
humansize 1.1.1 2.1.3
indexmap 2.11.4 2.13.0
internment 0.6.0 0.8.6
libc 0.2.179 0.2.180
nix 0.26.4 0.29.0
opendal 0.52.0 0.55.0
os_pipe 1.2.2 1.2.3
parking_lot 0.12.4 0.12.5
petgraph 0.7.1 0.8.3
prost 0.13.5 0.14.3
prost-build 0.13.5 0.14.3
prost-types 0.13.5 0.14.3
regex 1.11.2 1.12.2
rustls 0.23.31 0.23.36
rustls-native-certs 0.8.1 0.8.3
rustls-pki-types 1.13.0 1.14.0
serde_json 1.0.145 1.0.149
shellexpand 2.1.2 3.1.1
strum 0.26.3 0.27.2
strum_macros 0.26.4 0.27.2
sysinfo 0.20.5 0.38.0
terminal_size 0.1.17 0.4.3
time 0.3.44 0.3.46
tokio 1.48.0 1.49.0
tokio-retry2 0.6.0 0.9.1
tokio-stream 0.1.17 0.1.18
tokio-util 0.7.16 0.7.18
toml 0.8.23 0.9.11+spec-1.1.0
tower 0.5.2 0.5.3
uuid 1.19.0 1.20.0
whoami 1.6.0 1.6.1
tree-sitter 0.25.10 0.26.3
cargo_metadata 0.23.0 0.23.1

Updates axum from 0.7.9 to 0.8.8

Release notes

Sourced from axum's releases.

axum v0.8.8

  • Clarify documentation for Router::route_layer (#3567)

#3567: tokio-rs/axum#3567

axum v0.8.7

  • Relax implicit Send / Sync bounds on RouterAsService, RouterIntoService (#3555)
  • Make it easier to visually scan for default features (#3550)
  • Fix some documentation typos

#3550: tokio-rs/axum#3550 #3555: tokio-rs/axum#3555

axum v0.8.5

  • fixed: Reject JSON request bodies with trailing characters after the JSON document (#3453)
  • added: Implement OptionalFromRequest for Multipart (#3220)
  • added: Getter methods Location::{status_code, location}
  • added: Support for writing arbitrary binary data into server-sent events (#3425)]
  • added: middleware::ResponseAxumBodyLayer for mapping response body to axum::body::Body (#3469)
  • added: impl FusedStream for WebSocket (#3443)
  • changed: The sse module and Sse type no longer depend on the tokio feature (#3154)
  • changed: If the location given to one of Redirects constructors is not a valid header value, instead of panicking on construction, the IntoResponse impl now returns an HTTP 500, just like Json does when serialization fails (#3377)
  • changed: Update minimum rust version to 1.78 (#3412)

#3154: tokio-rs/axum#3154 #3220: tokio-rs/axum#3220 #3377: tokio-rs/axum#3377 #3412: tokio-rs/axum#3412 #3425: tokio-rs/axum#3425 #3443: tokio-rs/axum#3443 #3453: tokio-rs/axum#3453 #3469: tokio-rs/axum#3469

axum v0.8.4

  • added: Router::reset_fallback (#3320)
  • added: WebSocketUpgrade::selected_protocol (#3248)
  • fixed: Panic location for overlapping method routes (#3319)
  • fixed: Don't leak a tokio task when using serve without graceful shutdown (#3129)

#3319: tokio-rs/axum#3319 #3320: tokio-rs/axum#3320 #3248: tokio-rs/axum#3248 #3129: tokio-rs/axum#3129

axum v0.8.3

  • added: Implement From<Bytes> for Message (#3273)
  • added: Implement OptionalFromRequest for Json (#3142)
  • added: Implement OptionalFromRequest for Extension (#3157)
  • added: Allow setting the read buffer capacity of WebSocketUpgrade (#3178)

... (truncated)

Commits
  • d07863f Release axum v0.8.8 and axum-extra v0.12.3
  • 287c674 axum-extra: Make typed-routing feature enable routing feature (#3514)
  • f5804aa SecondElementIs: Correct a small inconsistency (#3559)
  • f51f3ba axum-extra: Add trailing newline to pretty JSON response (#3526)
  • 816407a Fix integer underflow in try_range_response for empty files (#3566)
  • 78656eb docs: Clarify route_layer does not apply middleware to the fallback handler...
  • 4404f27 Release axum v0.8.7 and axum-extra v0.12.2
  • 8f1545a Fix typo in extractors guide (#3554)
  • 4fc3faa Relax implicit Send / Sync bounds (#3555)
  • a05920c Make it easier to visually scan for default features (#3550)
  • Additional commits viewable in compare view

Updates axum-server from 0.7.2 to 0.8.0

Release notes

Sourced from axum-server's releases.

v0.8.0

  • changed: Server is now generic over connections, allowing axum-server to listen not just on TCP.
  • added: Support for Unix sockets has been implemented and an example for Unix sockets has been provided.
  • changed: rustls-pemfile was replaced with rustls-pki-types as it is now unmaintained.

v0.7.4

  • added: Support for http1-only and http2-only servers.
  • changed: Improved error messages that come from parsing pemfiles with rustls.

v0.7.3

  • fixed: axum-server not compiling in hyper 1.8.0.
Changelog

Sourced from axum-server's changelog.

0.8.0 (7. December 2025)

  • changed: Server is now generic over connections, allowing axum-server to listen not just on TCP.
  • added: Support for Unix sockets has been implemented and an example for Unix sockets has been provided.
  • changed: rustls-pemfile was replaced with rustls-pki-types as it is now unmaintained.

0.7.4 (16. November 2025)

  • added: Support for http1-only and http2-only servers.
  • changed: Improved error messages that come from parsing pemfiles with rustls.

0.7.3 (15. November 2025)

  • fixed: axum-server not compiling in hyper 1.8.0.
Commits

Updates bollard from 0.18.1 to 0.20.0

Release notes

Sourced from bollard's releases.

Release v0.20.0

What's Changed

New Contributors

... (truncated)

Commits
  • 73fcfad release: v0.20.0 (#679)
  • 5731813 build(fix): Set rustls cryptoprovider for protobuf fetch (#680)
  • 2d0c5d7 docs: made feature flag guide more comprehensive (#678)
  • 5f08820 build(deps): bump rust from 1.90.0-slim to 1.92.0-slim (#614)
  • 15ac330 docs: updated docker api version references to 1.52 (#676)
  • ed4fa73 fix: doc warnings (#677)
  • dbfa6e1 chore: remove empty .gitmodules and .cargo/config.toml files (#675)
  • d38f9a3 fix: remove plugin test workarounds now that #651 is fixed (#673)
  • 6d1fbd6 fix: synced bollard code with 1.52 bollard-stubs (#674)
  • 679adf8 feat: upgrade Docker API from v1.49 to v1.52 (#670)
  • Additional commits viewable in compare view

Updates chrono from 0.4.42 to 0.4.43

Release notes

Sourced from chrono's releases.

0.4.43

What's Changed

Commits
  • 45caaa9 Update copyright year to 2026 in LICENSE.txt
  • 1c0b8f0 Bump version to 0.4.43
  • a03e43b Upgrade windows-bindgen to 0.66
  • 4fedaba Ignore bincode advisory
  • f4b7bbd Bump actions/checkout from 5 to 6
  • db12973 Added doctest for the NaiveDate years_since function (#1755)
  • 34b5f49 chore: minor improvement for docs
  • 8c82711 Bump actions/setup-node from 5 to 6
  • ea1f11b Drop deny lints, eager Debug impls are a mixed blessing
  • 35f9f2d Add feature gated defmt support.
  • Additional commits viewable in compare view

Updates clap from 4.5.49 to 4.5.56

Release notes

Sourced from clap's releases.

v4.5.56

[4.5.56] - 2026-01-29

Fixes

  • On conflict error, don't show conflicting arguments in the usage

v4.5.55

[4.5.55] - 2026-01-27

Fixes

  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args

v4.5.54

[4.5.54] - 2026-01-02

Fixes

  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

v4.5.53

[4.5.53] - 2025-11-19

Features

  • Add default_values_if, default_values_ifs

v4.5.52

[4.5.52] - 2025-11-17

Fixes

  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

v4.5.51

[4.5.51] - 2025-10-29

Fixes

  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted
Changelog

Sourced from clap's changelog.

[4.5.56] - 2026-01-29

Fixes

  • On conflict error, don't show conflicting arguments in the usage

[4.5.55] - 2026-01-27

Fixes

  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args

[4.5.54] - 2026-01-02

Fixes

  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

[4.5.53] - 2025-11-19

Features

  • Add default_values_if, default_values_ifs

[4.5.52] - 2025-11-17

Fixes

  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

[4.5.51] - 2025-10-29

Fixes

  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted
Commits
  • 9cec100 chore: Release
  • 00e72e0 docs: Update changelog
  • c7848ff Merge pull request #6094 from epage/home
  • 60184fb feat(complete): Expand ~ in native completions
  • 09969d3 chore(deps): Update Rust Stable to v1.89 (#6093)
  • 520beb5 chore: Release
  • 2bd8ab3 docs: Update changelog
  • 220875b Merge pull request #6091 from epage/possible
  • e5eb6c9 fix(help): Integrate 'Possible Values:' into 'Arg::help'
  • 594a771 refactor(help): Make empty tracking more consistent
  • Additional commits viewable in compare view

Updates colored from 3.0.0 to 3.1.1

Changelog

Sourced from colored's changelog.

Unreleased

  • Added methods ansi_color and on_ansi_color to Colorize.
Commits

Updates fs-set-times from 0.19.2 to 0.20.3

Commits
  • 56406c9 chore: Release fs-set-times version 0.20.3
  • 6f2de3a Update to rustix 1.0. (#9)
  • eabc4ca chore: Release fs-set-times version 0.20.2
  • 39b03aa Update to windows-sys 0.59. (#8)
  • 0fc603b chore: Release fs-set-times version 0.20.1
  • a2aab3c Update to windows-sys 0.52.0. (#7)
  • 5afe5b4 Update to Rust 2021.
  • ddbef00 chore: Release fs-set-times version 0.20.0
  • f0a2cd7 Update to io-lifetimes 2.0.
  • See full diff in compare view

Updates fuser from 0.11.1 to 0.16.0

Release notes

Sourced from fuser's releases.

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

  • Add support for poll
  • Add support for notifications
  • ABI 7.11 support is now complete

v0.13.0

  • Remove dependency on users crate
  • Performance optimizations

v0.12.0

  • Add method to Session to unmount non-Send Filesystems
Changelog

Sourced from fuser's changelog.

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

0.14.0 - 2023-11-04

  • Add support for poll
  • Add support for notifications
  • ABI 7.11 support is now complete

0.13.0 - 2023-08-16

  • Remove dependency on users crate
  • Performance optimizations

0.12.0 - 2022-12-13

  • Add method to Session to unmount non-Send Filesystems
Commits
  • d39b152 Bump version to 0.16.0
  • 43b3be4 Update changelog
  • 47113e1 fix: Fix leaks and read of unitialized memory in libfuse
  • 76bbed0 Inline debug arguments.
  • f5d27ff Fix simple.rs crash on FreeBSD
  • ed868f6 Fix sticky bit handling in simple.rs on FreeBSD
  • 098fe4a Add --auto-unmount flag to simple.rs
  • ecc9a85 Enable integration tests on non-Linux platforms
  • 8684510 Improve compatibility with macfuse
  • a8cd42c Add mount_tests to BSD CI
  • 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 http from 1.3.1 to 1.4.0

Release notes

Sourced from http's releases.

v1.4.0

Highlights

  • Add StatusCode::EARLY_HINTS constant for 103 Early Hints.
  • Make StatusCode::from_u16 now a const fn.
  • Make Authority::from_static now a const fn.
  • Make PathAndQuery::from_static now a const fn.
  • MSRV increased to 1.57 (allows legible const fn panic messages).

What's Changed

New Contributors

Full Changelog: hyperium/http@v1.3.1...v1.4.0

Changelog

Sourced from http's changelog.

1.4.0 (November 24, 2025)

  • Add StatusCode::EARLY_HINTS constant for 103 Early Hints.
  • Make StatusCode::from_u16 now a const fn.
  • Make Authority::from_static now a const fn.
  • Make PathAndQuery::from_static now a const fn.
  • MSRV increased to 1.57 (allows legible const fn panic messages).
Commits
  • b9625d8 v1.4.0
  • 50b009c refactor(header): inline FNV hasher to reduce dependencies (#796)
  • b370d36 feat(uri): make Authority/PathAndQuery::from_static const (#786)
  • 0d74251 chore(ci): update to actions/checkout@v5 (#800)
  • a760767 docs: remove unnecessary extern crate sentence (#799)
  • fb1d457 refactor(header): use better panic message in const HeaderName and HeaderValu...
  • 20dbd6e feat(status): Add 103 EARLY_HINTS status code (#758)
  • e7a7337 chore: bump MSRV to 1.57
  • 1888e28 tests: downgrade rand back to 0.8 for now
  • 918bbc3 chore: minor improvement for docs (#790)
  • Additional commits viewable in compare view

Updates humansize from 1.1.1 to 2.1.3

Commits

Updates hyper from 1.7.0 to 1.8.1

Release notes

Sourced from hyper's releases.

v1.8.1

Bug Fixes

  • http1: fix consuming extra CPU from previous change (#3977) (4492f31e)

Full Changelog: hyperium/hyper@v1.8.0...v1.8.1

v1.8.0

Highlights

Features

  • rt: add Timer::now() method to allow overriding the instant returned (#3965) (5509ebe6)

Bug Fixes

Breaking Changes

While technically breaking, it's assumed you will not need to do anything or be affected.

  • The HTTP/2 client connection no longer allows an executor that can not spawn itself.

    This was an oversight originally. The client connection will now include spawning a future that keeps a copy of the executor to spawn other futures. Thus, if it is !Send, it needs to spawn !Send futures. The likelihood of executors that match the previously allowed behavior should be very remote.

    There is also technically a semver break in here, which is that the Http2ClientConnExec trait no longer dyn-compatible, because it now expects to be Clone. This should not break usage of the conn builder, because it already separately had E: Clone bounds. If someone were using dyn Http2ClientConnExec, that will break. However, there is no purpose for doing so, and it is not usable otherwise, since the trait only exists to propagate bounds into hyper. Thus, the breakage should not affect anyone. (58e0e7dc)

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [axum](https://github.com/tokio-rs/axum) | `0.7.9` | `0.8.8` |
| [axum-server](https://github.com/programatik29/axum-server) | `0.7.2` | `0.8.0` |
| [bollard](https://github.com/fussybeaver/bollard) | `0.18.1` | `0.20.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.42` | `0.4.43` |
| [clap](https://github.com/clap-rs/clap) | `4.5.49` | `4.5.56` |
| [colored](https://github.com/mackwic/colored) | `3.0.0` | `3.1.1` |
| [fs-set-times](https://github.com/bytecodealliance/fs-set-times) | `0.19.2` | `0.20.3` |
| [fuser](https://github.com/cberner/fuser) | `0.11.1` | `0.16.0` |
| [generic-array](https://github.com/fizyk20/generic-array) | `0.14.7` | `1.3.3` |
| [http](https://github.com/hyperium/http) | `1.3.1` | `1.4.0` |
| [humansize](https://github.com/LeopoldArkham/humansize) | `1.1.1` | `2.1.3` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.11.4` | `2.13.0` |
| [internment](https://github.com/droundy/internment) | `0.6.0` | `0.8.6` |
| [libc](https://github.com/rust-lang/libc) | `0.2.179` | `0.2.180` |
| [nix](https://github.com/nix-rust/nix) | `0.26.4` | `0.29.0` |
| [opendal](https://github.com/apache/opendal) | `0.52.0` | `0.55.0` |
| [os_pipe](https://github.com/oconnor663/os_pipe.rs) | `1.2.2` | `1.2.3` |
| [parking_lot](https://github.com/Amanieu/parking_lot) | `0.12.4` | `0.12.5` |
| [petgraph](https://github.com/petgraph/petgraph) | `0.7.1` | `0.8.3` |
| [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` |
| [regex](https://github.com/rust-lang/regex) | `1.11.2` | `1.12.2` |
| [rustls](https://github.com/rustls/rustls) | `0.23.31` | `0.23.36` |
| [rustls-native-certs](https://github.com/rustls/rustls-native-certs) | `0.8.1` | `0.8.3` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.13.0` | `1.14.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.145` | `1.0.149` |
| [shellexpand](https://gitlab.com/ijackson/rust-shellexpand) | `2.1.2` | `3.1.1` |
| [strum](https://github.com/Peternator7/strum) | `0.26.3` | `0.27.2` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.26.4` | `0.27.2` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.20.5` | `0.38.0` |
| [terminal_size](https://github.com/eminence/terminal-size) | `0.1.17` | `0.4.3` |
| [time](https://github.com/time-rs/time) | `0.3.44` | `0.3.46` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.48.0` | `1.49.0` |
| [tokio-retry2](https://github.com/naomijub/tokio-retry) | `0.6.0` | `0.9.1` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.17` | `0.1.18` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.16` | `0.7.18` |
| [toml](https://github.com/toml-rs/toml) | `0.8.23` | `0.9.11+spec-1.1.0` |
| [tower](https://github.com/tower-rs/tower) | `0.5.2` | `0.5.3` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.19.0` | `1.20.0` |
| [whoami](https://github.com/ardaku/whoami) | `1.6.0` | `1.6.1` |
| [tree-sitter](https://github.com/tree-sitter/tree-sitter) | `0.25.10` | `0.26.3` |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | `0.23.0` | `0.23.1` |



Updates `axum` from 0.7.9 to 0.8.8
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](tokio-rs/axum@axum-v0.7.9...axum-v0.8.8)

Updates `axum-server` from 0.7.2 to 0.8.0
- [Release notes](https://github.com/programatik29/axum-server/releases)
- [Changelog](https://github.com/programatik29/axum-server/blob/master/CHANGELOG.md)
- [Commits](programatik29/axum-server@v0.7.2...v0.8.0)

Updates `bollard` from 0.18.1 to 0.20.0
- [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.0)

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

Updates `clap` from 4.5.49 to 4.5.56
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.49...clap_complete-v4.5.56)

Updates `colored` from 3.0.0 to 3.1.1
- [Release notes](https://github.com/mackwic/colored/releases)
- [Changelog](https://github.com/colored-rs/colored/blob/master/CHANGELOG.md)
- [Commits](colored-rs/colored@v3.0.0...v3.1.1)

Updates `fs-set-times` from 0.19.2 to 0.20.3
- [Commits](bytecodealliance/fs-set-times@v0.19.2...v0.20.3)

Updates `fuser` from 0.11.1 to 0.16.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.16.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 `http` from 1.3.1 to 1.4.0
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md)
- [Commits](hyperium/http@v1.3.1...v1.4.0)

Updates `humansize` from 1.1.1 to 2.1.3
- [Changelog](https://github.com/LeopoldArkham/humansize/blob/master/changelog.md)
- [Commits](https://github.com/LeopoldArkham/humansize/commits)

Updates `hyper` from 1.7.0 to 1.8.1
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v1.7.0...v1.8.1)

Updates `hyper-util` from 0.1.17 to 0.1.19
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.17...v0.1.19)

Updates `indexmap` from 2.11.4 to 2.13.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.11.4...2.13.0)

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 `libc` from 0.2.179 to 0.2.180
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.180/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.179...0.2.180)

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

Updates `opendal` from 0.52.0 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.52.0...v0.55.0)

Updates `os_pipe` from 1.2.2 to 1.2.3
- [Commits](oconnor663/os_pipe.rs@1.2.2...1.2.3)

Updates `parking_lot` from 0.12.4 to 0.12.5
- [Release notes](https://github.com/Amanieu/parking_lot/releases)
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@parking_lot-v0.12.4...parking_lot-v0.12.5)

Updates `petgraph` from 0.7.1 to 0.8.3
- [Release notes](https://github.com/petgraph/petgraph/releases)
- [Changelog](https://github.com/petgraph/petgraph/blob/master/CHANGELOG.md)
- [Commits](https://github.com/petgraph/petgraph/compare/petgraph@v0.7.1...petgraph@v0.8.3)

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 `regex` from 1.11.2 to 1.12.2
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.2...1.12.2)

Updates `reqwest` from 0.12.23 to 0.12.28
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.23...v0.12.28)

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

Updates `rustls-native-certs` from 0.8.1 to 0.8.3
- [Release notes](https://github.com/rustls/rustls-native-certs/releases)
- [Commits](rustls/rustls-native-certs@v/0.8.1...v/0.8.3)

Updates `rustls-pki-types` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.13.0...v/1.14.0)

Updates `serde_json` from 1.0.145 to 1.0.149
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.145...v1.0.149)

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

Updates `strum` from 0.26.3 to 0.27.2
- [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.27.2)

Updates `strum_macros` from 0.26.4 to 0.27.2
- [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.27.2)

Updates `sysinfo` from 0.20.5 to 0.38.0
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.20.5...v0.38.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 `time` from 0.3.44 to 0.3.46
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.44...v0.3.46)

Updates `tokio` from 1.48.0 to 1.49.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.48.0...tokio-1.49.0)

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 `tokio-stream` from 0.1.17 to 0.1.18
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-stream-0.1.17...tokio-stream-0.1.18)

Updates `tokio-util` from 0.7.16 to 0.7.18
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.16...tokio-util-0.7.18)

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

Updates `tower` from 0.5.2 to 0.5.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-0.5.2...tower-0.5.3)

Updates `uuid` from 1.19.0 to 1.20.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.19.0...v1.20.0)

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

Updates `tree-sitter` from 0.25.10 to 0.26.3
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](tree-sitter/tree-sitter@v0.25.10...v0.26.3)

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: axum
  dependency-version: 0.8.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: axum-server
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: bollard
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: chrono
  dependency-version: 0.4.43
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: clap
  dependency-version: 4.5.56
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: colored
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: fs-set-times
  dependency-version: 0.20.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: fuser
  dependency-version: 0.16.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: http
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: humansize
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-version-updates
- dependency-name: hyper
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: hyper-util
  dependency-version: 0.1.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: indexmap
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: libc
  dependency-version: 0.2.180
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: nix
  dependency-version: 0.29.0
  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: os_pipe
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: parking_lot
  dependency-version: 0.12.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: petgraph
  dependency-version: 0.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: regex
  dependency-version: 1.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: reqwest
  dependency-version: 0.12.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: rustls
  dependency-version: 0.23.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: rustls-native-certs
  dependency-version: 0.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: rustls-pki-types
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: serde_json
  dependency-version: 1.0.149
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: shellexpand
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-version-updates
- dependency-name: strum
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: strum_macros
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: sysinfo
  dependency-version: 0.38.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: time
  dependency-version: 0.3.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: tokio
  dependency-version: 1.49.0
  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: tokio-stream
  dependency-version: 0.1.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: tokio-util
  dependency-version: 0.7.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: toml
  dependency-version: 0.9.11+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: tower
  dependency-version: 0.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: uuid
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-version-updates
- dependency-name: whoami
  dependency-version: 1.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-version-updates
- dependency-name: tree-sitter
  dependency-version: 0.26.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 Feb 1, 2026
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

0 participants