Skip to content

chore(deps): bump the cargo group across 1 directory with 17 updates - #211

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/cargo/cargo-49d9be42a3
Open

dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/cargo/cargo-49d9be42a3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo group with 16 updates in the / directory:

Package From To
abels-complex 0.5.1 0.6.3
anyhow 1.0.103 1.0.104
bytemuck 1.25.1 1.25.2
clap 4.6.2 4.6.6
easy-cast 0.5.5 0.7.1
egui 0.34.3 0.36.1
egui-wgpu 0.34.3 0.36.1
egui-winit 0.34.3 0.36.1
flate2 1.1.9 1.1.10
futures 0.3.32 0.3.34
log 0.4.33 0.4.34
num-derive 0.4.2 0.5.1
serde_json 1.0.150 1.0.151
thiserror 2.0.18 2.0.20
tokio 1.52.4 1.53.1
wgpu 29.0.4 30.0.0

Updates abels-complex from 0.5.1 to 0.6.3

Commits

Updates anyhow from 1.0.103 to 1.0.104

Release notes

Sourced from anyhow's releases.

1.0.104

  • Update syn dev-dependency to version 3
Commits

Updates bytemuck from 1.25.1 to 1.25.2

Changelog

Sourced from bytemuck's changelog.

1.25.2

  • implement NoUninit for char, bool, NonZero* arrays
Commits

Updates clap from 4.6.2 to 4.6.6

Release notes

Sourced from clap's releases.

v4.6.6

[4.6.6] - 2026-08-06

Features

  • Add Command::get_overridden_usage

v4.6.5

[4.6.5] - 2026-07-31

Fixes

  • (help) Correctly mark which value_names are optional with num_args

v4.6.4

[4.6.4] - 2026-07-21

Internal

  • Update to syn v3

v4.6.3

[4.6.3] - 2026-07-20

Fixes

  • (derive) Allow "literal".function() as attribute values
Changelog

Sourced from clap's changelog.

[4.6.6] - 2026-08-06

Features

  • Add Command::get_overridden_usage

[4.6.5] - 2026-07-31

Fixes

  • (help) Correctly mark which value_names are optional with num_args

[4.6.4] - 2026-07-21

Internal

  • Update to syn v3

[4.6.3] - 2026-07-20

Fixes

  • (derive) Allow "literal".function() as attribute values
