Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the rust-minor-patch group with 21 updates in the / directory:

Package From To
clap 4.5.51 4.5.56
minimap2 0.1.28+minimap2.2.30 0.1.30+minimap2.2.30
flate2 1.1.5 1.1.9
anstyle-query 1.1.4 1.1.5
anstyle-wincon 3.0.10 3.0.11
buffer-redux 1.0.2 1.1.0
bytemuck 1.24.0 1.25.0
cc 1.2.44 1.2.55
clap_lex 0.7.6 0.7.7
cmake 0.1.54 0.1.57
indexmap 2.12.0 2.13.0
itoa 1.0.15 1.0.17
libc 0.2.177 0.2.180
libm 0.2.15 0.2.16
libz-ng-sys 1.1.22 1.1.23
libz-sys 1.1.22 1.1.23
portable-atomic 1.11.1 1.13.1
portable-atomic-util 0.2.4 0.2.5
ryu 1.0.20 1.0.22
simd-adler32 0.3.7 0.3.8
zerocopy 0.8.27 0.8.37

Updates clap from 4.5.51 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
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
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 minimap2 from 0.1.28+minimap2.2.30 to 0.1.30+minimap2.2.30

Release notes

Sourced from minimap2's releases.

Minimap2-rs 0.1.30 and minimap2-sys 0.1.30

0.1.30 minimap2 2.30

  • Fix: Check the return value of mm_set_opt @​sjackman
  • Fix: Use std::ptr::null() instead of &0 for null pointer arguments @​sjackman
  • Fix: Update Preset::Asm to map to "asm5" instead of "asm" for minimap2 2.30 compatibility
  • Update rust-htslib requirement from 0.50 to 0.51
  • Rename some C functions to reduce clobbering
Changelog

Sourced from minimap2's changelog.

0.1.30 minimap2 2.30 (UNRELEASED)

  • Fix: Check the return value of mm_set_opt @​sjackman
  • Fix: Use std::ptr::null() instead of &0 for null pointer arguments @​sjackman
  • Fix: Update Preset::Asm to map to "asm5" instead of "asm" for minimap2 2.30 compatibility
  • Update rust-htslib requirement from 0.50 to 0.51
  • Experimental rust threads (and possible windows support)

0.1.28 minimap2 2.30

  • Add fn to implement --junc-bed option @​shamoni
  • Warn of long reference ID names properly @​rob-p

0.1.27 minimap2 2.30

  • Re-release because some older code snuck in

0.1.26 minimap2 2.30

0.1.25 minimap2 2.30

  • Update minimap2-sys to 2.30

0.1.24 minimap2 2.29

  • Update minimap2-sys to 2.29
  • Rust 2024 edition
  • Remove best_n setting to 1, it should be determined by minimap2
  • Helper functions for read_junction, read_pass1, read_splice_scores @​noamteyssier
  • Allow building the index from a named pipe @​rob-p

0.1.23 minimap2 2.28

  • Functions to set flag opts for MapOpt and IdxOpt @​dwpeng
  • Fixed memory leak when not dropping mm_idx_t properly. This is done by adding in syntactic sugar in minimap2-sys @​jguhlin

0.1.22 minimap2 2.28

  • Fixed a memory segfault when re-using a thread local buffer. Not sure why it occurs, but this fix seems to solve it.

0.1.21 minimap2 2.28

Contributors to this release: @​mbhall88 @​rob-p @​Sam-Sims @​charlesgregory @​PB-DB

Breaking Changes

  • Map now returns Arc String's to reduce memory allocation for large and/or repetitive jobs
  • map now takes an additional argument, query_name: Option<&[u8]>, possibly solves #75 (@​rob-p @​mbhall88 @​jguhlin)
  • Arc the Index, to prevent double-frees, solves #71
  • Map file now passes in query name, which should help with #75
  • Supplementary flag now better detected (@​rob-p)
  • FIX: Cigar string missing softclip operation (@​Sam-Sims)

Migration Guide

  • Make all setting changes before calling a with_index, with_seq's function
  • Change all map calls to include a query name, or None if not needed

Other Changes

  • Add ergonomic functions n_seq and get_seq.

... (truncated)

