Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the crates-io group with 27 updates in the / directory:

Package From To
flate2 1.1.5 1.1.8
goblin 0.10.3 0.10.4
serde_json 1.0.145 1.0.149
tempfile 3.23.0 3.24.0
zip 6.0.0 7.2.0
thiserror 2.0.17 2.0.18
fs-err 3.2.0 3.2.2
target-lexicon 0.13.3 0.13.4
indexmap 2.12.0 2.13.0
cc 1.2.46 1.2.55
time 0.3.44 0.3.45
url 2.5.7 2.5.8
clap 4.5.52 4.5.56
cargo-zigbuild 0.20.1 0.21.2
tracing 0.1.41 0.1.44
tracing-subscriber 0.3.20 0.3.22
dialoguer 0.11.0 0.12.0
console 0.16.1 0.16.2
minijinja 2.12.0 2.15.1
bytesize 2.2.0 2.3.1
dirs 5.0.1 6.0.0
rustls 0.23.35 0.23.36
schemars 1.1.0 1.2.0
nix 0.30.1 0.31.1
insta 1.43.2 1.46.2
serial_test 3.2.0 3.3.1
which 7.0.3 8.0.0

Updates flate2 from 1.1.5 to 1.1.8

Release notes

Sourced from flate2's releases.

1.1.8

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.7...1.1.8

1.1.7 - depend on zlib-rs directly and remove libz-rs-sys

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.5...1.1.6

1.1.6 - YANKED

It caused rust-lang/flate2-rs#515.

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.5...1.1.6

Commits
  • 8b66c27 Merge pull request #525 from Byron/test-zlib-API
  • 5e752c9 Address PR review
  • 3196dd0 refactor internal feature toggles to better represent the status quo
  • 106cbcc Bump patch level in preparation for release
  • af7a0b3 Add capabilties test for functions reserved to zlib-implementations.
  • 22c77ee Describe unreachable!("...") branch in Deflate::set_level() of zlib-rs
  • b9e2979 Remove C-binding specific restriction from CI for zlib-rs test.
  • 71eb5c5 Merge pull request #524 from Byron/complete-zlib-rs
  • fec67eb zlib-rs: support set_dictionary and set_level
  • ecfdc2d update zlib-rs to 0.5.5
  • Additional commits viewable in compare view

Updates goblin from 0.10.3 to 0.10.4

Changelog

Sourced from goblin's changelog.

[0.10.4] - 2025-11-30

Added

elf.reloc: add some missing PowerPC 32-bit relocation type constants, thanks @​ivlzme: m4b/goblin#495

Fixed

pe: Fix potential out-of-bounds read in unwind/POGO info parser, thanks @​kkent030315: m4b/goblin#498 pe: Reject cyclic resource trees, thanks @​Mrmaxmeier: m4b/goblin#499 pe: Handle unpadded resource values in .NET assemblies compiled with Mono, thanks @​BinFlip: m4b/goblin#501

Commits

Updates serde_json from 1.0.145 to 1.0.149

Release notes

Sourced from serde_json's releases.

v1.0.149

  • Align arbitrary_precision number strings with zmij's formatting (#1306, thanks @​b41sh)

v1.0.148

  • Update zmij dependency to 1.0

