Skip to content

Bump the minor-patch group with 24 updates#65

Merged
eppixx merged 1 commit intomainfrom
dependabot/cargo/minor-patch-1d2cc10137
Mar 16, 2026
Merged

Bump the minor-patch group with 24 updates#65
eppixx merged 1 commit intomainfrom
dependabot/cargo/minor-patch-1d2cc10137

Conversation

@dependabot
Copy link
Contributor

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

Bumps the minor-patch group with 24 updates:

Package From To
tracing-subscriber 0.3.22 0.3.23
clap 4.5.60 4.6.0
clap_derive 4.5.55 4.6.0
image 0.25.9 0.25.10
anstream 0.6.21 1.0.0
anstyle 1.0.13 1.0.14
anstyle-parse 0.2.7 1.0.0
cc 1.2.56 1.2.57
clap_builder 4.5.60 4.6.0
clap_lex 1.0.0 1.1.0
colorchoice 1.0.4 1.0.5
mac-notification-sys 0.6.11 0.6.12
moxcms 0.7.11 0.8.1
once_cell 1.21.3 1.21.4
ravif 0.12.0 0.13.0
tempfile 3.26.0 3.27.0
tiff 0.10.3 0.11.3
time 0.3.45 0.3.47
time-core 0.1.7 0.1.8
uds_windows 1.2.0 1.2.1
zerocopy 0.8.41 0.8.42
zerocopy-derive 0.8.41 0.8.42
zune-core 0.4.12 0.5.1
zune-jpeg 0.4.21 0.5.12

Updates tracing-subscriber from 0.3.22 to 0.3.23

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.23