Commits
  • 1c91a54 Update minimap2-sys version dep
  • 0a18af9 Remove retired CI runner
  • d7e9116 Fix layout test compilation errors for cross-platform builds
  • 57ee829 Updates
  • 3ee5223 Updates
  • a3d6c01 Merge pull request #154 from sjackman/sj/mm_set_opt-null
  • 225a5cd Merge pull request #152 from jguhlin/dependabot/github_actions/actions/upload...
  • e765a21 Merge pull request #151 from jguhlin/dependabot/github_actions/actions/downlo...
  • 8201e28 Merge pull request #150 from jguhlin/dependabot/github_actions/actions/checko...
  • 7a7f067 Merge pull request #147 from jguhlin/dependabot/cargo/rust-htslib-0.51
  • Additional commits viewable in compare view

Updates flate2 from 1.1.5 to 1.1.9

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
  • 19ddb18 Merge pull request #529 from folkertdev/update-zlib-rs-0.6.0
  • c956e12 upgrade zlib-rs to version 0.6.0
  • 21d5eeb Merge pull request #528 from wgyt/wgyt/patch
  • 54f8484 update LICENSE-MIT
  • f4924fe Merge pull request #527 from jongiddy/crc-tests
  • 8b9b7a6 Add tests to check data CRC
  • fd17c74 Merge pull request #526 from folkertdev/zlib-rs-crc32
  • aef26ac check that zlib-rs no longer compiles crc32fast
  • 5ec7647 make crc32fast an optional dependency
  • c584e97 use zlib-rs for crc32 (when available)
  • Additional commits viewable in compare view

Updates anstyle-query from 1.1.4 to 1.1.5

Commits
  • 368a871 chore: Release
  • 4d5c297 docs: Update changelog
  • 263b34c Merge pull request #284 from hanna-kruppe/windows-sys-0.61
  • 8029e72 Merge pull request #286 from epage/template
  • 5b1cab4 fix(syntect): Update a windows minimal dep
  • 21b13fa chore(ci): Run more jobs on Windows
  • 51e86fa chore: Update from '_rust/main' template
  • b0881a6 chore(ci): Give more control over where alt version jobs run
  • 829ebd7 chore(deps): Allow windows-sys 0.61
  • 36dd1a2 Merge pull request #285 from epage/template
  • Additional commits viewable in compare view

Updates anstyle-wincon from 3.0.10 to 3.0.11

Commits
  • 368a871 chore: Release
  • 4d5c297 docs: Update changelog
  • 263b34c Merge pull request #284 from hanna-kruppe/windows-sys-0.61
  • 8029e72 Merge pull request #286 from epage/template
  • 5b1cab4 fix(syntect): Update a windows minimal dep
  • 21b13fa chore(ci): Run more jobs on Windows
  • 51e86fa chore: Update from '_rust/main' template
  • b0881a6 chore(ci): Give more control over where alt version jobs run
  • 829ebd7 chore(deps): Allow windows-sys 0.61
  • 36dd1a2 Merge pull request #285 from epage/template
  • Additional commits viewable in compare view

Updates buffer-redux from 1.0.2 to 1.1.0

Commits

Updates bytemuck from 1.24.0 to 1.25.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

1.25

1.24

1.23.2

  • bump derive minimum version.

1.23.1

  • Added a windows-only ZeroableInOption impl for "stdcall" functions.

1.23

  • impl_core_error crate feature adds core::error::Error impl.
  • More ZeroableInOption impls.

1.22

  • Add the pod_saturating feature, which adds Pod impls for Saturating<T> when T is already Pod.
  • A bump in the minimum bytemuck_derive dependency from 1.4.0 to 1.4.1 to avoid a bug if you have a truly ancient cargo.lock file sitting around.
  • Adds Send and Sync impls to BoxBytes.

1.21

  • Implement Pod and Zeroable for core::arch::{x86, x86_64}::__m512, __m512d and __m512i without nightly. Requires Rust 1.72, and is gated through the avx512_simd cargo feature.
  • Allow the use of must_cast_mut and must_cast_slice_mut in const contexts. Requires Rust 1.83, and is gated through the must_cast_extra cargo feature.
  • internal: introduced the maybe_const_fn macro that allows defining some function to be const depending upon some cfg predicate.

1.20

  • New functions to allocate zeroed Arc and Rc. Requires Rust 1.82
  • TransparentWrapper impls for core::cmp::Reverse and core::num::Saturating.
  • internal: Simplified the library's fill_zeroes calls to write_bytes

1.19

... (truncated)