Commits
  • 348cff3 chore: Release
  • d478377 docs: Update changelog
  • 04b9fbb Merge pull request #6414 from koopatroopa787/fix-bash-completion-bracket-glob
  • 7075239 Merge pull request #6422 from BaumiCoder/fix-fish-indentations
  • f90a966 fix(complete): Use spaces for indentation in fish
  • dd4997b fix(complete): Don't glob-expand bash positionals
  • 8387c81 Merge pull request #6399 from clap-rs/renovate/crate-ci-typos-1.x
  • 8141e11 chore(deps): Update compatible (dev) (#6398)
  • 8a6bd4e chore(deps): Update pre-commit hook crate-ci/typos to v1.47.0
  • 71a7213 chore(deps): Update Rust Stable to v1.96 (#6396)
  • Additional commits viewable in compare view

Updates easy-cast from 0.5.5 to 0.7.1

Release notes

Sourced from easy-cast's releases.

0.7.1

What's Changed

Full Changelog: kas-gui/easy-cast@0.7.0...0.7.1

0.7.0

This version is a substantial revision of easy-cast, introducing generics over rounding modes via the new Rounding trait.

Simple usage via the Conv, Cast, ConvApprox and CastApprox traits is largely unchanged. Usage with other rounding modes should be moved to the new ConvTo and CastTo traits (e.g. i32::conv_to(Nearest, 5.3), x.cast_to(Floor)).

External implementations of conversions should be moved to the ConvExact and ConvTo traits.

Added:

  • Rounding trait with Exact, Approx rounding modes (#58)
  • Trunc, Nearest, Floor, Ceil rounding modes (#61)
  • ConvExact trait as an implementation helper for conversions which are never inexact (#58, #65)
  • ConvTo trait for implementation and usage of conversions with a specific rounding mode (#58, #60, #63, #65)
  • CastTo trait for casting with a specific rounding mode (#58, #60, #63)
  • RangeError as a new error type (#56)

Changed:

  • Added an associated Error type to the Conv and Cast traits (#62)
  • Rename impl_via_trivial! to impl_via_identity! (#68)
  • Implement Exact f64 → f32 conversion (#59)
  • Implement Approx and Nearest int-to-float conversions (#59, #63)
  • u128::MAX and other too-large values no longer coerce to f32::INFINITY under Exact rounding, as used by Conv and Cast (#67)
  • Truncating-conversions (Trunc) no longer require the std or libm feature (#66)
  • Implement core::error::Error on no-std (#57)
  • Enabled the doc_cfg feature (#66)

Removed:

  • Result type-def (#56)
  • ConvFloat, CastFloat traits; this functionality remains available through the new rounding modes (#61)

Full Changelog: kas-gui/easy-cast@0.6.1...0.7.0

0.6.1

Added:

  • Add pub macros impl_via_from!, impl_via_trivial! (#54)

Full Changelog: kas-gui/easy-cast@0.6.0...0.6.1

0.6.0

This release contains some breaking changes which should be easy/trivial to accommodate.

... (truncated)

Changelog

Sourced from easy-cast's changelog.

[0.7.1] — 2026-08-28

Added:

  • Note on work-around to fn Cast::cast, usage of which may conflict with the unstable float_conversions feature (#71)

[0.7.0] — 2026-08-05

This version is a substantial revision of easy-cast, introducing generics over rounding modes via the new Rounding trait.

Simple usage via the Conv, Cast, ConvApprox and CastApprox traits is largely unchanged. Usage with other rounding modes should be moved to the new ConvTo and CastTo traits (e.g. i32::conv_to(Nearest, 5.3), x.cast_to(Floor)).

External implementations of conversions should be moved to the ConvExact and ConvTo traits.

Added:

  • Rounding trait with Exact, Approx rounding modes (#58)
  • Trunc, Nearest, Floor, Ceil rounding modes (#61)
  • ConvExact trait as an implementation helper for conversions which are never inexact (#58, #65)
  • ConvTo trait for implementation and usage of conversions with a specific rounding mode (#58, #60, #63, #65)
  • CastTo trait for casting with a specific rounding mode (#58, #60, #63)
  • RangeError as a new error type (#56)

Changed:

  • Added an associated Error type to the Conv and Cast traits (#62)
  • Rename impl_via_trivial! to impl_via_identity! (#68)
  • Implement Exact f64 → f32 conversion (#59)
  • Implement Approx and Nearest int-to-float conversions (#59, #63)
  • u128::MAX and other too-large values no longer coerce to f32::INFINITY under Exact rounding, as used by Conv and Cast (#67)
  • Truncating-conversions (Trunc) no longer require the std or libm feature (#66)
  • Implement core::error::Error on no-std (#57)
  • Enabled the doc_cfg feature (#66)

Removed:

  • Result type-def (#56)
  • ConvFloat, CastFloat traits; this functionality remains available through the new rounding modes (#61)

[0.6.1] — 2026-07-24

Added:

  • Add pub macros impl_via_from!, impl_via_trivial! (#54)

[0.6.0] — 2026-07-21

Fixed:

  • Fix unsafe code in NonZero conversion on input values which wrap to zero (#52)

... (truncated)

Commits
  • 473af3d Note on work-around for float_conversions feature (#71)
  • 9fea46b Prepare 0.7.0, README update (#70)
  • 6b9d062 Documentation rewrite (#69)
  • f2534d9 Merge pull request #68 from kas-gui/push-wzqwxwkmpoqn
  • 0dc6eba Rename impl_via_trivial -> impl_via_identity
  • 3d2c54e Add missing impl of fn conv_to to ConvTo<f64, Exact> for f32
  • 0e7c240 Merge pull request #67 from kas-gui/push-xzsouvxxrspq
  • 2b46c8b Make f32::try_conv(u128::MAX) an error
  • 941bdf1 Test f32::conv_approx for u128 values
  • 04e78e7 Merge pull request #66 from kas-gui/push-zlrwtvpyyylq
  • Additional commits viewable in compare view

Updates egui from 0.34.3 to 0.36.1

Release notes

Sourced from egui's releases.

0.36.1 - Sense::drag() bugfix

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

0.36.0 - Improved mobile keyboard support

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

Highlights ✨

Improved mobile keyboard support

Autocomplete, autocorrect and IMEs now work correctly on iOS and android (on eframe web)!

ScreenRecording_08-05-2026.11-48-49_1.MP4

Drag to reopen panels

You can now reopen closed panels by dragging the handle:

Screen.Recording.2026-08-05.at.11.45.10.mov

Window decoration theme is now synced with app theme

Previously, when switching themes, the window chrome (OS titlebar), stayed in the OS theme. Now, it syncs with the app theme:

Screen.Recording.2026-08-05.at.11.45.47.mov

... (truncated)

Changelog

Sourced from egui's changelog.

0.36.1 - 2026-08-07

0.36.0 - 2026-08-05

Highlights ✨

This release drastically improves the mobile keyboard experience (when using eframe web). It also adds drag-to-open panels, window chrome theme sync and a lot of small bug fixes and improvements!

Improved mobile keyboard support

Autocomplete, autocorrect and IMEs now work correctly on iOS and android (on eframe web)!

ScreenRecording_08-05-2026.11-48-49_1.MP4

Drag to reopen panels

You can now reopen closed panels by dragging the handle:

Screen.Recording.2026-08-05.at.11.45.10.mov

Window decoration theme is now synced with app theme

Previously, when switching themes, the window chrome (OS titlebar) stayed in the OS theme. Now, it syncs with the app theme:

Screen.Recording.2026-08-05.at.11.45.47.mov

⭐ Added

🔧 Changed

🔥 Removed

... (truncated)

Commits
  • 4c1f2fa Release 0.36.1 - Fix Sense::drag bug
  • 42cd821 Fix Sense::drag detecting drags when clicking widget above it (#8396)
  • 2397194 Release 0.36.0 - Improved mobile keyboard support (#8390)
  • e37d44a Never run an egui pass when nothing will be shown (#8387)
  • 90e0302 Fix a few nightly clippy lints (#8388)
  • 5347b0a Fix window with a Grid being widenable but not shrinkable again (#8386)
  • 622bbbe Add drag-to-open for collapsible panels (#8363)
  • 98eab50 Treat a press that leaves a widget as a drag (#8365)
  • 78c0e39 Fix ScrollArea failure by handling horizontal and vertical scrolling separate...
  • 5c0b690 Add extra_text_line_spacing to control vertical spacing between text lines ...
  • Additional commits viewable in compare view

Updates egui-wgpu from 0.34.3 to 0.36.1

Release notes

Sourced from egui-wgpu's releases.

0.36.1 - Sense::drag() bugfix

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

0.36.0 - Improved mobile keyboard support

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

Highlights ✨

Improved mobile keyboard support

Autocomplete, autocorrect and IMEs now work correctly on iOS and android (on eframe web)!

ScreenRecording_08-05-2026.11-48-49_1.MP4

Drag to reopen panels

You can now reopen closed panels by dragging the handle:

Screen.Recording.2026-08-05.at.11.45.10.mov

Window decoration theme is now synced with app theme

Previously, when switching themes, the window chrome (OS titlebar), stayed in the OS theme. Now, it syncs with the app theme:

Screen.Recording.2026-08-05.at.11.45.47.mov

... (truncated)

Changelog

Sourced from egui-wgpu's changelog.

0.36.1 - 2026-08-07

0.36.0 - 2026-08-05

Highlights ✨

This release drastically improves the mobile keyboard experience (when using eframe web). It also adds drag-to-open panels, window chrome theme sync and a lot of small bug fixes and improvements!

Improved mobile keyboard support

Autocomplete, autocorrect and IMEs now work correctly on iOS and android (on eframe web)!

ScreenRecording_08-05-2026.11-48-49_1.MP4

Drag to reopen panels

You can now reopen closed panels by dragging the handle:

Screen.Recording.2026-08-05.at.11.45.10.mov

Window decoration theme is now synced with app theme

Previously, when switching themes, the window chrome (OS titlebar) stayed in the OS theme. Now, it syncs with the app theme:

Screen.Recording.2026-08-05.at.11.45.47.mov

⭐ Added

🔧 Changed

🔥 Removed

... (truncated)

Commits
  • 4c1f2fa Release 0.36.1 - Fix Sense::drag bug
  • 42cd821 Fix Sense::drag detecting drags when clicking widget above it (#8396)
  • 2397194 Release 0.36.0 - Improved mobile keyboard support (#8390)
  • e37d44a Never run an egui pass when nothing will be shown (#8387)
  • 90e0302 Fix a few nightly clippy lints (#8388)
  • 5347b0a Fix window with a Grid being widenable but not shrinkable again (#8386)
  • 622bbbe Add drag-to-open for collapsible panels (#8363)
  • 98eab50 Treat a press that leaves a widget as a drag (#8365)
  • 78c0e39 Fix ScrollArea failure by handling horizontal and vertical scrolling separate...
  • 5c0b690 Add extra_text_line_spacing to control vertical spacing between text lines ...
  • Additional commits viewable in compare view

Updates egui-winit from 0.34.3 to 0.36.1

Release notes

Sourced from egui-winit's releases.

0.36.1 - Sense::drag() bugfix

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

0.36.0 - Improved mobile keyboard support

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

Highlights ✨

Improved mobile keyboard support

Autocomplete, autocorrect and IMEs now work correctly on iOS and android (on eframe web)!

ScreenRecording_08-05-2026.11-48-49_1.MP4

Drag to reopen panels

You can now reopen closed panels by dragging the handle:

Screen.Recording.2026-08-05.at.11.45.10.mov

Window decoration theme is now synced with app theme

Previously, when switching themes, the window chrome (OS titlebar), stayed in the OS theme. Now, it syncs with the app theme:

Screen.Recording.2026-08-05.at.11.45.47.mov

... (truncated)

Changelog

Sourced from egui-winit's changelog.

0.36.1 - 2026-08-07

0.36.0 - 2026-08-05

Highlights ✨

This release drastically improves the mobile keyboard experience (when using eframe web). It also adds drag-to-open panels, window chrome theme sync and a lot of small bug fixes and improvements!

Improved mobile keyboard support

Autocomplete, autocorrect and IMEs now work correctly on iOS and android (on eframe web)!

ScreenRecording_08-05-2026.11-48-49_1.MP4

Drag to reopen panels

You can now reopen closed panels by dragging the handle:

Screen.Recording.2026-08-05.at.11.45.10.mov

Window decoration theme is now synced with app theme

Previously, when switching themes, the window chrome (OS titlebar) stayed in the OS theme. Now, it syncs with the app theme:

Screen.Recording.2026-08-05.at.11.45.47.mov

⭐ Added

🔧 Changed

🔥 Removed

... (truncated)

Commits
  • 4c1f2fa Release 0.36.1 - Fix Sense::drag bug
  • 42cd821 Fix Sense::drag detecting drags when clicking widget above it (#8396)
  • 2397194 Release 0.36.0 - Improved mobile keyboard support (#8390)
  • e37d44a Never run an egui pass when nothing will be shown (#8387)
  • 90e0302 Fix a few nightly clippy lints (#8388)
  • 5347b0a Fix window with a Grid being widenable but not shrinkable again (#8386)
  • 622bbbe Add drag-to-open for collapsible panels (#8363)
  • 98eab50 Treat a press that leaves a widget as a drag (#8365)
  • 78c0e39 Fix ScrollArea failure by handling horizontal and vertical scrolling separate...
  • 5c0b690 Add extra_text_line_spacing to control vertical spacing between text lines ...
  • Additional commits viewable in compare view

Updates flate2 from 1.1.9 to 1.1.10

Release notes

Sourced from flate2's releases.

1.1.10

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.1.9...1.1.10

Commits
  • ed93d4f Merge pull request #558 from rust-lang/lib-doc-update
  • fb5228d Merge pull request #559 from bushrat011899/no_std
  • 6ed3ba3 Add executable no_std example
  • faed8a0 Expand CI to test no_std compatibility and correctness
  • 2ba8e7e Add unstable no_std support behind flate2_unstable_nightly_alloc_io
  • 3fe1126 Centralize usage of std for error and io
  • 98e313a Add GzHeader::mtime_as_duration
  • 0642965 Switch to core implicit prelude and only use std where required
  • 454a63c Remove left-over dbg! statement
  • 2a490b7 Add runtime_detection feature
  • Additional commits viewable in compare view

Updates futures from 0.3.32 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)

0.3.33

  • Fix ReadLine's soundness issue regarding to exception safety. (#3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#3007)
  • Re-export alloc::task::Wake. (#3010)
  • Update spin to 0.12. (#3014)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)

0.3.33 - 2026-07-18

  • Fix ReadLine's soundness issue regarding to exception safety. (#3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#3007)
  • Re-export alloc::task::Wake. (#3010)
  • Update spin to 0.12. (#3014)
Commits

Updates futures-channel from 0.3.32 to 0.3.34

Release notes

Sourced from futures-channel's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)

0.3.33

  • Fix ReadLine's soundness issue regarding to exception safety. (#3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#3007)
  • Re-export alloc::task::Wake. (#3010)
  • Update spin to 0.12. (#3014)
Changelog

Sourced from futures-channel's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)

0.3.33 - 2026-07-18

  • Fix ReadLine's soundness issue regarding to exception safety. (#3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#3007)
  • Re-export alloc::task::Wake. (#3010)
  • Update spin to 0.12. (#3014)
Commits
  • 705e6b5 Release 0.3.34
  • 616dac7 compat: Inline RawWaker clone function
  • 4176369 Inline remaining RawWaker clone functions
  • f17a895 Fix cloned FuturesUnordered waker identity
  • 51d62ad macro: bump syn to v3 (#3028)
  • 9e26177 ci: Reduce timeout-minutes
  • b2d0983 tsan: Enable Adaptive Delay
  • f733d0e Miri: Ignore compat tests
  • e5def2f Rename default branch to main
  • 89cc254 Release 0.3.33
  • Additional commits viewable in

Bumps the cargo group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [abels-complex](https://github.com/abel465/abels-complex-rs) | `0.5.1` | `0.6.3` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.103` | `1.0.104` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.25.1` | `1.25.2` |
| [clap](https://github.com/clap-rs/clap) | `4.6.2` | `4.6.6` |
| [easy-cast](https://github.com/kas-gui/easy-cast) | `0.5.5` | `0.7.1` |
| [egui](https://github.com/emilk/egui) | `0.34.3` | `0.36.1` |
| [egui-wgpu](https://github.com/emilk/egui) | `0.34.3` | `0.36.1` |
| [egui-winit](https://github.com/emilk/egui) | `0.34.3` | `0.36.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.9` | `1.1.10` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.32` | `0.3.34` |
| [log](https://github.com/rust-lang/log) | `0.4.33` | `0.4.34` |
| [num-derive](https://github.com/rust-num/num-derive) | `0.4.2` | `0.5.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.150` | `1.0.151` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.18` | `2.0.20` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.52.4` | `1.53.1` |
| [wgpu](https://github.com/gfx-rs/wgpu) | `29.0.4` | `30.0.0` |



Updates `abels-complex` from 0.5.1 to 0.6.3
- [Commits](https://github.com/abel465/abels-complex-rs/commits)

Updates `anyhow` from 1.0.103 to 1.0.104
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.103...1.0.104)

Updates `bytemuck` from 1.25.1 to 1.25.2
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.25.1...v1.25.2)

Updates `clap` from 4.6.2 to 4.6.6
- [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.6.2...clap_complete-v4.6.6)

Updates `easy-cast` from 0.5.5 to 0.7.1
- [Release notes](https://github.com/kas-gui/easy-cast/releases)
- [Changelog](https://github.com/kas-gui/easy-cast/blob/master/CHANGELOG.md)
- [Commits](kas-gui/easy-cast@0.5.5...0.7.1)

Updates `egui` from 0.34.3 to 0.36.1
- [Release notes](https://github.com/emilk/egui/releases)
- [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md)
- [Commits](emilk/egui@0.34.3...0.36.1)

Updates `egui-wgpu` from 0.34.3 to 0.36.1
- [Release notes](https://github.com/emilk/egui/releases)
- [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md)
- [Commits](emilk/egui@0.34.3...0.36.1)

Updates `egui-winit` from 0.34.3 to 0.36.1
- [Release notes](https://github.com/emilk/egui/releases)
- [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md)
- [Commits](emilk/egui@0.34.3...0.36.1)

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

Updates `futures` from 0.3.32 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.32...0.3.34)

Updates `futures-channel` from 0.3.32 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.32...0.3.34)

Updates `log` from 0.4.33 to 0.4.34
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.33...0.4.34)

Updates `num-derive` from 0.4.2 to 0.5.1
- [Changelog](https://github.com/rust-num/num-derive/blob/main/RELEASES.md)
- [Commits](rust-num/num-derive@num-derive-0.4.2...num-derive-0.5.1)

Updates `serde_json` from 1.0.150 to 1.0.151
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.150...v1.0.151)

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

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

Updates `wgpu` from 29.0.4 to 30.0.0
- [Release notes](https://github.com/gfx-rs/wgpu/releases)
- [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md)
- [Commits](gfx-rs/wgpu@v29.0.4...v30.0.0)

---
updated-dependencies:
- dependency-name: abels-complex
  dependency-version: 0.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: anyhow
  dependency-version: 1.0.104
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: bytemuck
  dependency-version: 1.25.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap
  dependency-version: 4.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: easy-cast
  dependency-version: 0.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: egui
  dependency-version: 0.36.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: egui-wgpu
  dependency-version: 0.36.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: egui-winit
  dependency-version: 0.36.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: flate2
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: futures
  dependency-version: 0.3.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: futures-channel
  dependency-version: 0.3.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: log
  dependency-version: 0.4.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: num-derive
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: serde_json
  dependency-version: 1.0.151
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: thiserror
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.53.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: wgpu
  dependency-version: 30.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo
...

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 Sep 1, 2026
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.

0 participants