v1.0.147

  • Switch float-to-string algorithm from Ryū to Żmij for better f32 and f64 serialization performance (#1304)

v1.0.146

Commits

Updates tempfile from 3.23.0 to 3.24.0

Changelog

Sourced from tempfile's changelog.

3.24.0

  • Actually support WASIp2 without the nightly feature. This library is now feature complete on WASIp2 without any additional feature flags.
  • Exclude CI scripts from the published crate.
Commits

Updates zip from 6.0.0 to 7.2.0

Release notes

Sourced from zip's releases.

v7.2.0

🚀 Features

  • add read_zipfile_from_stream_with_compressed_size (#70)
  • Allow choosing bzip2 rust backend (#329)

🐛 Bug Fixes

  • Need to include zip64 extra field in central directory (fix #353) (#360)
  • Fails to extract file which might or might not be malformed (#376) (#426)
  • (aes) Allow AES encryption while streaming (#463)
  • Default "platform" field in zip files should be set to the local platform, rather than always "Unix" (#470) (#471)

🚜 Refactor

  • Define cfg_if! and cfg_if_expr! internal macros (#438)

⚡ Performance

  • Change an assert to debug_assert when encrypting/decrypting AES, and eliminate a fallible operation (#521)
  • eliminate a String clone per new file added to archive, and other related refactors (#522)

⚙️ Miscellaneous Tasks

  • Fix another merge error, this one affecting only builds with flate2 and not zopfli
  • Fix more merge issues
  • Fix merge
  • Fix write_dir build errors on specific feature configs
  • Fix clippy warning
  • Fix --all-features build error
  • Fix merge

v7.1.0

🚀 Features

  • display the underlying error in Display impl for ZipError::Display (#483)
  • Enable creation of ZipArchive without reparsing (#485)

🐛 Bug Fixes

  • Return InvalidPassword rather than panic when AES key is the wrong length (#457)
  • bench with auto zip64 comment (#505)
  • add condition for getrandom dependency (#504)
  • (zipcrypto) Support streaming ZipCrypto encryption, don't store entire file in memory (#462)

🚜 Refactor

  • Clean up imports and move types (#461)
  • Replace handwritten Ord and PartialOrd for DateTime (#484)

... (truncated)

Changelog

Sourced from zip's changelog.

7.2.0 - 2026-01-20

🚀 Features

  • add read_zipfile_from_stream_with_compressed_size (#70)
  • Allow choosing bzip2 rust backend (#329)

🐛 Bug Fixes

  • Need to include zip64 extra field in central directory (fix #353) (#360)
  • Fails to extract file which might or might not be malformed (#376) (#426)
  • (aes) Allow AES encryption while streaming (#463)
  • Default "platform" field in zip files should be set to the local platform, rather than always "Unix" (#470) (#471)

🚜 Refactor

  • Define cfg_if! and cfg_if_expr! internal macros (#438)

⚡ Performance

  • Change an assert to debug_assert when encrypting/decrypting AES, and eliminate a fallible operation (#521)
  • eliminate a String clone per new file added to archive, and other related refactors (#522)

7.1.0 - 2026-01-14

🚀 Features

  • display the underlying error in Display impl for ZipError (#483)
  • Enable creation of ZipArchive without reparsing (#485)

🐛 Bug Fixes

  • Return InvalidPassword rather than panic when AES key is the wrong length (#457)
  • bench with auto zip64 comment (#505)
  • add condition for getrandom dependency (#504)
  • (zipcrypto) Support streaming ZipCrypto encryption, don't store entire file in memory (#462)

🚜 Refactor

  • Clean up imports and move types (#461)
  • Replace handwritten Ord and PartialOrd for DateTime (#484)

⚙️ Miscellaneous Tasks

  • Lock lzma-rust2 to at least 0.15.5 (#491)

7.0.0 - 2025-12-05

⚠️ Breaking Changes

... (truncated)

Commits
  • 46dc29c chore: release v7.2.0 (#526)
  • 8a586c6 test: Move a test that was in wrong folder and was using main() instead of `#...
  • cfbb476 docs(examples): Fix remaining log-injection alerts, and simplify writeln to e...
  • d905296 ci: Disable trigger on non-master push (#538)
  • a3a8696 chore(deps): Increase zstd minimum version to 0.13.3 (#539)
  • abd8bc8 ci: Add wasm tests and restore conditional wasm-bindgen dependency (#525)
  • c10c339 doc(examples): add delete/update examples (#56)
  • 9c1a9c7 docs(examples): Fix code scanning alert no. 228: Uncontrolled data used in pa...
  • a12eaaf ci: Combine rename invocations (#533)
  • e86d376 fix: Need to include zip64 extra field in central directory (fix #353) (#360)
  • Additional commits viewable in compare view

Updates thiserror from 2.0.17 to 2.0.18

Release notes

Sourced from thiserror's releases.

2.0.18

Commits
  • dc0f6a2 Release 2.0.18
  • 0275292 Touch up PR 443
  • 3c33bc6 Merge pull request #443 from LucaCappelletti94/master
  • 995939c Reproduce issue 442
  • 21653d1 Made clippy lifetime allows conditional
  • 45e5388 Update actions/upload-artifact@v5 -> v6
  • 386aac1 Update actions/upload-artifact@v4 -> v5
  • ec50561 Update actions/checkout@v5 -> v6
  • 247eab5 Update name of empty_enum clippy lint
  • 91b181f Raise required compiler to Rust 1.68
  • Additional commits viewable in compare view

Updates fs-err from 3.2.0 to 3.2.2

Changelog

Sourced from fs-err's changelog.

3.2.2

  • Add wrappers for File::set_modified and File::set_times (#84)

3.2.1

  • Rename parameters of symlink, soft_link and hard_link functions to match std (#83)
Commits

Updates target-lexicon from 0.13.3 to 0.13.4

Commits

Updates indexmap from 2.12.0 to 2.13.0

Changelog

Sourced from indexmap's changelog.

2.13.0 (2026-01-07)

  • Implemented Clone for IntoKeys and IntoValues.
  • Added map::Slice::split_at_checked and split_at_mut_checked.
  • Added set::Slice::split_at_checked.

2.12.1 (2025-11-20)

  • Simplified a lot of internals using hashbrown's new bucket API.
Commits
  • a4aba99 Merge pull request #431 from cuviper/release-2.13.0
  • e345f3a Release 2.13.0
  • e6b677b Merge pull request #430 from cuviper/split_at_checked
  • 61c9d53 Add Slice::split_at_checked and split_at_mut_checked
  • 8b8d350 Merge pull request #426 from cuviper/clone-intokv
  • 88efd0c impl Clone for IntoKeys and IntoValues
  • 3b6d04b Merge pull request #425 from cuviper/inner-core
  • eb30eb1 Move crate::map::core to crate::inner
  • cfad758 Merge pull request #424 from cuviper/buckets
  • a96b9c7 Release 2.12.1
  • Additional commits viewable in compare view

Updates cc from 1.2.46 to 1.2.55

Release notes

Sourced from cc's releases.

cc-v1.2.55

Other

  • Regenerate target info (#1667)
  • Fix RUSTFLAGS typo in test-linker-plugin-lto (#1665)
  • Disable PIC for armv7-sony-vita-newlibeabihf (#1664)

cc-v1.2.54

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)

cc-v1.2.53

Other

  • Add missing RISC-V targets (#1657)

cc-v1.2.52

Other

  • Fix contradictory doc for CC compiler in crate doc (#1650)
  • Have CUDA compilaion check for sbsa-linux when targeting aarch64. (#1647)
  • Update link for -Cdwarf-version; Remove -Z (stabilized in 1.88) (#1648)
  • Fix Build::env_tool to check for .exe on windows (#1646)

cc-v1.2.51

Other

  • Regenerate target info (#1642)
  • Update Readmes (#1641)

cc-v1.2.50

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)

cc-v1.2.49

Other

  • Fix run_output to prevent infinite blocking (#1627)
  • Fix detect_family deadlock (#1626)
  • Fix link in new debug_str doc comment (#1625)
  • Support more of Cargo's debug levels with Build::debug_str (#1624)

cc-v1.2.48

Other

  • Regenerate target info (#1620)

... (truncated)

Changelog

Sourced from cc's changelog.

1.2.55 - 2026-01-30

Other

  • Regenerate target info (#1667)
  • Fix RUSTFLAGS typo in test-linker-plugin-lto (#1665)
  • Disable PIC for armv7-sony-vita-newlibeabihf (#1664)

1.2.54 - 2026-01-23

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)

1.2.53 - 2026-01-16

Other

  • Add missing RISC-V targets (#1657)

1.2.52 - 2026-01-09

Other

  • Fix contradictory doc for CC compiler in crate doc (#1650)
  • Have CUDA compilaion check for sbsa-linux when targeting aarch64. (#1647)
  • Update link for -Cdwarf-version; Remove -Z (stabilized in 1.88) (#1648)
  • Fix Build::env_tool to check for .exe on windows (#1646)

1.2.51 - 2025-12-26

Other

  • Regenerate target info (#1642)
  • Update Readmes (#1641)

1.2.50 - 2025-12-19

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)

1.2.49 - 2025-12-06

Other

  • Fix run_output to prevent infinite blocking (#1627)
  • Fix detect_family deadlock (#1626)

... (truncated)

Commits

Updates time from 0.3.44 to 0.3.45

Release notes

Sourced from time's releases.

v0.3.45

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.45 [2026-01-13]

Added

  • time::format_description::StaticFormatDescription type alias for &'static [BorrowedFormatItem<'static>]. This is the type returned by the time::macros::format_description! macro.

Changed

  • The minimum supported Rust version is now 1.83.0.
  • All floating point methods on Duration are now const fn.
  • All setters on Parsed are now const fn.
  • The serde dependency has been replaced with serde_core, This reduces compile times by not including unused parts of serde.
  • Date::from_julian_day uses a new algorithm, resulting in an approximately 16% performance improvement. This method is used internally by numerous other methods.
  • util::is_leap_year uses a new algorithm, resulting in an approximately 8% performance improvement.
Commits
  • d41b5e1 v0.3.45 release
  • 69db9fb Add noop to utils benchmark
  • 30ba933 Change from_julian_day algorithm
  • 267d847 Change leap year algorithm
  • 41e21ef Make util tests more opaque
  • 8f5981a Test whether every year 0-399 is leap year
  • 6365c4c Improve accuracy of Date benchmarks
  • a4fc845 Dependency upgrade
  • c468474 Rename lints for latest rustc
  • 037af66 Add type alias for format_description! output
  • Additional commits viewable in compare view

Updates url from 2.5.7 to 2.5.8

Commits

Updates clap from 4.5.52 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
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
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 cargo-zigbuild from 0.20.1 to 0.21.2

Release notes

Sourced from cargo-zigbuild's releases.

v0.21.2

What's Changed

Full Changelog: rust-cross/cargo-zigbuild@v0.21.1...v0.21.2

v0.21.1

Full Changelog: rust-cross/cargo-zigbuild@v0.21.0...v0.21.1

v0.21.0

What's Changed

New Contributors

Full Changelog: rust-cross/cargo-zigbuild@v0.20.1...v0.21.0

Commits

Updates tracing from 0.1.41 to 0.1.44

Release notes

Sourced from tracing's releases.

tracing 0.1.44

Fixed

  • Fix record_all panic (#3432)

Changed

  • tracing-core: updated to 0.1.36 (#3440)

#3432: tokio-rs/tracing#3432 #3440: tokio-rs/tracing#3440

tracing 0.1.43

Important

The previous release [0.1.42] was yanked because #3382 was a breaking change. See further details in #3424. This release contains all the changes from that version, plus a revert for the problematic part of the breaking PR.

Fixed

  • Revert "make valueset macro sanitary" (#3425)

#3382: tokio-rs/tracing#3382 #3424: tokio-rs/tracing#3424 #3425: tokio-rs/tracing#3425 [0.1.42]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42

tracing 0.1.42

Important

The [Span::record_all] method has been removed from the documented API. It was always unsuable via the documented API as it requried a ValueSet which has no publically documented constructors. The method remains, but should not be used outside of tracing macros.

Added

  • attributes: Support constant expressions as instrument field names (#3158)
  • Add record_all! macro for recording multiple values in one call (#3227)
  • core: Improve code generation at trace points significantly (#3398)

Changed

  • tracing-core: updated to 0.1.35 (#3414)
  • tracing-attributes: updated to 0.1.31 (#3417)

Fixed

  • Fix "name / parent" variant of event! (#2983)

... (truncated)

Commits

Updates tracing-subscriber from 0.3.20 to 0.3.22

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.22

Important

The previous release [0.3.21] was yanked as it depended explicitly on [tracing-0.1.42], which was yanked due to a breaking change (see #3424 for details). This release contains all the changes from the previous release, plus an update to the newer version of tracing.

Changed

  • tracing: updated to 0.1.43 (#3427)

#3424:

Bumps the crates-io group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.5` | `1.1.8` |
| [goblin](https://github.com/m4b/goblin) | `0.10.3` | `0.10.4` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.145` | `1.0.149` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.23.0` | `3.24.0` |
| [zip](https://github.com/zip-rs/zip2) | `6.0.0` | `7.2.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.17` | `2.0.18` |
| [fs-err](https://github.com/andrewhickman/fs-err) | `3.2.0` | `3.2.2` |
| [target-lexicon](https://github.com/bytecodealliance/target-lexicon) | `0.13.3` | `0.13.4` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.12.0` | `2.13.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.46` | `1.2.55` |
| [time](https://github.com/time-rs/time) | `0.3.44` | `0.3.45` |
| [url](https://github.com/servo/rust-url) | `2.5.7` | `2.5.8` |
| [clap](https://github.com/clap-rs/clap) | `4.5.52` | `4.5.56` |
| [cargo-zigbuild](https://github.com/rust-cross/cargo-zigbuild) | `0.20.1` | `0.21.2` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.41` | `0.1.44` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.20` | `0.3.22` |
| [dialoguer](https://github.com/console-rs/dialoguer) | `0.11.0` | `0.12.0` |
| [console](https://github.com/console-rs/console) | `0.16.1` | `0.16.2` |
| [minijinja](https://github.com/mitsuhiko/minijinja) | `2.12.0` | `2.15.1` |
| [bytesize](https://github.com/bytesize-rs/bytesize) | `2.2.0` | `2.3.1` |
| [dirs](https://github.com/soc/dirs-rs) | `5.0.1` | `6.0.0` |
| [rustls](https://github.com/rustls/rustls) | `0.23.35` | `0.23.36` |
| [schemars](https://github.com/GREsau/schemars) | `1.1.0` | `1.2.0` |
| [nix](https://github.com/nix-rust/nix) | `0.30.1` | `0.31.1` |
| [insta](https://github.com/mitsuhiko/insta) | `1.43.2` | `1.46.2` |
| [serial_test](https://github.com/palfrey/serial_test) | `3.2.0` | `3.3.1` |
| [which](https://github.com/harryfei/which-rs) | `7.0.3` | `8.0.0` |



Updates `flate2` from 1.1.5 to 1.1.8
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.1.5...1.1.8)

Updates `goblin` from 0.10.3 to 0.10.4
- [Changelog](https://github.com/m4b/goblin/blob/master/CHANGELOG.md)
- [Commits](https://github.com/m4b/goblin/commits)

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 `tempfile` from 3.23.0 to 3.24.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.23.0...v3.24.0)

Updates `zip` from 6.0.0 to 7.2.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v6.0.0...v7.2.0)

Updates `thiserror` from 2.0.17 to 2.0.18
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.17...2.0.18)

Updates `fs-err` from 3.2.0 to 3.2.2
- [Changelog](https://github.com/andrewhickman/fs-err/blob/main/CHANGELOG.md)
- [Commits](andrewhickman/fs-err@3.2.0...3.2.2)

Updates `target-lexicon` from 0.13.3 to 0.13.4
- [Commits](bytecodealliance/target-lexicon@v0.13.3...v0.13.4)

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

Updates `cc` from 1.2.46 to 1.2.55
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.46...cc-v1.2.55)

Updates `time` from 0.3.44 to 0.3.45
- [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.45)

Updates `url` from 2.5.7 to 2.5.8
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.7...v2.5.8)

Updates `clap` from 4.5.52 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.52...clap_complete-v4.5.56)

Updates `cargo-zigbuild` from 0.20.1 to 0.21.2
- [Release notes](https://github.com/rust-cross/cargo-zigbuild/releases)
- [Commits](rust-cross/cargo-zigbuild@v0.20.1...v0.21.2)

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

Updates `tracing-subscriber` from 0.3.20 to 0.3.22
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.20...tracing-subscriber-0.3.22)

Updates `dialoguer` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/console-rs/dialoguer/releases)
- [Changelog](https://github.com/console-rs/dialoguer/blob/main/CHANGELOG-OLD.md)
- [Commits](console-rs/dialoguer@v0.11.0...v0.12.0)

Updates `console` from 0.16.1 to 0.16.2
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.16.1...0.16.2)

Updates `minijinja` from 2.12.0 to 2.15.1
- [Release notes](https://github.com/mitsuhiko/minijinja/releases)
- [Changelog](https://github.com/mitsuhiko/minijinja/blob/main/CHANGELOG.md)
- [Commits](mitsuhiko/minijinja@2.12.0...minijinja-go/v2.15.1)

Updates `bytesize` from 2.2.0 to 2.3.1
- [Release notes](https://github.com/bytesize-rs/bytesize/releases)
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md)
- [Commits](bytesize-rs/bytesize@bytesize-v2.2.0...bytesize-v2.3.1)

Updates `dirs` from 5.0.1 to 6.0.0
- [Commits](https://github.com/soc/dirs-rs/commits)

Updates `rustls` from 0.23.35 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.35...v/0.23.36)

Updates `schemars` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/GREsau/schemars/releases)
- [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md)
- [Commits](GREsau/schemars@v1.1.0...v1.2.0)

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

Updates `insta` from 1.43.2 to 1.46.2
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.43.2...1.46.2)

Updates `serial_test` from 3.2.0 to 3.3.1
- [Release notes](https://github.com/palfrey/serial_test/releases)
- [Commits](palfrey/serial_test@v3.2.0...v3.3.1)

Updates `which` from 7.0.3 to 8.0.0
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](harryfei/which-rs@7.0.3...8.0.0)

---
updated-dependencies:
- dependency-name: flate2
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: goblin
  dependency-version: 0.10.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: serde_json
  dependency-version: 1.0.149
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: tempfile
  dependency-version: 3.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: zip
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: crates-io
- dependency-name: thiserror
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: fs-err
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: target-lexicon
  dependency-version: 0.13.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: indexmap
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: cc
  dependency-version: 1.2.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: time
  dependency-version: 0.3.45
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: url
  dependency-version: 2.5.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: clap
  dependency-version: 4.5.56
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: cargo-zigbuild
  dependency-version: 0.21.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: tracing
  dependency-version: 0.1.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: tracing-subscriber
  dependency-version: 0.3.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: dialoguer
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: console
  dependency-version: 0.16.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: minijinja
  dependency-version: 2.15.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: bytesize
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: dirs
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: crates-io
- dependency-name: rustls
  dependency-version: 0.23.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: schemars
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: nix
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: insta
  dependency-version: 1.46.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: serial_test
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: which
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: crates-io
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Something related to dependencies rust Pull requests that update Rust code labels Feb 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Something related to dependencies rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants