Skip to content

chore(deps): bump the dependencies group across 7 directories with 23 updates#277

Closed
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/cargo/dependencies-74623e6f5c
Closed

chore(deps): bump the dependencies group across 7 directories with 23 updates#277
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/cargo/dependencies-74623e6f5c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the dependencies group with 18 updates in the / directory:

Package From To
can-dbc 8.1.0 9.0.0
clap 4.5.60 4.6.0
cmake 0.1.57 0.1.58
eframe 0.33.3 0.34.1
egui 0.33.3 0.34.1
egui_extras 0.33.3 0.34.1
egui-notify 0.21.0 0.22.0
embassy-net 0.8.0 0.9.0
env_logger 0.11.9 0.11.10
libtest-mimic 0.8.1 0.8.2
scraper 0.25.0 0.26.0
sha2 0.10.9 0.11.0
tempfile 3.26.0 3.27.0
tinyvec 1.10.0 1.11.0
tokio-tungstenite 0.28.0 0.29.0
tracing-subscriber 0.3.22 0.3.23
uuid 1.22.0 1.23.0
wasm-bindgen-futures 0.4.64 0.4.65

Bumps the dependencies group with 1 update in the /docs/user-manual/crates/getting-started directory: assert_cmd.
Bumps the dependencies group with 1 update in the /docs/user-manual/crates/traces-serialization directory: assert_cmd.
Bumps the dependencies group with 2 updates in the /examples/embassy-std directory: embassy-time and embassy-sync.
Bumps the dependencies group with 2 updates in the /examples/embassy-stm32 directory: embassy-net and embassy-stm32.
Bumps the dependencies group with 1 update in the /examples/freertos-linux directory: assert_cmd.
Bumps the dependencies group with 1 update in the /examples/orchestrator-ipc directory: uuid.

Updates can-dbc from 8.1.0 to 9.0.0

Release notes

Sourced from can-dbc's releases.

v9.0.0