Fixed

  • Allow ansi sanitization to be disabled (#3484)

#3484: tokio-rs/tracing#3484

Commits

Updates clap from 4.5.60 to 4.6.0

Changelog

Sourced from clap's changelog.

[4.6.0] - 2026-03-12

Compatibility

  • Update MSRV to 1.85

[4.5.61] - 2026-03-12

Internal

  • Update dependencies
Commits

Updates clap_derive from 4.5.55 to 4.6.0

Release notes

Sourced from clap_derive's releases.

v4.5.60

[4.5.60] - 2026-02-19

Fixes

  • (help) Quote empty default values, possible values

v4.5.59

[4.5.59] - 2026-02-16

Fixes

  • Command::ignore_errors no longer masks help/version on subcommands

v4.5.58

[4.5.58] - 2026-02-11

v4.5.57

[4.5.57] - 2026-02-03

Fixes

  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

v4.5.56

[4.5.56] - 2026-01-29

Fixes

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

Sourced from clap_derive's changelog.

[4.6.0] - 2026-03-12

Compatibility

  • Update MSRV to 1.85

[4.5.61] - 2026-03-12

Internal

  • Update dependencies

[4.5.60] - 2026-02-19

Fixes

  • (help) Quote empty default values, possible values

[4.5.59] - 2026-02-16

Fixes

  • Command::ignore_errors no longer masks help/version on subcommands

[4.5.58] - 2026-02-11

[4.5.57] - 2026-02-03

Fixes

  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

[4.5.56] - 2026-01-29

Fixes

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

Updates image from 0.25.9 to 0.25.10

Changelog

Sourced from image's changelog.

Version 0.25.10

Features:

  • Added GenericImage::copy_from_samples that can be implemented for images that can be efficiently filled from a matrix-layout of samples. Its default implementation will not defer to copy_from, consider implementing this if you specialized the latter.
  • Added GenericImageView::to_pixel_view that can be implemented to describe the buffer in terms our FlatSamples matrix layout, if applicable. This allows algorithms over generic images to run a specialized version where they can be more efficient over an raw input slice.
  • Added ImageBuffer::from_raw_bgr{,a} to efficiently byte-swap images into the RGBA layout of the buffer (#2596).
  • Added ExtendedColorType::Rgb5x1 to represent 5-bit colors as from TGA (#2609).
  • Added metadata::LoopCount and AnimationDecoder::loop_count to query if animations should repeat in a uniform manner (gif, webp, avif) (#2719, #2786).
  • load_from_memory now utilizes format detection hooks if any are applicable.

Structural changes:

  • Various changes that reduce the compile time of image on codegen by reducing the number of monomorphizations (#2804, #2800, #2807).
  • GenericImage::copy_from's default implementation tries copy_from_samples first if the source can be successfully cast with to_pixel_view.
  • <ImageBuffer as GenericImage>::copy_from is now must faster for ImageBuffer when the source implements GenericImageView::to_pixel_view.
  • <SubImage<_> as GenericImage>::copy_from inherits the previously mentioned optimizations for pixel sources when the inner type provides them. It also provides to_pixel_view based on the inner type.
  • ImageBuffer::as_flat_samples no longer requires AsRef<[P::Subpixel]> for the underlying container, just Deref (#2777).

Bug fixes:

  • Fixed a panic in TGA where indices have more bits than mapped colors (#2673).

Notable decoder changes:

  • Bump tiff to 0.11, supporting planar layout images (#2743).
  • ICC profiles can now be written for TIFF files (#2746)
  • Update ravif to 0.13, supporting EXIF (#2733).
  • Update jpeg-encoder to 0.7 bringing SIMD acceleration (#2736).
  • The pnm decoder decodes binary data quicker with fewer allocations (#2797).
  • The tga decoder handles 5-bit data and colormaps correctly (#2608, #2609).

Compatibility notes (new section):

  • Bump rust-version to 1.88.
  • Registered hooks now normalize the file extension they are registered against to ascii-lowercase. It is no longer necessary to register all such variants. This may conflate two hooks that previously hooked the same format with different casing.
Commits
  • 76e5718 Merge pull request #2836 from image-rs/version-0.25.10
  • 38b81dc Change notes for 0.25.10
  • 2fb9e61 Merge pull request #2835 from image-rs/ravif-tiff-integration
  • 4263471 Bump ravif/dav1d versions
  • a7781b3 Merge pull request #2833 from image-rs/backport-from-bgra
  • 6ea7369 Adjust bounds on from_raw_rgb
  • dd60a60 Add utility from_raw_bgr{,a} for ImageBuffer
  • 933251a Merge pull request #2832 from image-rs/backport-moxcms
  • 02c039e Update to moxcms 0.8.0 per reviewer feedback
  • 6ac2dd6 Allow moxcms 0.8.x versions
  • Additional commits viewable in compare view

Updates anstream from 0.6.21 to 1.0.0

Commits
  • 3048fe7 chore: Release
  • 028ff0d Merge pull request #293 from epage/template
  • f1823a9 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
  • 74f4be6 chore(ci): Fix name of clippy::empty_enums
  • e0d98b6 chore(deps): Update Rust Stable to v1.93 (#292)
  • 24c5c99 chore(deps): Update Rust Stable to v1.93 (#42)
  • ad7697d chore(ci): Automatic update from template (#40)
  • b65c345 chore: Update prek hooks (#41)
  • Additional commits viewable in compare view

Updates anstyle from 1.0.13 to 1.0.14

Commits
  • 0fe6f0f chore: Release
  • 332016e docs: Update changelog
  • dd73f64 Merge pull request #301 from Muscraft/fix-some-escape-codes
  • e2d2fb5 fix: Make 4:0 removes all underline styles
  • d82d083 feat: Support SGR 59 (reset underline color to default)
  • 85c9a86 feat: Support SGR 22-29 (off codes)
  • ac5c23b refactor: Reorder SGR match arms to follow numerical order
  • 2234b68 test: Add tests for SGR off codes, underline subparams, and underline color r...
  • ffb555f chore: Release
  • 55de8a6 chore: Download libc to match cargo
  • Additional commits viewable in compare view

Updates anstyle-parse from 0.2.7 to 1.0.0

Commits
  • 3048fe7 chore: Release
  • 028ff0d Merge pull request #293 from epage/template
  • f1823a9 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
  • 74f4be6 chore(ci): Fix name of clippy::empty_enums
  • e0d98b6 chore(deps): Update Rust Stable to v1.93 (#292)
  • 24c5c99 chore(deps): Update Rust Stable to v1.93 (#42)
  • ad7697d chore(ci): Automatic update from template (#40)
  • b65c345 chore: Update prek hooks (#41)
  • Additional commits viewable in compare view

Updates cc from 1.2.56 to 1.2.57

Release notes

Sourced from cc's releases.

cc-v1.2.57

Other

  • Size archiver batches according to argument length not argument count (#1689)
  • Added Build::env for setting environment variables of compiler invocations and other child processes (#1656 #1682)
Changelog

Sourced from cc's changelog.

1.2.57 - 2026-03-13

Other

  • Size archiver batches according to argument length not argument count (#1689)
  • Added Build::env for setting environment variables of compiler invocations and other child processes (#1656 #1682)
Commits

Updates clap_builder from 4.5.60 to 4.6.0

Changelog

Sourced from clap_builder's changelog.

[4.6.0] - 2026-03-12

Compatibility

  • Update MSRV to 1.85

[4.5.61] - 2026-03-12

Internal

  • Update dependencies
Commits

Updates clap_lex from 1.0.0 to 1.1.0

Changelog

Sourced from clap_lex's changelog.

v1.1.0 (2015-07-16)

Features

  • allows creating unified help messages, a la docopt or getopts (52bcd892, closes #158)
  • allows stating all subcommands should not have --version flags (336c476f, closes #156)
  • allows setting version number to auto-propagate through subcommands (bc66d3c6, closes #157)

Improvements

  • Help Strings properly aligns and handles newlines in long help strings (f9800a29, closes #145)

Performance

  • Help Messages big performance improvements when printing help messages (52bcd892)

Documentation

  • updates readme with new features (8232f7bb)
  • fix incorrect code example for App::subcommand_required (8889689d)

v1.0.3 (2015-07-11)

Improvements

Documentation

  • README.md updates example help message to new format (0aca29bd)

v1.0.2 (2015-07-09)

Improvements

  • Usage re-orders optional arguments and required to natural standard (dc7e1fce, closes #147)

v1.0.1 (2015-07-08)

Bug Fixes

... (truncated)

Commits

Updates colorchoice from 1.0.4 to 1.0.5

Commits
  • 0fe6f0f chore: Release
  • 332016e docs: Update changelog
  • dd73f64 Merge pull request #301 from Muscraft/fix-some-escape-codes
  • e2d2fb5 fix: Make 4:0 removes all underline styles
  • d82d083 feat: Support SGR 59 (reset underline color to default)
  • 85c9a86 feat: Support SGR 22-29 (off codes)
  • ac5c23b refactor: Reorder SGR match arms to follow numerical order
  • 2234b68 test: Add tests for SGR off codes, underline subparams, and underline color r...
  • ffb555f chore: Release
  • 55de8a6 chore: Download libc to match cargo
  • Additional commits viewable in compare view

Updates mac-notification-sys from 0.6.11 to 0.6.12

Release notes

Sourced from mac-notification-sys's releases.

v0.6.12

What's Changed

Full Changelog: h4llow3En/mac-notification-sys@v0.6.11...v0.6.12

Changelog

Sourced from mac-notification-sys's changelog.

v0.6.12 (2026-03-09)

Fixes

  • remove pin on time crate (b2cbaac)
Commits

Updates moxcms from 0.7.11 to 0.8.1

Release notes

Sourced from moxcms's releases.

0.8.1

What's Changed

Full Changelog: awxkee/moxcms@0.8.0...0.8.1

0.8.0

What's Changed

New Contributors

Full Changelog: awxkee/moxcms@0.7.11...0.8.0

Commits
  • c4affa1 Merge pull request #157 from awxkee/dev3_26
  • ebf1608 Deps update
  • ea1e088 Merge pull request #156 from awxkee/dev3_26
  • 39d10df Void cicp when updating colorimetry
  • a451c57 Merge pull request #153 from lilith/fix/truncated-desc-tag
  • 453150f fix: tolerate truncated desc tag in ICC profiles
  • 029eb00 Merge pull request #152 from lilith/fix/byte-swapped-rendering-intent
  • 29a1ff1 fix: default invalid rendering intent to Perceptual
  • 5a7db55 Merge pull request #150 from awxkee/codegen
  • 59c96ec Docs
  • Additional commits viewable in compare view

Updates once_cell from 1.21.3 to 1.21.4

Changelog

Sourced from once_cell's changelog.

1.21.4

  • Fix unsoundness in OnceCell::wait under --features=parking_lot, #295.

    If thread A calls wait, while thread B calls get_or_try_init(f), and, furthermore, f panics, the wait incorrectly returns and thread A observes uninitialized memory.

    Kudos to @​meng-xu-cs for a nice find!

Commits
  • 80fe900 Merge pull request #296 from matklad/matklad/plfix
  • a5e09c9 release 1.21.4
  • 2426d45 Merge pull request #295 from matklad/matklad/plfix
  • a144121 Merge pull request #290 from alexanderkjall/run-tests-with-no-default-features
  • 232a1a4 Merge pull request #292 from phil-opp/doc-fix
  • d31767b fix OnceCell::wait with features=parking_lot
  • 28d29ae Fix: sync::OnceCell::try_insert docs should import sync variant
  • 0f78fb0 make the command 'cargo test --no-default-features' work
  • fda60a6 Merge pull request #287 from AbeZbm/add-tests
  • b5b98c0 Add tests for OnceRef
  • See full diff in compare view

Updates ravif from 0.12.0 to 0.13.0

Commits

Updates tempfile from 3.26.0 to 3.27.0

Changelog

Sourced from tempfile's changelog.

3.27.0

This release adds TempPath::try_from_path and deprecates TempPath::from_path.

Prior to this release, TempPath::from_path made no attempts to convert relative paths into absolute paths. The following code would have deleted the wrong file:

let tmp_path = TempPath::from_path("foo")
std::env::set_current_dir("/some/other/path").unwrap();
drop(tmp_path);

Now:

  1. TempPath::from_path will attempt to convert relative paths into absolute paths. However, this isn't always possible as we need to call std::env::current_dir, which can fail. If we fail to convert the relative path to an absolute path, we simply keep the relative path.
  2. The TempPath::try_from_path behaves exactly like TempPath::from_path, except that it returns an error if we fail to convert a relative path into an absolute path (or if the passed path is empty).

Neither function attempt to verify the existence of the file in question.

Thanks to @​meng-xu-cs for reporting this issue.

Commits
  • 5c8fa12 chore: release 3.27.0
  • e34e574 test: disable uds conflict test on redox
  • 772c795 test: add CWD guards
  • 2632fb9 fix: resolve relative paths when constructing TempPath
  • See full diff in compare view

Updates tiff from 0.10.3 to 0.11.3

Changelog

Sourced from tiff's changelog.

Version 0.11.3

Additions:

  • Added support for webp compression (as per GDAL) under the webp feature flag (default: off).
  • Added Decoder::image_ifd, creating an IfdDecoder of the current IFD.
  • Added IfdDecoder::directory, returning the Directory underlying it.
  • Added LowerHex and UpwerHex implementations for IfdPointer.

Notes:

  • A new example tiff-ls demonstrates use of the new features.

Version 0.11.2

Changes:

  • Planar files can now be read with Decoder::read_image_to_buffer if the limits allow for such a large buffer size. Previously only the first plane was read and the decoder will attempt a fallback to this behavior if the limits do not allow all planes to be allocated.

Fixes:

  • An off-by-one error in a debug_assert of ValueBuffer caused its use in IfdDecoder::find_tag_buf to panic outside release mode when the buffer exactly matched the required size.

Additions:

  • The methods ColorType::{num_samples, bit_depth} are now public. This promises that we only have homogeneous color depths in this major version.

Version 0.11.1

Fixes:

  • The enumeration types in tags are now all marked with a representation of their underlying TIFF type (e.g. repr(u16)) and variants are explicitly assigned their corresponding values. That is you may read the raw discriminant and interpret that as the value—except for Unknown variants.
  • The variants RationalBig and SRationalBig of decoder::ifd::Value are deprecated as they have no corresponding TIFF type and were not constructed during decoding.

Additions:

  • Types in tags now generally implement TiffValue and can be handed to the DirectoryEncoder::write_tag method. Unlike primitive types they do not always implement the trait for slices of themselves.
  • Added tags::ValueBuffer, a byte-based buffer for tags with a runtime value type and count.
  • Added IfdDecoder::find_tag_{buf,bytes} to read tag values into a ValueBuffer or byte slice respectively without interpreting them immediately within the Rust type system.
  • Added DirectoryEncoder::write_{data,tag}_buf that takes a ValueBuffer instead of a statically typed argument.

... (truncated)

Commits
  • e41159c Merge pull request #340 from image-rs/release-0.11.3
  • 03979fa Metadata for 0.11.3 release
  • 857973c Merge pull request #339 from image-rs/file-listing-and-utils
  • cef21c4 Add example listing a files directories
  • a0191ed Support decoding WebP compressed TIFFs (#336)
  • 99a7b8c Merge pull request #334 from image-rs/release-0.11.2
  • 418ea18 Release notes for 0.11.2
  • 529fa64 Merge pull request #333 from image-rs/read-image-all-planes
  • 3d6b94b Make read_image_to_buffer read out all planes
  • a51b230 Merge pull request #332 from image-rs/public-example-for-pam
  • Additional commits viewable in compare view

Updates time from 0.3.45 to 0.3.47

Release notes

Sourced from time's releases.

v0.3.47

See the changelog for details.

v0.3.46

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.47 [2026-02-05]

Security

  • The possibility of a stack exhaustion denial of service attack when parsing RFC 2822 has been eliminated. Previously, it was possible to craft input that would cause unbounded recursion. Now, the depth of the recursion is tracked, causing an error to be returned if it exceeds a reasonable limit.

    This attack vector requires parsing user-provided input, with any type, using the RFC 2822 format.

Compatibility

  • Attempting to format a value with a well-known format (i.e. RFC 3339, RFC 2822, or ISO 8601) will error at compile time if the type being formatted does not provide sufficient information. This would previously fail at runtime. Similarly, attempting to format a value with ISO 8601 that is only configured for parsing (i.e. Iso8601::PARSING) will error at compile time.

Added

  • Builder methods for format description modifiers, eliminating the need for verbose initialization when done manually.
  • date!(2026-W01-2) is now supported. Previously, a space was required between W and 01.
  • [end] now has a trailing_input modifier which can either be prohibit (the default) or discard. When it is discard, all remaining input is ignored. Note that if there are components after [end], they will still attempt to be parsed, likely resulting in an error.

Changed

  • More performance gains when parsing.

Fixed

  • If manually formatting a value, the number of bytes written was one short for some components. This has been fixed such that the number of bytes written is always correct.
  • The possibility of integer overflow when parsing an owned format description has been effectively eliminated. This would previously wrap when overflow checks were disabled. Instead of storing the depth as u8, it is stored as u32. This would require multiple gigabytes of nested input to overflow, at which point we've got other problems and trivial mitigations are available by downstream users.

0.3.46 [2026-01-23]

Added

  • All possible panics are now documented for the relevant methods.
  • The need to use #[serde(default)] when using custom serde formats is documented. This applies only when deserializing an Option<T>.
  • Duration::nanoseconds_i128 has been made public, mirroring std::time::Duration::from_nanos_u128.

... (truncated)

Commits
  • d5144cd v0.3.47 release
  • f6206b0 Guard against integer overflow in release mode
  • 1c63dc7 Avoid denial of service when parsing Rfc2822
  • 5940df6 Add builder methods to avoid verbose construction
  • 00881a4 Manually format macros everywhere
  • bb723b6 Add trailing_input modifier to end
  • 31c4f8e Permit W12 in date! macro
  • 490a17b Mark error paths in well-known formats as cold
  • 6cb1896 Optimize Rfc2822 parsing
  • 6d264d5 Remove erroneous #[inline(never)] attributes
  • Additional commits viewable in compare view

Updates time-core from 0.1.7 to 0.1.8

Commits

Updates uds_windows from 1.2.0 to 1.2.1

Release notes

Sourced from uds_windows's releases.

v1.2.1

  • Require windows-sys >= 0.60 since BOOL moved to windows_sys::core in 0.60
Changelog

Sourced from uds_windows's changelog.

[1.2.1] - 2026-03-14

  • Require windows-sys >= 0.60 since BOOL moved to windows_sys::core in 0.60
Commits
  • 0b3a6ff chore: inc release to 1.2.1
  • 09c26f3 fix: require windows-sys >=0.60 since BOOL moved to core module
  • a6f7801 fix: use range for windows-sys dependency
  • See full diff in compare view

Updates zerocopy from 0.8.41 to 0.8.42

Commits

Updates zerocopy-derive from 0.8.41 to 0.8.42

Details <...

Description has been truncated

Bumps the minor-patch group with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.22` | `0.3.23` |
| [clap](https://github.com/clap-rs/clap) | `4.5.60` | `4.6.0` |
| [clap_derive](https://github.com/clap-rs/clap) | `4.5.55` | `4.6.0` |
| [image](https://github.com/image-rs/image) | `0.25.9` | `0.25.10` |
| [anstream](https://github.com/rust-cli/anstyle) | `0.6.21` | `1.0.0` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.13` | `1.0.14` |
| [anstyle-parse](https://github.com/rust-cli/anstyle) | `0.2.7` | `1.0.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.56` | `1.2.57` |
| [clap_builder](https://github.com/clap-rs/clap) | `4.5.60` | `4.6.0` |
| [clap_lex](https://github.com/clap-rs/clap) | `1.0.0` | `1.1.0` |
| [colorchoice](https://github.com/rust-cli/anstyle) | `1.0.4` | `1.0.5` |
| [mac-notification-sys](https://github.com/h4llow3En/mac-notification-sys) | `0.6.11` | `0.6.12` |
| [moxcms](https://github.com/awxkee/moxcms) | `0.7.11` | `0.8.1` |
| [once_cell](https://github.com/matklad/once_cell) | `1.21.3` | `1.21.4` |
| [ravif](https://github.com/kornelski/cavif-rs) | `0.12.0` | `0.13.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.26.0` | `3.27.0` |
| [tiff](https://github.com/image-rs/image-tiff) | `0.10.3` | `0.11.3` |
| [time](https://github.com/time-rs/time) | `0.3.45` | `0.3.47` |
| [time-core](https://github.com/time-rs/time) | `0.1.7` | `0.1.8` |
| [uds_windows](https://github.com/haraldh/rust_uds_windows) | `1.2.0` | `1.2.1` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.41` | `0.8.42` |
| [zerocopy-derive](https://github.com/google/zerocopy) | `0.8.41` | `0.8.42` |
| [zune-core](https://github.com/etemesi254/zune-image) | `0.4.12` | `0.5.1` |
| [zune-jpeg](https://github.com/etemesi254/zune-image) | `0.4.21` | `0.5.12` |


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

Updates `clap` from 4.5.60 to 4.6.0
- [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.60...clap_complete-v4.6.0)

Updates `clap_derive` from 4.5.55 to 4.6.0
- [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.55...v4.6.0)

Updates `image` from 0.25.9 to 0.25.10
- [Changelog](https://github.com/image-rs/image/blob/v0.25.10/CHANGES.md)
- [Commits](image-rs/image@v0.25.9...v0.25.10)

Updates `anstream` from 0.6.21 to 1.0.0
- [Commits](rust-cli/anstyle@anstream-v0.6.21...anstream-v1.0.0)

Updates `anstyle` from 1.0.13 to 1.0.14
- [Commits](rust-cli/anstyle@v1.0.13...v1.0.14)

Updates `anstyle-parse` from 0.2.7 to 1.0.0
- [Commits](rust-cli/anstyle@anstyle-parse-v0.2.7...anstyle-parse-v1.0.0)

Updates `cc` from 1.2.56 to 1.2.57
- [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.56...cc-v1.2.57)

Updates `clap_builder` from 4.5.60 to 4.6.0
- [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.60...v4.6.0)

Updates `clap_lex` from 1.0.0 to 1.1.0
- [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-v1.0.0...clap_lex-v1.1.0)

Updates `colorchoice` from 1.0.4 to 1.0.5
- [Commits](rust-cli/anstyle@colorchoice-v1.0.4...colorchoice-v1.0.5)

Updates `mac-notification-sys` from 0.6.11 to 0.6.12
- [Release notes](https://github.com/h4llow3En/mac-notification-sys/releases)
- [Changelog](https://github.com/h4llow3En/mac-notification-sys/blob/master/CHANGELOG.md)
- [Commits](h4llow3En/mac-notification-sys@v0.6.11...v0.6.12)

Updates `moxcms` from 0.7.11 to 0.8.1
- [Release notes](https://github.com/awxkee/moxcms/releases)
- [Commits](awxkee/moxcms@0.7.11...0.8.1)

Updates `once_cell` from 1.21.3 to 1.21.4
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.21.3...v1.21.4)

Updates `ravif` from 0.12.0 to 0.13.0
- [Release notes](https://github.com/kornelski/cavif-rs/releases)
- [Commits](https://github.com/kornelski/cavif-rs/commits)

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

Updates `tiff` from 0.10.3 to 0.11.3
- [Changelog](https://github.com/image-rs/image-tiff/blob/main/CHANGES.md)
- [Commits](image-rs/image-tiff@v0.10.3...v0.11.3)

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

Updates `time-core` from 0.1.7 to 0.1.8
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](https://github.com/time-rs/time/commits)

Updates `uds_windows` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/haraldh/rust_uds_windows/releases)
- [Changelog](https://github.com/haraldh/rust_uds_windows/blob/master/CHANGELOG.md)
- [Commits](haraldh/rust_uds_windows@v1.2.0...v1.2.1)

Updates `zerocopy` from 0.8.41 to 0.8.42
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.41...v0.8.42)

Updates `zerocopy-derive` from 0.8.41 to 0.8.42
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.41...v0.8.42)

Updates `zune-core` from 0.4.12 to 0.5.1
- [Release notes](https://github.com/etemesi254/zune-image/releases)
- [Changelog](https://github.com/etemesi254/zune-image/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/etemesi254/zune-image/commits/0.5.1)

Updates `zune-jpeg` from 0.4.21 to 0.5.12
- [Release notes](https://github.com/etemesi254/zune-image/releases)
- [Changelog](https://github.com/etemesi254/zune-image/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/etemesi254/zune-image/commits)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: clap
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: clap_derive
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: image
  dependency-version: 0.25.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: anstream
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: minor-patch
- dependency-name: anstyle
  dependency-version: 1.0.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: anstyle-parse
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: minor-patch
- dependency-name: cc
  dependency-version: 1.2.57
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: clap_builder
  dependency-version: 4.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: clap_lex
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: colorchoice
  dependency-version: 1.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: mac-notification-sys
  dependency-version: 0.6.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: moxcms
  dependency-version: 0.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: once_cell
  dependency-version: 1.21.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: ravif
  dependency-version: 0.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: tempfile
  dependency-version: 3.27.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: tiff
  dependency-version: 0.11.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: time
  dependency-version: 0.3.47
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: time-core
  dependency-version: 0.1.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: uds_windows
  dependency-version: 1.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: zerocopy
  dependency-version: 0.8.42
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: zerocopy-derive
  dependency-version: 0.8.42
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: zune-core
  dependency-version: 0.5.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: zune-jpeg
  dependency-version: 0.5.12
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Mar 16, 2026
@eppixx eppixx merged commit ddcd9fe into main Mar 16, 2026
3 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/minor-patch-1d2cc10137 branch March 16, 2026 18:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant