Skip to content

Bump the rust-minor group across 1 directory with 21 updates#705

Merged
torokati44 merged 1 commit into
mainfrom
dependabot/cargo/rust-minor-ac4a3b4c54
Mar 30, 2026
Merged

Bump the rust-minor group across 1 directory with 21 updates#705
torokati44 merged 1 commit into
mainfrom
dependabot/cargo/rust-minor-ac4a3b4c54

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
cc 1.2.57 1.2.58
iri-string 0.7.11 0.7.12
mio 1.1.1 1.2.0
num-conv 0.2.0 0.2.1
ordered-float 5.1.0 5.3.0
simd-adler32 0.3.8 0.3.9
toml_datetime 1.0.1+spec-1.1.0 1.1.0+spec-1.1.0
toml_edit 0.25.5+spec-1.1.0 0.25.8+spec-1.1.0
unicode-segmentation 1.12.0 1.13.2
wasm-bindgen-futures 0.4.64 0.4.65
winnow 1.0.0 1.0.1
zerocopy 0.8.47 0.8.48
zip 8.3.1 8.4.0
zune-jpeg 0.5.14 0.5.15

Updates cc from 1.2.57 to 1.2.58

Release notes

Sourced from cc's releases.

cc-v1.2.58

Other

  • Update Compile-time Requirements to add info about clang-cl.exe (#1693)
Changelog

Sourced from cc's changelog.

1.2.58 - 2026-03-27

Other

  • Update Compile-time Requirements to add info about clang-cl.exe (#1693)
Commits

Updates iri-string from 0.7.11 to 0.7.12

Changelog

Sourced from iri-string's changelog.

[0.7.12]

  • Add helpers to make it easy to implement template::context::Context trait.

Added

  • Add helpers to make it easy to implement template::context::Context trait.
    • List of added items:
      • template::context::VisitValueNaive trait
      • template::context::visit_value_naive function
      • impl_template_context_naive! macro
Commits
  • 291f00b chore: bump version to v0.7.12
  • 584876e Bump version to v0.7.12
  • 35fb070 doc: fix a broken internal link
  • e3d5332 feat(template): add helpers for implementing Context trait
  • 16eda5f Add a CHANGELOG entry for helpers to implement Context
  • 931a4a7 Add a convenience macro to implement Context trait
  • 6d4c2fc Add visit_value_naive utility function
  • 51624ca Add VisitValueNaive trait
  • 9f3ad5e chore: bump version to v0.7.11
  • See full diff in compare view

Updates mio from 1.1.1 to 1.2.0

Changelog

Sourced from mio's changelog.

1.2.0

Commits
  • ce39a6b Release v1.2
  • a7b3210 Update FreeBSD 14 CI image to 14.4-RELEASE
  • adfeb3e Merge libc defining dependency
  • eaed9a0 Update libc to v0.2.183
  • 44d63ee Simplify backlog value for UnixListener
  • a87e41e Use the same backlog size for TcpListener as std lib
  • c1bc4f8 Fix the build on minority platforms
  • 68c315c Fix FreeBSD by working around a cargo bug
  • 8b6021f implement AsFd for Registry
  • 2bb6fca docs: add note about zero timeout for Poll::poll
  • Additional commits viewable in compare view

Updates num-conv from 0.2.0 to 0.2.1

Commits

Updates ordered-float from 5.1.0 to 5.3.0

Release notes

Sourced from ordered-float's releases.

v5.3.0

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v5.2.0...v5.3.0

v5.2.0

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v5.1.0...v5.2.0

Commits

Updates simd-adler32 from 0.3.8 to 0.3.9

Commits

Updates toml_datetime from 1.0.1+spec-1.1.0 to 1.1.0+spec-1.1.0

Commits

Updates toml_edit from 0.25.5+spec-1.1.0 to 0.25.8+spec-1.1.0

Commits

Updates toml_parser from 1.0.10+spec-1.1.0 to 1.1.0+spec-1.1.0

Commits

Updates toml_writer from 1.0.7+spec-1.1.0 to 1.1.0+spec-1.1.0

Commits

Updates unicode-segmentation from 1.12.0 to 1.13.2

Commits

Updates wasm-bindgen-futures from 0.4.64 to 0.4.65

Commits

Updates wasm-bindgen-macro from 0.2.114 to 0.2.115

Release notes

Sourced from wasm-bindgen-macro's releases.

0.2.115

Added

  • console.debug/log/info/warn/error output from user-spawned Worker and SharedWorker instances is now forwarded to the CLI test runner during headless browser tests, just like output from the main thread. Works for blob URL workers, module workers, URL-based workers (importScripts), nested workers, and shared workers (including logs emitted before the first port connection). Non-cloneable arguments are serialized via String() rather than crashing the worker. The --nocapture flag is respected. #5037

  • js_sys::Promise<T> now implements IntoFuture, enabling direct .await on any JS promise without a wrapper type. The wasm-bindgen-futures implementation has been moved into js-sys behind an optional futures feature, which is activated automatically when wasm-bindgen-futures is a dependency. All existing wasm_bindgen_futures::* import paths continue to work unchanged via re-exports. js_sys::futures is also available directly for users who want promise.await without depending on wasm-bindgen-futures. #5049

  • Added --target emscripten support, generating a library_bindgen.js file for consumption by Emscripten at link time. Includes support for futures, JS closures, and TypeScript output. A new Emscripten-specific test runner is also included, along with CI integration. #4443

  • Added VideoFrame, VideoColorSpace, and related WebCodecs dictionaries/enums to web-sys. #5008

  • Added wasm_bindgen::handler module with set_on_abort and set_on_reinit hooks for panic=unwind builds. set_on_abort registers a callback invoked after the instance is terminated (hard abort, OOM, stack overflow). set_on_reinit registers a callback invoked after reinit() resets the WebAssembly instance via --experimental-reset-state-function. Handlers are stored as Wasm indirect-function-table indices so dispatch is safe even when linear memory is corrupt.

Changed

  • Replaced per-closure generic destructors with a single __wbindgen_destroy_closure export. #5019

  • Refactored the headless browser test runner logging pipeline for dramatically improved performance (>400x faster on Chrome, >10x on Firefox, ~5x on Safari). Switched to incremental DOM scraping with textContent.slice(offset), append-only output semantics, unified log capture across all log levels on failure, and browser-specific invisible-div optimizations (display:none for Chrome/Firefox, visibility:hidden for Safari). #4960

... (truncated)

Changelog

Sourced from wasm-bindgen-macro's changelog.

0.2.115

Added

  • console.debug/log/info/warn/error output from user-spawned Worker and SharedWorker instances is now forwarded to the CLI test runner during headless browser tests, just like output from the main thread. Works for blob URL workers, module workers, URL-based workers (importScripts), nested workers, and shared workers (including logs emitted before the first port connection). Non-cloneable arguments are serialized via String() rather than crashing the worker. The --nocapture flag is respected. #5037

  • js_sys::Promise<T> now implements IntoFuture, enabling direct .await on any JS promise without a wrapper type. The wasm-bindgen-futures implementation has been moved into js-sys behind an optional futures feature, which is activated automatically when wasm-bindgen-futures is a dependency. All existing wasm_bindgen_futures::* import paths continue to work unchanged via re-exports. js_sys::futures is also available directly for users who want promise.await without depending on wasm-bindgen-futures. #5049

  • Added --target emscripten support, generating a library_bindgen.js file for consumption by Emscripten at link time. Includes support for futures, JS closures, and TypeScript output. A new Emscripten-specific test runner is also included, along with CI integration. #4443

  • Added VideoFrame, VideoColorSpace, and related WebCodecs dictionaries/enums to web-sys. #5008

  • Added wasm_bindgen::handler module with set_on_abort and set_on_reinit hooks for panic=unwind builds. set_on_abort registers a callback invoked after the instance is terminated (hard abort, OOM, stack overflow). set_on_reinit registers a callback invoked after reinit() resets the WebAssembly instance via --experimental-reset-state-function. Handlers are stored as Wasm indirect-function-table indices so dispatch is safe even when linear memory is corrupt.

Changed

  • Replaced per-closure generic destructors with a single __wbindgen_destroy_closure export. #5019

  • Refactored the headless browser test runner logging pipeline for dramatically improved performance (>400x faster on Chrome, >10x on Firefox, ~5x on Safari). Switched to incremental DOM scraping with textContent.slice(offset), append-only output semantics, unified log capture across all log levels on failure, and browser-specific invisible-div optimizations (display:none for Chrome/Firefox, visibility:hidden for Safari).

... (truncated)

Commits
  • 9836458 Release 0.2.115 (#5050)
  • 4a53a1a Add wasm_bindgen::handler — hard-abort callbacks and reinit support (#5059)
  • 5a977d8 feat: forward console output from user-spawned workers (#5037)
  • 791569d deps: update to Walrus 26 (#5057)
  • 3b11e3f Emscripten bug fixes (#5055)
  • adc330d fix: respect skip_typescript when using reexport (#5051)
  • 6e3e7ea fix(js-sys): restore stable FromIterator/Extend for Array to fix type inferen...
  • 30d0551 js-sys: implement IntoFuture for Promise, inline wasm-bindgen-futures (#5049)
  • cc89985 fix: Interpreter pops function arguments in reverse order (#5047)
  • 7fe1ac6 add emscripten support (#4443)
  • Additional commits viewable in compare view

Updates wasm-bindgen-macro-support from 0.2.114 to 0.2.115

Release notes

Sourced from wasm-bindgen-macro-support's releases.

0.2.115

Added

  • console.debug/log/info/warn/error output from user-spawned Worker and SharedWorker instances is now forwarded to the CLI test runner during headless browser tests, just like output from the main thread. Works for blob URL workers, module workers, URL-based workers (importScripts), nested workers, and shared workers (including logs emitted before the first port connection). Non-cloneable arguments are serialized via String() rather than crashing the worker. The --nocapture flag is respected. #5037

  • js_sys::Promise<T> now implements IntoFuture, enabling direct .await on any JS promise without a wrapper type. The wasm-bindgen-futures implementation has been moved into js-sys behind an optional futures feature, which is activated automatically when wasm-bindgen-futures is a dependency. All existing wasm_bindgen_futures::* import paths continue to work unchanged via re-exports. js_sys::futures is also available directly for users who want promise.await without depending on wasm-bindgen-futures. #5049

  • Added --target emscripten support, generating a library_bindgen.js file for consumption by Emscripten at link time. Includes support for futures, JS closures, and TypeScript output. A new Emscripten-specific test runner is also included, along with CI integration. #4443

  • Added VideoFrame, VideoColorSpace, and related WebCodecs dictionaries/enums to web-sys. #5008

  • Added wasm_bindgen::handler module with set_on_abort and set_on_reinit hooks for panic=unwind builds. set_on_abort registers a callback invoked after the instance is terminated (hard abort, OOM, stack overflow). set_on_reinit registers a callback invoked after reinit() resets the WebAssembly instance via --experimental-reset-state-function. Handlers are stored as Wasm indirect-function-table indices so dispatch is safe even when linear memory is corrupt.

Changed

  • Replaced per-closure generic destructors with a single __wbindgen_destroy_closure export. #5019

  • Refactored the headless browser test runner logging pipeline for dramatically improved performance (>400x faster on Chrome, >10x on Firefox, ~5x on Safari). Switched to incremental DOM scraping with textContent.slice(offset), append-only output semantics, unified log capture across all log levels on failure, and browser-specific invisible-div optimizations (display:none for Chrome/Firefox, visibility:hidden for Safari). #4960

... (truncated)

Changelog

Sourced from wasm-bindgen-macro-support's changelog.

0.2.115

Added

  • console.debug/log/info/warn/error output from user-spawned Worker and SharedWorker instances is now forwarded to the CLI test runner during headless browser tests, just like output from the main thread. Works for blob URL workers, module workers, URL-based workers (importScripts), nested workers, and shared workers (including logs emitted before the first port connection). Non-cloneable arguments are serialized via String() rather than crashing the worker. The --nocapture flag is respected. #5037

  • js_sys::Promise<T> now implements IntoFuture, enabling direct .await on any JS promise without a wrapper type. The wasm-bindgen-futures implementation has been moved into js-sys behind an optional futures feature, which is activated automatically when wasm-bindgen-futures is a dependency. All existing wasm_bindgen_futures::* import paths continue to work unchanged via re-exports. js_sys::futures is also available directly for users who want promise.await without depending on wasm-bindgen-futures. #5049

  • Added --target emscripten support, generating a library_bindgen.js file for consumption by Emscripten at link time. Includes support for futures, JS closures, and TypeScript output. A new Emscripten-specific test runner is also included, along with CI integration. #4443

  • Added VideoFrame, VideoColorSpace, and related WebCodecs dictionaries/enums to web-sys. #5008

  • Added wasm_bindgen::handler module with set_on_abort and set_on_reinit hooks for panic=unwind builds. set_on_abort registers a callback invoked after the instance is terminated (hard abort, OOM, stack overflow). set_on_reinit registers a callback invoked after reinit() resets the WebAssembly instance via --experimental-reset-state-function. Handlers are stored as Wasm indirect-function-table indices so dispatch is safe even when linear memory is corrupt.

Changed

  • Replaced per-closure generic destructors with a single __wbindgen_destroy_closure export. #5019

  • Refactored the headless browser test runner logging pipeline for dramatically improved performance (>400x faster on Chrome, >10x on Firefox, ~5x on Safari). Switched to incremental DOM scraping with textContent.slice(offset), append-only output semantics, unified log capture across all log levels on failure, and browser-specific invisible-div optimizations (display:none for Chrome/Firefox, visibility:hidden for Safari).

... (truncated)

Commits
  • 9836458 Release 0.2.115 (#5050)
  • 4a53a1a Add wasm_bindgen::handler — hard-abort callbacks and reinit support (#5059)
  • 5a977d8 feat: forward console output from user-spawned workers (#5037)
  • 791569d deps: update to Walrus 26 (#5057)
  • 3b11e3f Emscripten bug fixes (#5055)
  • adc330d fix: respect skip_typescript when using reexport (#5051)
  • 6e3e7ea fix(js-sys): restore stable FromIterator/Extend for Array to fix type inferen...
  • 30d0551 js-sys: implement IntoFuture for Promise, inline wasm-bindgen-futures (#5049)
  • cc89985 fix: Interpreter pops function arguments in reverse order (#5047)
  • 7fe1ac6 add emscripten support (#4443)
  • Additional commits viewable in compare view

Updates wasm-bindgen-shared from 0.2.114 to 0.2.115

Release notes

Sourced from wasm-bindgen-shared's releases.

0.2.115

Added

  • console.debug/log/info/warn/error output from user-spawned Worker and SharedWorker instances is now forwarded to the CLI test runner during headless browser tests, just like output from the main thread. Works for blob URL workers, module workers, URL-based workers (importScripts), nested workers, and shared workers (including logs emitted before the first port connection). Non-cloneable arguments are serialized via String() rather than crashing the worker. The --nocapture flag is respected. #5037

  • js_sys::Promise<T> now implements IntoFuture, enabling direct .await on any JS promise without a wrapper type. The wasm-bindgen-futures implementation has been moved into js-sys behind an optional futures feature, which is activated automatically when wasm-bindgen-futures is a dependency. All existing wasm_bindgen_futures::* import paths continue to work unchanged via re-exports. js_sys::futures is also available directly for users who want promise.await without depending on wasm-bindgen-futures. #5049

  • Added --target emscripten support, generating a library_bindgen.js file for consumption by Emscripten at link time. Includes support for futures, JS closures, and TypeScript output. A new Emscripten-specific test runner is also included, along with CI integration. #4443

  • Added VideoFrame, VideoColorSpace, and related WebCodecs dictionaries/enums to web-sys. #5008

  • Added wasm_bindgen::handler module with set_on_abort and set_on_reinit hooks for panic=unwind builds. set_on_abort registers a callback invoked after the instance is terminated (hard abort, OOM, stack overflow). set_on_reinit registers a callback invoked after reinit() resets the WebAssembly instance via --experimental-reset-state-function. Handlers are stored as Wasm indirect-function-table indices so dispatch is safe even when linear memory is corrupt.

Changed

  • Replaced per-closure generic destructors with a single __wbindgen_destroy_closure export. #5019

  • Refactored the headless browser test runner logging pipeline for dramatically improved performance (>400x faster on Chrome, >10x on Firefox, ~5x on Safari). Switched to incremental DOM scraping with textContent.slice(offset), append-only output semantics, unified log capture across all log levels on failure, and browser-specific invisible-div optimizations (display:none for Chrome/Firefox, visibility:hidden for Safari). #4960

... (truncated)

Changelog

Sourced from wasm-bindgen-shared's changelog.

0.2.115

Added

  • console.debug/log/info/warn/error output from user-spawned Worker and SharedWorker instances is now forwarded to the CLI test runner during headless browser tests, just like output from the main thread. Works for blob URL workers, module workers, URL-based workers (importScripts), nested workers, and shared workers (including logs emitted before the first port connection). Non-cloneable arguments are serialized via String() rather than crashing the worker. The --nocapture flag is respected. #5037

  • js_sys::Promise<T> now implements IntoFuture, enabling direct .await on any JS promise without a wrapper type. The wasm-bindgen-futures implementation has been moved into js-sys behind an optional futures feature, which is activated automatically when wasm-bindgen-futures is a dependency. All existing wasm_bindgen_futures::* import paths continue to work unchanged via re-exports. js_sys::futures is also available directly for users who want promise.await without depending on wasm-bindgen-futures. #5049

  • Added --target emscripten support, generating a library_bindgen.js file for consumption by Emscripten at link time. Includes support for futures, JS closures, and TypeScript output. A new Emscripten-specific test runner is also included, along with CI integration. #4443

  • Added VideoFrame, VideoColorSpace, and related WebCodecs dictionaries/enums to web-sys. #5008

  • Added wasm_bindgen::handler module with set_on_abort and set_on_reinit hooks for panic=unwind builds. set_on_abort registers a callback invoked after the instance is terminated (hard abort, OOM, stack overflow). set_on_reinit registers a callback invoked after reinit() resets the WebAssembly instance via --experimental-reset-state-function. Handlers are stored as Wasm indirect-function-table indices so dispatch is safe even when linear memory is corrupt.

Changed

  • Replaced per-closure generic destructors with a single __wbindgen_destroy_closure export. #5019

  • Refactored the headless browser test runner logging pipeline for dramatically improved performance (>400x faster on Chrome, >10x on Firefox, ~5x on Safari). Switched to incremental DOM scraping with textContent.slice(offset), append-only output semantics, unified log capture across all log levels on failure, and browser-specific invisible-div optimizations (display:none for Chrome/Firefox, visibility:hidden for Safari).

... (truncated)

Commits
  • 9836458 Release 0.2.115 (#5050)
  • 4a53a1a Add wasm_bindgen::handler — hard-abort callbacks and reinit support (#5059)
  • 5a977d8 feat: forward console output from user-spawned workers (#5037)
  • 791569d deps: update to Walrus 26 (#5057)
  • 3b11e3f Emscripten bug fixes (#5055)
  • adc330d fix: respect skip_typescript when using reexport (#5051)
  • 6e3e7ea fix(js-sys): restore stable FromIterator/Extend for Array to fix type inferen...
  • 30d0551 js-sys: implement IntoFuture for Promise, inline wasm-bindgen-futures (#5049)
  • cc89985 fix: Interpreter pops function arguments in reverse order (#5047)
  • 7fe1ac6 add emscripten support (#4443)
  • Additional commits viewable in compare view

Updates web-sys from 0.3.91 to 0.3.92

Commits

Updates winnow from 1.0.0 to 1.0.1

Changelog

Sourced from winnow's changelog.

[1.0.1] - 2026-03-30

Documentation

  • Ensure macros are visible at winnow::combinator
Commits
  • 9015572 chore: Release
  • ae8d6b0 docs: Update changelog
  • 1868f05 Merge pull request #902 from epage/docs
  • bad0c28 docs: Fix macro exporting
  • 1b9c86a docs(design): Cover performance
  • e30e516 docs(design): Further expand
  • 4737ea4 docs(contrib): Fix design link
  • adaabb5 docs(design): Adjust casing for consistency
  • 98469bd docs(design): Expand on Parser design
  • 150b63c docs(design): Discuss API evolution
  • Additional commits viewable in compare view

Updates zerocopy from 0.8.47 to 0.8.48

Commits

Updates zerocopy-derive from 0.8.47 to 0.8.48

Commits

Updates zip from 8.3.1 to 8.4.0

Release notes

Sourced from zip's releases.

v8.4.0

🚀 Features

  • add a check for building benches (#748)

🚜 Refactor

  • split part of read.rs for code readability (#744)
  • remove unused allow (#745)

⚡ Performance

  • skip BufReader for Stored files in make_reader (#739)

⚙️ Miscellaneous Tasks

  • move pull request template to correct folder (#749)
Changelog

Sourced from zip's changelog.

8.4.0 - 2026-03-23

🚀 Features

  • add a check for building benches (#748)

🚜 Refactor

  • split part of read.rs for code readability (#744)
  • remove unused allow (#745)

⚡ Performance

  • skip BufReader for Stored files in make_reader (#739)

⚙️ Miscellaneous Tasks

  • move pull request template to correct folder (#749)
Commits

Updates zune-jpeg from 0.5.14 to 0.5.15

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dep...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.57` | `1.2.58` |
| [iri-string](https://github.com/lo48576/iri-string) | `0.7.11` | `0.7.12` |
| [mio](https://github.com/tokio-rs/mio) | `1.1.1` | `1.2.0` |
| [num-conv](https://github.com/jhpratt/num-conv) | `0.2.0` | `0.2.1` |
| [ordered-float](https://github.com/reem/rust-ordered-float) | `5.1.0` | `5.3.0` |
| [simd-adler32](https://github.com/mcountryman/simd-adler32) | `0.3.8` | `0.3.9` |
| [toml_datetime](https://github.com/toml-rs/toml) | `1.0.1+spec-1.1.0` | `1.1.0+spec-1.1.0` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.25.5+spec-1.1.0` | `0.25.8+spec-1.1.0` |
| [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) | `1.12.0` | `1.13.2` |
| [wasm-bindgen-futures](https://github.com/wasm-bindgen/wasm-bindgen) | `0.4.64` | `0.4.65` |
| [winnow](https://github.com/winnow-rs/winnow) | `1.0.0` | `1.0.1` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.47` | `0.8.48` |
| [zip](https://github.com/zip-rs/zip2) | `8.3.1` | `8.4.0` |
| [zune-jpeg](https://github.com/etemesi254/zune-image) | `0.5.14` | `0.5.15` |



Updates `cc` from 1.2.57 to 1.2.58
- [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.57...cc-v1.2.58)

Updates `iri-string` from 0.7.11 to 0.7.12
- [Changelog](https://github.com/lo48576/iri-string/blob/develop/CHANGELOG.md)
- [Commits](lo48576/iri-string@v0.7.11...v0.7.12)

Updates `mio` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v1.1.1...v1.2.0)

Updates `num-conv` from 0.2.0 to 0.2.1
- [Commits](jhpratt/num-conv@v0.2.0...v0.2.1)

Updates `ordered-float` from 5.1.0 to 5.3.0
- [Release notes](https://github.com/reem/rust-ordered-float/releases)
- [Commits](reem/rust-ordered-float@v5.1.0...v5.3.0)

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

Updates `toml_datetime` from 1.0.1+spec-1.1.0 to 1.1.0+spec-1.1.0
- [Commits](toml-rs/toml@toml_datetime-v1.0.1...toml_datetime-v1.1.0)

Updates `toml_edit` from 0.25.5+spec-1.1.0 to 0.25.8+spec-1.1.0
- [Commits](toml-rs/toml@v0.25.5...v0.25.8)

Updates `toml_parser` from 1.0.10+spec-1.1.0 to 1.1.0+spec-1.1.0
- [Commits](toml-rs/toml@toml_parser-v1.0.10...toml_parser-v1.1.0)

Updates `toml_writer` from 1.0.7+spec-1.1.0 to 1.1.0+spec-1.1.0
- [Commits](toml-rs/toml@toml_writer-v1.0.7...toml_writer-v1.1.0)

Updates `unicode-segmentation` from 1.12.0 to 1.13.2
- [Commits](unicode-rs/unicode-segmentation@v1.12.0...v1.13.2)

Updates `wasm-bindgen-futures` from 0.4.64 to 0.4.65
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wasm-bindgen/wasm-bindgen/commits)

Updates `wasm-bindgen-macro` from 0.2.114 to 0.2.115
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](wasm-bindgen/wasm-bindgen@0.2.114...0.2.115)

Updates `wasm-bindgen-macro-support` from 0.2.114 to 0.2.115
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](wasm-bindgen/wasm-bindgen@0.2.114...0.2.115)

Updates `wasm-bindgen-shared` from 0.2.114 to 0.2.115
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](wasm-bindgen/wasm-bindgen@0.2.114...0.2.115)

Updates `web-sys` from 0.3.91 to 0.3.92
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wasm-bindgen/wasm-bindgen/commits)

Updates `winnow` from 1.0.0 to 1.0.1
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v1.0.0...v1.0.1)

Updates `zerocopy` from 0.8.47 to 0.8.48
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.47...v0.8.48)

Updates `zerocopy-derive` from 0.8.47 to 0.8.48
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.47...v0.8.48)

Updates `zip` from 8.3.1 to 8.4.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@v8.3.1...v8.4.0)

Updates `zune-jpeg` from 0.5.14 to 0.5.15
- [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: cc
  dependency-version: 1.2.58
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: iri-string
  dependency-version: 0.7.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: mio
  dependency-version: 1.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: num-conv
  dependency-version: 0.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: ordered-float
  dependency-version: 5.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: simd-adler32
  dependency-version: 0.3.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: toml_datetime
  dependency-version: 1.1.0+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: toml_edit
  dependency-version: 0.25.8+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: toml_parser
  dependency-version: 1.1.0+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: toml_writer
  dependency-version: 1.1.0+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: unicode-segmentation
  dependency-version: 1.13.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: wasm-bindgen-futures
  dependency-version: 0.4.65
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: wasm-bindgen-macro
  dependency-version: 0.2.115
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: wasm-bindgen-macro-support
  dependency-version: 0.2.115
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: wasm-bindgen-shared
  dependency-version: 0.2.115
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: web-sys
  dependency-version: 0.3.92
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: winnow
  dependency-version: 1.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: zerocopy
  dependency-version: 0.8.48
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: zerocopy-derive
  dependency-version: 0.8.48
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: zip
  dependency-version: 8.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: zune-jpeg
  dependency-version: 0.5.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
...

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 30, 2026
Comment thread Cargo.lock
dependencies = [
"libc",
"windows-sys 0.61.2",
"windows-sys 0.52.0",

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol

@torokati44 torokati44 merged commit 28c152a into main Mar 30, 2026
10 checks passed
@dependabot dependabot Bot deleted the dependabot/cargo/rust-minor-ac4a3b4c54 branch March 30, 2026 17:40
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