Fixed

  • parse signal min/max as NumericValue (#76)
  • ast/message_id: use 0x1FFF_FFFF (1<<29 - 1) instead of 2^29 in test (#77)
Changelog

Sourced from can-dbc's changelog.

9.0.0 - 2026-03-20

Fixed

  • parse signal min/max as NumericValue (#76)
  • ast/message_id: use 0x1FFF_FFFF (1<<29 - 1) instead of 2^29 in test (#77)
Commits
  • 1e0299b chore: release v9.0.0 (#78)
  • 3cafcb1 fix: parse signal min/max as NumericValue (#76)
  • c681ff2 fix: ast/message_id: use 0x1FFF_FFFF (1<<29 - 1) instead of 2^29 in test (#77)
  • See full diff in compare view

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 cmake from 0.1.57 to 0.1.58

Release notes

Sourced from cmake's releases.

v0.1.58

Fixed

  • Fix i686-windows system import (#276)
Changelog

Sourced from cmake's changelog.

0.1.58 - 2026-03-26

Fixed

  • Fix i686-windows system import (#276)
Commits

Updates eframe from 0.33.3 to 0.34.1

Release notes

Sourced from eframe's releases.

0.34.1: Enable WebGL fallback in eframe

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.

eframe 0.34.1 changelog

0.34.0: More Ui, less Context

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.

egui 0.34.0 changelog

Highlights from this release

  • Sharper text unlocked by switching font rendering crate to skrifa
  • Fade out edges of ScrollAreas
  • Use Ui as the main entrypoint

Skrifa and font hinting

The font rendering backend was switched from ab_glyph to skrifa + vello_cpu. This enabled us support font hinting and variations. It also paves the way for more font improvements in the future, like support for color emojis and adding helpers for variations like RichText::bold.

Font hinting makes text more clear (look at the =):

Screen.Recording.2026-03-26.at.10.49.43.mov

We now support setting variable font parameters:

... (truncated)

Changelog

Sourced from eframe's changelog.

0.34.1 - 2026-03-27

Nothing new

0.34.0 - 2026-03-26

Highlights from this release

  • Sharper text unlocked by switching font rendering crate to skrifa
  • Fade out edges of ScrollAreas
  • Use Ui as the main entrypoint

Skrifa and font hinting

The font rendering backend was switched from ab_glyph to skrifa + vello_cpu. This enabled us support font hinting and variations. It also paves the way for more font improvements in the future, like support for color emojis and adding helpers for variations like RichText::bold.

Font hinting makes text more clear (look at the =):

Screen.Recording.2026-03-26.at.10.49.43.mov

We now support setting variable font parameters:

Screen.Recording.2026-03-26.at.11.37.21.mp4

(Unfortunately there is currently a bug with variations, meaning changing them live like this won't work in practise. There is a draft PR to fix it, but it didn't make the release)

More Ui, less Context

egui has long had a confusing overlap in responsibilities between Context and Ui. In particular, you could add panels to either one (or both!). In this release, we switch from having Context be the main entrypoint, and instead provide whole-app Ui. In egui we've replaced Context::run with Context::run_ui, and changed viewports to be given a &mut Ui instead of Context. In eframe we've deprecated App::update replaced it with App::ui (which provides a &mut Ui instead of a &Context).

In addition to this, Ui now derefs to Context, so all code like ui.ctx().input(…) can now be written ui.input(…). This means you are much less likely to have to use naked Contexts. Context can still be useful though, since they implement Clone and can be sent to other threads so you can call .request_repaint on them.

Changed panel API

As part of the above work, we have unified the panel API.

... (truncated)

Commits

Updates egui from 0.33.3 to 0.34.1

Release notes

Sourced from egui's releases.

0.34.1: Enable WebGL fallback in eframe

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.

eframe 0.34.1 changelog

0.34.0: More Ui, less Context

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.

egui 0.34.0 changelog

Highlights from this release

  • Sharper text unlocked by switching font rendering crate to skrifa
  • Fade out edges of ScrollAreas
  • Use Ui as the main entrypoint

Skrifa and font hinting

The font rendering backend was switched from ab_glyph to skrifa + vello_cpu. This enabled us support font hinting and variations. It also paves the way for more font improvements in the future, like support for color emojis and adding helpers for variations like RichText::bold.

Font hinting makes text more clear (look at the =):

Screen.Recording.2026-03-26.at.10.49.43.mov

We now support setting variable font parameters:

... (truncated)

Changelog

Sourced from egui's changelog.

0.34.1 - 2026-03-27

Nothing new

0.34.0 - 2026-03-26

Highlights from this release

  • Sharper text unlocked by switching font rendering crate to skrifa
  • Fade out edges of ScrollAreas
  • Use Ui as the main entrypoint

Skrifa and font hinting

The font rendering backend was switched from ab_glyph to skrifa + vello_cpu. This enabled us support font hinting and variations. It also paves the way for more font improvements in the future, like support for color emojis and adding helpers for variations like RichText::bold.

Font hinting makes text more clear (look at the =):

Screen.Recording.2026-03-26.at.10.49.43.mov

We now support setting variable font parameters:

Screen.Recording.2026-03-26.at.11.37.21.mp4

(Unfortunately there is currently a bug with variations, meaning changing them live like this won't work in practise. There is a draft PR to fix it, but it didn't make the release)

More Ui, less Context

egui has long had a confusing overlap in responsibilities between Context and Ui. In particular, you could add panels to either one (or both!). In this release, we switch from having Context be the main entrypoint, and instead provide whole-app Ui. In egui we've replaced Context::run with Context::run_ui, and changed viewports to be given a &mut Ui instead of Context. In eframe we've deprecated App::update replaced it with App::ui (which provides a &mut Ui instead of a &Context).

In addition to this, Ui now derefs to Context, so all code like ui.ctx().input(…) can now be written ui.input(…). This means you are much less likely to have to use naked Contexts. Context can still be useful though, since they implement Clone and can be sent to other threads so you can call .request_repaint on them.

Changed panel API

As part of the above work, we have unified the panel API.

... (truncated)

Commits

Updates egui_extras from 0.33.3 to 0.34.1

Release notes

Sourced from egui_extras's releases.

0.34.1: Enable WebGL fallback in eframe

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.

eframe 0.34.1 changelog

0.34.0: More Ui, less Context

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.

egui 0.34.0 changelog

Highlights from this release

  • Sharper text unlocked by switching font rendering crate to skrifa
  • Fade out edges of ScrollAreas
  • Use Ui as the main entrypoint

Skrifa and font hinting

The font rendering backend was switched from ab_glyph to skrifa + vello_cpu. This enabled us support font hinting and variations. It also paves the way for more font improvements in the future, like support for color emojis and adding helpers for variations like RichText::bold.

Font hinting makes text more clear (look at the =):

Screen.Recording.2026-03-26.at.10.49.43.mov

We now support setting variable font parameters:

... (truncated)

Changelog

Sourced from egui_extras's changelog.

0.34.1 - 2026-03-27

Nothing new

0.34.0 - 2026-03-26

Highlights from this release

  • Sharper text unlocked by switching font rendering crate to skrifa
  • Fade out edges of ScrollAreas
  • Use Ui as the main entrypoint

Skrifa and font hinting

The font rendering backend was switched from ab_glyph to skrifa + vello_cpu. This enabled us support font hinting and variations. It also paves the way for more font improvements in the future, like support for color emojis and adding helpers for variations like RichText::bold.

Font hinting makes text more clear (look at the =):

Screen.Recording.2026-03-26.at.10.49.43.mov

We now support setting variable font parameters:

Screen.Recording.2026-03-26.at.11.37.21.mp4

(Unfortunately there is currently a bug with variations, meaning changing them live like this won't work in practise. There is a draft PR to fix it, but it didn't make the release)

More Ui, less Context

egui has long had a confusing overlap in responsibilities between Context and Ui. In particular, you could add panels to either one (or both!). In this release, we switch from having Context be the main entrypoint, and instead provide whole-app Ui. In egui we've replaced Context::run with Context::run_ui, and changed viewports to be given a &mut Ui instead of Context. In eframe we've deprecated App::update replaced it with App::ui (which provides a &mut Ui instead of a &Context).

In addition to this, Ui now derefs to Context, so all code like ui.ctx().input(…) can now be written ui.input(…). This means you are much less likely to have to use naked Contexts. Context can still be useful though, since they implement Clone and can be sent to other threads so you can call .request_repaint on them.

Changed panel API

As part of the above work, we have unified the panel API.

... (truncated)

Commits

Updates egui-notify from 0.21.0 to 0.22.0

Commits

Updates embassy-net from 0.8.0 to 0.9.0

Commits
  • f0ff2ac chore: update embassy-net smoltcp version
  • 84444a1 chore: prepare embassy-hal-internal release
  • 50c6aac chore: bump embassy-time-driver version
  • ca966f8 Merge pull request #5699 from embassy-rs/update-stm32-metapac
  • a343e0a chore: update stm32-metapac version
  • 8095ff0 Merge pull request #5671 from embassy-rs/stm32-executor-platform
  • 92829a9 stm32: remove internal-only _allow-disable-rtc.
  • 0f59f10 stm32: separate low-power and custom executor.
  • 5bc8260 Merge pull request #5692 from okhsunrog/timer-break-input
  • 3bea5ab stm32: timer: add break input configuration and comparator routing
  • Additional commits viewable in compare view

Updates embassy-time from 0.5.0 to 0.5.1

Commits
  • 84444a1 chore: prepare embassy-hal-internal release
  • 50c6aac chore: bump embassy-time-driver version
  • ca966f8 Merge pull request #5699 from embassy-rs/update-stm32-metapac
  • a343e0a chore: update stm32-metapac version
  • 8095ff0 Merge pull request #5671 from embassy-rs/stm32-executor-platform
  • 92829a9 stm32: remove internal-only _allow-disable-rtc.
  • 0f59f10 stm32: separate low-power and custom executor.
  • 5bc8260 Merge pull request #5692 from okhsunrog/timer-break-input
  • 3bea5ab stm32: timer: add break input configuration and comparator routing
  • d481373 Merge pull request #5691 from felipebalbi/mcxa/update-deps
  • Additional commits viewable in compare view

Updates env_logger from 0.11.9 to 0.11.10

Release notes

Sourced from env_logger's releases.

v0.11.10

[0.11.10] - 2026-03-23

Internal

  • Update dependencies
Changelog

Sourced from env_logger's changelog.

[0.11.10] - 2026-03-23

Internal

  • Update dependencies
Commits
  • 41320bf chore: Release
  • de8c74f docs: Update changelog
  • d550741 docs(gh): Add sponsor link
  • 458b075 chore(deps): Update Rust Stable to v1.94 (#401)
  • 8bc3fc3 Merge pull request #400 from epage/update
  • 143fa64 chore: Upgrade incompatible
  • b687a24 chore: Upgrade compatible
  • 8cf1ba9 Merge pull request #397 from rust-cli/renovate/crate-ci-typos-1.x
  • 094ecf7 Merge pull request #396 from rust-cli/renovate/crate-ci-committed-1.x
  • 34ad626 chore(deps): Update pre-commit hook crate-ci/typos to v1.44.0
  • Additional commits viewable in compare view

Updates libtest-mimic from 0.8.1 to 0.8.2

Release notes

Sourced from libtest-mimic's releases.

v0.8.2

  • Add Trial::ignorable_test to allow the runner decide at runtime whether a test should be skipped (thanks to @​tgross35 in #58)
  • Add Arguments::{is_ignored, is_filtered_out} (thanks to @​jstarks in #58)
  • Bump anstream to 1.0 (thanks @​cwfitzgerald in #58)
Changelog

Sourced from libtest-mimic's changelog.

[0.8.2] - 2026-03-16

  • Add Trial::ignorable_test to allow the runner decide at runtime whether a test should be skipped (thanks to @​tgross35 in #58)
  • Add Arguments::{is_ignored, is_filtered_out} (thanks to @​jstarks in #58)
  • Bump anstream to 1.0 (thanks @​cwfitzgerald in #58)
Commits
  • 8aca207 Bump version to 0.8.2
  • 2c2ffc9 Remove duplicate code by using ignorable_test in Trial::test
  • 67bddea Put runtime ignore reason in parens instead of after comma
  • e74d535 Replace "skip" terminology with "ignore"
  • 958431d Make Completion::Ignored hold Option\<String> instead of String
  • 1ada1b5 Merge pull request #52 from tgross35/runtime-skip
  • bc8942a Adjust changelog
  • 1cd49d7 Make Arguments::is_ignored public
  • 9e51f37 Merge pull request #53 from jstarks/filter
  • ff063fe Merge pull request #58 from cwfitzgerald/anstream-1.0
  • Additional commits viewable in compare view

Updates scraper from 0.25.0 to 0.26.0

Release notes

Sourced from scraper's releases.

v0.26.0

What's Changed

New Contributors

Full Changelog: rust-scraper/scraper@v0.25.0...v0.26.0

Commits
  • 170cdd3 Merge pull request #306 from rust-scraper/bump
  • bca1839 Bump html5ever from 0.38.0 to 0.39.0
  • d07444e Bump selectors from 0.35.0 to 0.36.0 (#307)
  • 637a8d3 Version 0.26.0
  • f3132d9 Bump html5ever from 0.37.1 to 0.38.0
  • ff2ea51 cargo fmt
  • 7d14577 Edition 2024
  • 60cd9e7 Merge pull request #300 from rust-scraper/upgrade-ego-tree-html5ever
  • ba8f3fc Upgrade ego-tree to 0.11.0 and html5ever to 0.37.1
  • a2cfbe4 Bump indexmap from 2.12.1 to 2.13.0
  • Additional commits viewable in compare view

Updates sha2 from 0.10.9 to 0.11.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 tinyvec from 1.10.0 to 1.11.0

Changelog

Sourced from tinyvec's changelog.

Changelog

1.11

  • switched from serde dep to serde_core dep, which should allow more parallelization in builds for downstream users.
  • add as_mut_inner method when the latest_stable_rust feature is enabled
  • add is_full method to check if the size is equal to the capacity
  • add defmt support

1.10

  • Minimum rust version is now 1.55, and the non-const-generic impls are removed. This reduces build times by over a second on average, which is significant enough for a library crate.

1.9

  • Adds a latest_stable_rust cargo feature, which will automatically pull in other cargo features related to the latest Stable version of rust.
  • Adds ArrayVec::try_from_array_len
  • Adds TinyVec::into_vec and TinyVec::into_boxed_slice
  • Adds support for generic-array crate
  • Adds support for the borsh crate

1.8.1

  • e00E updated the rustc features so that they all correctly depend on the lower version feature. pr 199

1.8

1.7

  • Fuuzetsu added the rustc_1_61 cargo feature, which adds the retain_mut method. pr 198

1.6.1

  • e00E fixed the Arbitrary impl to work on Stable without using a feature gate. pr 180

1.6.0

  • i509VCB added the try_ functions for fallable reallocation.

... (truncated)

Commits

Updates tokio-tungstenite from 0.28.0 to 0.29.0

Changelog

Sourced from tokio-tungstenite's changelog.

0.29.0

Commits

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 (

… updates

Bumps the dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [can-dbc](https://github.com/oxibus/can-dbc) | `8.1.0` | `9.0.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.60` | `4.6.0` |
| [cmake](https://github.com/rust-lang/cmake-rs) | `0.1.57` | `0.1.58` |
| [eframe](https://github.com/emilk/egui) | `0.33.3` | `0.34.1` |
| [egui](https://github.com/emilk/egui) | `0.33.3` | `0.34.1` |
| [egui_extras](https://github.com/emilk/egui) | `0.33.3` | `0.34.1` |
| [egui-notify](https://github.com/ItsEthra/egui-notify) | `0.21.0` | `0.22.0` |
| [embassy-net](https://github.com/embassy-rs/embassy) | `0.8.0` | `0.9.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.9` | `0.11.10` |
| [libtest-mimic](https://github.com/LukasKalbertodt/libtest-mimic) | `0.8.1` | `0.8.2` |
| [scraper](https://github.com/rust-scraper/scraper) | `0.25.0` | `0.26.0` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.10.9` | `0.11.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.26.0` | `3.27.0` |
| [tinyvec](https://github.com/Lokathor/tinyvec) | `1.10.0` | `1.11.0` |
| [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) | `0.28.0` | `0.29.0` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.22` | `0.3.23` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.22.0` | `1.23.0` |
| [wasm-bindgen-futures](https://github.com/wasm-bindgen/wasm-bindgen) | `0.4.64` | `0.4.65` |

Bumps the dependencies group with 1 update in the /docs/user-manual/crates/getting-started directory: [assert_cmd](https://github.com/assert-rs/assert_cmd).
Bumps the dependencies group with 1 update in the /docs/user-manual/crates/traces-serialization directory: [assert_cmd](https://github.com/assert-rs/assert_cmd).
Bumps the dependencies group with 2 updates in the /examples/embassy-std directory: [embassy-time](https://github.com/embassy-rs/embassy) and [embassy-sync](https://github.com/embassy-rs/embassy).
Bumps the dependencies group with 2 updates in the /examples/embassy-stm32 directory: [embassy-net](https://github.com/embassy-rs/embassy) and [embassy-stm32](https://github.com/embassy-rs/embassy).
Bumps the dependencies group with 1 update in the /examples/freertos-linux directory: [assert_cmd](https://github.com/assert-rs/assert_cmd).
Bumps the dependencies group with 1 update in the /examples/orchestrator-ipc directory: [uuid](https://github.com/uuid-rs/uuid).


Updates `can-dbc` from 8.1.0 to 9.0.0
- [Release notes](https://github.com/oxibus/can-dbc/releases)
- [Changelog](https://github.com/oxibus/can-dbc/blob/main/CHANGELOG.md)
- [Commits](oxibus/can-dbc@v8.1.0...v9.0.0)

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 `cmake` from 0.1.57 to 0.1.58
- [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.57...v0.1.58)

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

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

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

Updates `egui-notify` from 0.21.0 to 0.22.0
- [Changelog](https://github.com/ItsEthra/egui-notify/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ItsEthra/egui-notify/commits)

Updates `embassy-net` from 0.8.0 to 0.9.0
- [Changelog](https://github.com/embassy-rs/embassy/blob/main/RELEASE.md)
- [Commits](embassy-rs/embassy@embassy-net-v0.8.0...embassy-net-v0.9.0)

Updates `embassy-time` from 0.5.0 to 0.5.1
- [Changelog](https://github.com/embassy-rs/embassy/blob/main/RELEASE.md)
- [Commits](embassy-rs/embassy@embassy-time-v0.5.0...embassy-time-v0.5.1)

Updates `env_logger` from 0.11.9 to 0.11.10
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.9...v0.11.10)

Updates `libtest-mimic` from 0.8.1 to 0.8.2
- [Release notes](https://github.com/LukasKalbertodt/libtest-mimic/releases)
- [Changelog](https://github.com/LukasKalbertodt/libtest-mimic/blob/master/CHANGELOG.md)
- [Commits](LukasKalbertodt/libtest-mimic@v0.8.1...v0.8.2)

Updates `scraper` from 0.25.0 to 0.26.0
- [Release notes](https://github.com/rust-scraper/scraper/releases)
- [Commits](rust-scraper/scraper@v0.25.0...v0.26.0)

Updates `sha2` from 0.10.9 to 0.11.0
- [Commits](RustCrypto/hashes@sha2-v0.10.9...sha2-v0.11.0)

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 `tinyvec` from 1.10.0 to 1.11.0
- [Changelog](https://github.com/Lokathor/tinyvec/blob/main/CHANGELOG.md)
- [Commits](Lokathor/tinyvec@v1.10.0...v1.11.0)

Updates `tokio-tungstenite` from 0.28.0 to 0.29.0
- [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md)
- [Commits](snapview/tokio-tungstenite@v0.28.0...v0.29.0)

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 `uuid` from 1.22.0 to 1.23.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.22.0...v1.23.0)

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 `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 `assert_cmd` from 2.1.2 to 2.2.0
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md)
- [Commits](assert-rs/assert_cmd@v2.1.2...v2.2.0)

Updates `assert_cmd` from 2.1.2 to 2.2.0
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md)
- [Commits](assert-rs/assert_cmd@v2.1.2...v2.2.0)

Updates `embassy-time` from 0.5.0 to 0.5.1
- [Changelog](https://github.com/embassy-rs/embassy/blob/main/RELEASE.md)
- [Commits](embassy-rs/embassy@embassy-time-v0.5.0...embassy-time-v0.5.1)

Updates `embassy-sync` from 0.7.2 to 0.8.0
- [Changelog](https://github.com/embassy-rs/embassy/blob/main/RELEASE.md)
- [Commits](embassy-rs/embassy@embassy-sync-v0.7.2...embassy-sync-v0.8.0)

Updates `embassy-net` from 0.8.0 to 0.9.0
- [Changelog](https://github.com/embassy-rs/embassy/blob/main/RELEASE.md)
- [Commits](embassy-rs/embassy@embassy-net-v0.8.0...embassy-net-v0.9.0)

Updates `embassy-time` from 0.5.0 to 0.5.1
- [Changelog](https://github.com/embassy-rs/embassy/blob/main/RELEASE.md)
- [Commits](embassy-rs/embassy@embassy-time-v0.5.0...embassy-time-v0.5.1)

Updates `embassy-stm32` from 0.5.0 to 0.6.0
- [Changelog](https://github.com/embassy-rs/embassy/blob/main/RELEASE.md)
- [Commits](embassy-rs/embassy@embassy-stm32-v0.5.0...embassy-stm32-v0.6.0)

Updates `assert_cmd` from 2.1.2 to 2.2.0
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md)
- [Commits](assert-rs/assert_cmd@v2.1.2...v2.2.0)

Updates `uuid` from 1.22.0 to 1.23.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.22.0...v1.23.0)

---
updated-dependencies:
- dependency-name: can-dbc
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: clap
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cmake
  dependency-version: 0.1.58
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eframe
  dependency-version: 0.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: egui
  dependency-version: 0.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: egui_extras
  dependency-version: 0.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: egui-notify
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: embassy-net
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: embassy-time
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: env_logger
  dependency-version: 0.11.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: libtest-mimic
  dependency-version: 0.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: scraper
  dependency-version: 0.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: sha2
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tempfile
  dependency-version: 3.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tinyvec
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tokio-tungstenite
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tracing-subscriber
  dependency-version: 0.3.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: uuid
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: wasm-bindgen-futures
  dependency-version: 0.4.65
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: web-sys
  dependency-version: 0.3.92
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: assert_cmd
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: assert_cmd
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: embassy-time
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: embassy-sync
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: embassy-net
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: embassy-time
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: embassy-stm32
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: assert_cmd
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: uuid
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

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
@dependabot dependabot Bot requested a review from alexveecle as a code owner March 30, 2026 11:31
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Mar 30, 2026
Signed-off-by: veecle-ci-access[bot] <171345049+veecle-ci-access[bot]@users.noreply.github.com>
@codecov
Copy link
Copy Markdown

codecov Bot commented Mar 30, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 6, 2026

Superseded by #279.

@dependabot dependabot Bot closed this Apr 6, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/dependencies-74623e6f5c branch April 6, 2026 11:11
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