Commits

Updates cc from 1.2.44 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 clap_builder from 4.5.51 to 4.5.56

Release notes

Sourced from clap_builder'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
Changelog

Sourced from clap_builder'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
Commits
  • e0c26b0 chore: Release
  • 88ac651 docs: Update changelog
  • c39115a Merge pull request #6237 from epage/conflict
  • 578cd43 fix(parser): Don't report conflicting arguments in usage
  • 3dca9ae test(parser): Show conflict error
  • d11a611 test(builder): Add more snapshot tests
  • 2047862 chore: Release
  • 7aecad9 docs: Update changelog
  • c3051b5 Merge pull request #6212 from ericgumba/issue_5040
  • 3604b13 fix(parser): Honor positional value_terminator
  • Additional commits viewable in compare view

Updates clap_derive from 4.5.49 to 4.5.55

Release notes

Sourced from clap_derive's releases.

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_derive's changelog.

[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
  • 2047862 chore: Release
  • 7aecad9 docs: Update changelog
  • c3051b5 Merge pull request #6212 from ericgumba/issue_5040
  • 3604b13 fix(parser): Honor positional value_terminator
  • 63d73bc test(parser): Cover value_terminator as first argument
  • b9009a7 Merge pull request #6233 from epage/template
  • f68bf6c chore: Update from _rust template
  • 6d0d36b chore(ci): Clean up previous branch in case it was leaked
  • 30b3b14 chore(ci): Fix how rustfmt jobs run
  • e2d2d25 chore(deps): Update Rust Stable to v1.93 (#6231)
  • Additional commits viewable in compare view

Updates clap_lex from 0.7.6 to 0.7.7

Changelog

Sourced from clap_lex's changelog.

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

5.0.0 - TBD

available through unstable-v5 feature flag

Breaking Changes

  • Made ArgPredicate non_exhaustive
  • (help) Change default Command::term_width to "source format"
  • (help) Change default Command::max_term_width to 100
  • (derive) Vec<Vec<T>> types are now assuming to capture occurrences
  • (derive) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

Features

  • (derive) Group values by their occurrence with Vec<Vec<T>>

[Unreleased] - ReleaseDate

[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

... (truncated)

Commits
  • 087edda chore: Release
  • f652f4d docs: Update changelog
  • 8e75826 Merge pull request #6221 from sffc/lex-lifetime
  • 81dea3b fix: Use longer lifetime in clap_lex ParsedArg
  • eabbc6b Merge pull request #6217 from epage/man
  • 76a016a refactor(man): Allow possible values to output Roff
  • 9db8234 refactor(man): Avoid to_string
  • 475cac9 fix(man): Always show possible values as a list
  • a99bd42 chore: Release
  • 485d781 docs: Update changelog
  • Additional commits viewable in compare view

Updates cmake from 0.1.54 to 0.1.57

Release notes

Sourced from cmake's releases.

v0.1.57

Fixed

  • Revert canonicalizing the build directory and make the path absolute instead (#267)

v0.1.56

Other

  • Fallback to bundled CMake if present (#264)
  • Use cmake -B only for v3.13 and later (#262)

v0.1.55

Other

  • Remove the \\?\ prefix from paths (#259)
  • Add Visual Studio 2026 support (#255)
  • Make sure that cmake generate build files in current dir (#194)
  • Set the MSRV to 1.65 and test this in CI
  • Canonicalize the build directory
  • Use eprintln instead to print the command running next (#191)
Changelog

Sourced from cmake's changelog.

0.1.57 - 2025-12-17

Fixed

  • Revert canonicalizing the build directory and make the path absolute instead (#267)

0.1.56 - 2025-12-13

Other

  • Fallback to bundled CMake if present (#264)
  • Use cmake -B only for v3.13 and later (#262)

0.1.55 - 2025-12-11

Other

  • Remove the \\?\ prefix from paths (#259)
  • Add Visual Studio 2026 support (#255)
  • Make sure that cmake generate build files in current dir (#194)
  • Set the MSRV to 1.65 and test this in CI
  • Canonicalize the build directory
  • Use eprintln instead to print the command running next (#191)
Commits
  • 434afe6 chore: release v0.1.57 (#268)
  • 899f26d Revert canonicalizing the build directory and make the path absolute instead ...
  • b8fb301 chore: release v0.1.56 (#263)
  • 120d739 MSVC: Fallback to bundled CMake if present (#264)
  • 060922d cmake -B only for v3.13 and later (#262)
  • c460840 chore: release v0.1.55 (#249)
  • 08af05c Windows: Remove the \\?\ prefix from paths (#259)
  • 6e68d9c Add Visual Studio 2026 support (#255)
  • b59be3b Make sure that cmake generate build files in current dir (#194)
  • e6bfc1c Set the MSRV to 1.65 and test this in CI
  • Additional commits viewable in compare view

Updates find-msvc-tools from 0.1.4 to 0.1.9

Release notes

Sourced from find-msvc-tools's releases.

find-msvc-tools-v0.1.9

Other

  • Add find_windows_sdk API (#1663)

find-msvc-tools-v0.1.8

Other

  • Regenerate windows sys bindings (#1653)

find-msvc-tools-v0.1.7

Other

  • Fix tool existence check in find_tool method (#1645)
  • Fix SdkInfo::find_tool to check for executable extension (#1644)

find-msvc-tools-v0.1.6

Other

find-msvc-tools-v0.1.5

Other

  • Add Visual Studio 2026 support (#1609)
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 itoa from 1.0.15 to 1.0.17

Release notes

Sourced from itoa's releases.

1.0.16Description has been truncated

Bumps the rust-minor-patch group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.51` | `4.5.56` |
| [minimap2](https://github.com/jguhlin/minimap2-rs) | `0.1.28+minimap2.2.30` | `0.1.30+minimap2.2.30` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.5` | `1.1.9` |
| [anstyle-query](https://github.com/rust-cli/anstyle) | `1.1.4` | `1.1.5` |
| [anstyle-wincon](https://github.com/rust-cli/anstyle) | `3.0.10` | `3.0.11` |
| [buffer-redux](https://github.com/dignifiedquire/buffer-redux) | `1.0.2` | `1.1.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.24.0` | `1.25.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.44` | `1.2.55` |
| [clap_lex](https://github.com/clap-rs/clap) | `0.7.6` | `0.7.7` |
| [cmake](https://github.com/rust-lang/cmake-rs) | `0.1.54` | `0.1.57` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.12.0` | `2.13.0` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.15` | `1.0.17` |
| [libc](https://github.com/rust-lang/libc) | `0.2.177` | `0.2.180` |
| [libm](https://github.com/rust-lang/compiler-builtins) | `0.2.15` | `0.2.16` |
| [libz-ng-sys](https://github.com/rust-lang/libz-sys) | `1.1.22` | `1.1.23` |
| [libz-sys](https://github.com/rust-lang/libz-sys) | `1.1.22` | `1.1.23` |
| [portable-atomic](https://github.com/taiki-e/portable-atomic) | `1.11.1` | `1.13.1` |
| [portable-atomic-util](https://github.com/taiki-e/portable-atomic) | `0.2.4` | `0.2.5` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.20` | `1.0.22` |
| [simd-adler32](https://github.com/mcountryman/simd-adler32) | `0.3.7` | `0.3.8` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.27` | `0.8.37` |



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

Updates `minimap2` from 0.1.28+minimap2.2.30 to 0.1.30+minimap2.2.30
- [Release notes](https://github.com/jguhlin/minimap2-rs/releases)
- [Changelog](https://github.com/jguhlin/minimap2-rs/blob/main/CHANGELOG.md)
- [Commits](jguhlin/minimap2-rs@v0.1.28...v0.1.30)

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

Updates `anstyle-query` from 1.1.4 to 1.1.5
- [Commits](rust-cli/anstyle@anstyle-query-v1.1.4...anstyle-query-v1.1.5)

Updates `anstyle-wincon` from 3.0.10 to 3.0.11
- [Commits](rust-cli/anstyle@anstyle-wincon-v3.0.10...anstyle-wincon-v3.0.11)

Updates `buffer-redux` from 1.0.2 to 1.1.0
- [Commits](dignifiedquire/buffer-redux@v1.0.2...v1.1.0)

Updates `bytemuck` from 1.24.0 to 1.25.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.24.0...v1.25.0)

Updates `cc` from 1.2.44 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.44...cc-v1.2.55)

Updates `clap_builder` from 4.5.51 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@v4.5.51...v4.5.56)

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

Updates `clap_lex` from 0.7.6 to 0.7.7
- [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_lex-v0.7.6...clap_lex-v0.7.7)

Updates `cmake` from 0.1.54 to 0.1.57
- [Release notes](https://github.com/rust-lang/cmake-rs/releases)
- [Changelog](https://github.com/rust-lang/cmake-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cmake-rs@v0.1.54...v0.1.57)

Updates `find-msvc-tools` from 0.1.4 to 0.1.9
- [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@find-msvc-tools-v0.1.4...find-msvc-tools-v0.1.9)

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 `itoa` from 1.0.15 to 1.0.17
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.15...1.0.17)

Updates `libc` from 0.2.177 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.177...0.2.180)

Updates `libm` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/rust-lang/compiler-builtins/releases)
- [Commits](rust-lang/compiler-builtins@libm-v0.2.15...libm-v0.2.16)

Updates `libz-ng-sys` from 1.1.22 to 1.1.23
- [Release notes](https://github.com/rust-lang/libz-sys/releases)
- [Commits](rust-lang/libz-sys@1.1.22...1.1.23)

Updates `libz-sys` from 1.1.22 to 1.1.23
- [Release notes](https://github.com/rust-lang/libz-sys/releases)
- [Commits](rust-lang/libz-sys@1.1.22...1.1.23)

Updates `minimap2-sys` from 0.1.24+minimap2.2.30 to 0.1.30+minimap2.2.30
- [Release notes](https://github.com/jguhlin/minimap2-rs/releases)
- [Changelog](https://github.com/jguhlin/minimap2-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jguhlin/minimap2-rs/commits/v0.1.30)

Updates `portable-atomic` from 1.11.1 to 1.13.1
- [Release notes](https://github.com/taiki-e/portable-atomic/releases)
- [Changelog](https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md)
- [Commits](taiki-e/portable-atomic@v1.11.1...v1.13.1)

Updates `portable-atomic-util` from 0.2.4 to 0.2.5
- [Release notes](https://github.com/taiki-e/portable-atomic/releases)
- [Changelog](https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md)
- [Commits](taiki-e/portable-atomic@portable-atomic-util-0.2.4...portable-atomic-util-0.2.5)

Updates `ryu` from 1.0.20 to 1.0.22
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.20...1.0.22)

Updates `simd-adler32` from 0.3.7 to 0.3.8
- [Changelog](https://github.com/mcountryman/simd-adler32/blob/main/CHANGELOG.md)
- [Commits](https://github.com/mcountryman/simd-adler32/commits)

Updates `zerocopy` from 0.8.27 to 0.8.37
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.27...v0.8.37)

Updates `zerocopy-derive` from 0.8.27 to 0.8.37
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.27...v0.8.37)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.56
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: minimap2
  dependency-version: 0.1.30+minimap2.2.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: flate2
  dependency-version: 1.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: anstyle-query
  dependency-version: 1.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: anstyle-wincon
  dependency-version: 3.0.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: buffer-redux
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor-patch
- dependency-name: bytemuck
  dependency-version: 1.25.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor-patch
- dependency-name: cc
  dependency-version: 1.2.55
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: clap_builder
  dependency-version: 4.5.56
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: clap_derive
  dependency-version: 4.5.55
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: clap_lex
  dependency-version: 0.7.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: cmake
  dependency-version: 0.1.57
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: find-msvc-tools
  dependency-version: 0.1.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: indexmap
  dependency-version: 2.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor-patch
- dependency-name: itoa
  dependency-version: 1.0.17
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: libc
  dependency-version: 0.2.180
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: libm
  dependency-version: 0.2.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: libz-ng-sys
  dependency-version: 1.1.23
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: libz-sys
  dependency-version: 1.1.23
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: minimap2-sys
  dependency-version: 0.1.30+minimap2.2.30
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: portable-atomic
  dependency-version: 1.13.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor-patch
- dependency-name: portable-atomic-util
  dependency-version: 0.2.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: ryu
  dependency-version: 1.0.22
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: simd-adler32
  dependency-version: 0.3.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: zerocopy
  dependency-version: 0.8.37
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
- dependency-name: zerocopy-derive
  dependency-version: 0.8.37
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@wdecoster wdecoster merged commit 24bbdef into master Feb 3, 2026
1 check passed
@dependabot dependabot bot deleted the dependabot/cargo/rust-minor-patch-ab18b12552 branch February 3, 2026 09:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant