Skip to content

deps: bump the rust-minor-and-patch group across 1 directory with 16 updates - #45

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/rust-minor-and-patch-fcfe60909c
Open

dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/rust-minor-and-patch-fcfe60909c

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
clap 4.6.4 4.6.6
log 0.4.33 0.4.34
alsa 0.12.0 0.12.1
bitflags 2.13.1 2.13.2
winit 0.31.0-beta.2 0.31.0-beta.3
xcursor 0.3.10 0.3.11
futures-util 0.3.33 0.3.34
pipewire 0.10.0 0.10.1
libspa 0.10.0 0.10.1
libspa-sys 0.10.0 0.10.1
thiserror 2.0.19 2.0.20
rkyv 0.8.17 0.8.18
flexi_logger 0.31.9 0.31.10
cairo-rs 0.22.0 0.22.9
pango 0.22.8 0.22.9
pangocairo 0.22.8 0.22.9

Updates clap from 4.6.4 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
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
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 log from 0.4.33 to 0.4.34

Release notes

Sourced from log's releases.

0.4.34

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.33...0.4.34

Changelog

Sourced from log's changelog.

[0.4.34] - 2026-08-22

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.33...0.4.34

Commits

Updates alsa from 0.12.0 to 0.12.1

Commits

Updates bitflags from 2.13.1 to 2.13.2

Release notes

Sourced from bitflags's releases.

2.13.2

What's Changed

Full Changelog: bitflags/bitflags@2.13.1...2.13.2

Changelog

Sourced from bitflags's changelog.

2.13.2

What's Changed

Full Changelog: bitflags/bitflags@2.13.1...2.13.2

Commits
  • 80ce9b5 Merge pull request #497 from bitflags/cargo/2.13.2
  • 5822493 prepare for 2.13.2 release
  • 48f4f1a Merge pull request #496 from bitflags/fix/rustc-ice
  • 2c0b042 re-pull const declarations outside of nested const
  • c3f8d31 Merge pull request #494 from DanielEScherzer/flags-docs-example
  • 0fc3762 Flags: adjust order of elements in manual implementation example
  • See full diff in compare view

Updates winit from 0.31.0-beta.2 to 0.31.0-beta.3

Release notes

Sourced from winit's releases.

Winit version 0.31.0-beta.3

Added

  • Add keyboard support for OpenHarmony.
  • On iOS, add Apple Pencil support with force, altitude, and azimuth data.
  • On Redox, add support for missing keyboard scancodes.
  • On Redox, add support for EventLoopExtPumpEvents::pump_app_events.
  • Implement Send and Sync for OwnedDisplayHandle.
  • Use new macOS 15 cursors for resize icons.
  • On Android, added scancode conversions for more obscure key codes.
  • On Wayland, added HoldGesture event for multi-finger hold gestures
  • On Wayland, added ext-background-effect-v1 support.
  • On Wayland, Windows and macOS, added native popups (WindowType::Popup), with WindowAttributes::with_positioner for configuring their placement via a WindowPositioner (grouping the anchor edge/corner, the anchor rect, the gravity direction, the positioner offset and the constraint adjustment, using the new WindowAnchor, WindowGravity and WindowConstraintAdjustment types), and matching Window::positioner/set_positioner methods for reading/controlling it at runtime. These work on every Window, popup or not; use Window::window_type to tell whether a given window is a genuine WindowType::Popup. On Windows and macOS, which have no native positioner concept, the placement is computed by winit itself, mirroring Wayland's xdg_positioner behavior, and it also works for a plain WindowType::Window that has a parent; on Wayland the positioner is part of the xdg_popup protocol, so it only applies to WindowType::Popup.
  • On macOS, add WindowAttributesMacOS::with_fullscreen_auxiliary and WindowExtMacOS::set_fullscreen_auxiliary / WindowExtMacOS::fullscreen_auxiliary, allowing a window to be shown on the same Space as a fullscreen window (NSWindowCollectionBehaviorFullScreenAuxiliary) instead of triggering a Space switch or Split View tiling.
  • Add WindowEvent::PointerButton::is_macos_activation_click. On macOS, both the press and matching release of a click that activated a previously inactive window are tagged, so applications can ignore activation clicks for buttons or destructive actions while accepting them for low-risk actions like selection or scrolling. Always false on other platforms.
  • winit::event_loop::EventLoopProvider trait with common event loop methods.

Changed

  • Mark the extensible public enums as #[non_exhaustive]: StartCause, WindowEvent, DeviceEvent, Ime, PointerKind, PointerSource, ButtonSource, NativeKey, NativeKeyCode, CustomCursorSource, TypeHint, SendData, DndAction, ImeRequest, BadIcon, BadImage, BadAnimation, ImeSurroundingTextError, MouseScrollDelta, and Fullscreen.

    When matching on one of these types, add a wildcard arm to cover variants added in the future:

    match event {
        WindowEvent::CloseRequested => (),
        // ...

... (truncated)

Commits
  • 7d20408 Winit version 0.31.0-beta.3
  • e092023 macOS: implement set_blur using NSVisualEffectView
  • 9c2eea4 x11: fix crash when XInput 2 is unavailable
  • c4028d9 win32: Copy icon pixels to BGRA instead of mutating the shared buffer
  • 8282e8c winit-x11: don't classify VM tablet pointers as pens
  • e6ceba8 macOS: defer native transitions during event handling
  • a7b8c2a macOS: resample deferred macOS surface resize events
  • 06d449d winit-wayland: add new font backends
  • 3d6782d fix(macos): NSTextInputClient IME commit flow
  • e61b3c9 Popup anchor system refinement (#4646)
  • Additional commits viewable in compare view

Updates xcursor from 0.3.10 to 0.3.11

Commits

Updates futures-util from 0.3.33 to 0.3.34

Release notes

Sourced from futures-util's releases.

0.3.34

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

Sourced from futures-util's changelog.

0.3.34 - 2026-08-11

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

Updates pipewire from 0.10.0 to 0.10.1

Updates libspa from 0.10.0 to 0.10.1

Updates libspa-sys from 0.10.0 to 0.10.1

Updates thiserror from 2.0.19 to 2.0.20

Release notes

Sourced from thiserror's releases.

2.0.20

  • Suppress redundant_field_names clippy lint in generated code (#454)
Commits

Updates rkyv from 0.8.17 to 0.8.18

Commits

Updates flexi_logger from 0.31.9 to 0.31.10

Changelog

Sourced from flexi_logger's changelog.

[0.31.10] - 2026-08-06

Allow tests to run even when the current directory is not writable, by switching to std::env::temp_dir() (modified PR #206, kudos to sudipm-mukherjee).

Commits

Updates cairo-rs from 0.22.0 to 0.22.9

Release notes

Sourced from cairo-rs's releases.

0.22.9

Bilal Elmoussaoui:
      Bump syn to 3.0

Sebastian Dröge:
Update gir / gir-files
Regenerate with latest gir / gir-files
Fix some Rust 1.97 clippy warnings
deny: Allow duplicated syn 2.0 dependency
cairo-sys: Update to system-deps 8
pango: Add new enums
pango: Add bindings for new width attribute
pangocairo: Add new pango RenderComponent API
pango: Add v1_58 feature
pangocairo: Mark cairo context parameter as const
gio: Manually implement new UnixFDList API with correct types
glib: Add new nanosecond timeout source API
glib-macros: Use TypeFlags::empty() instead of ::NONE
glib: Use RegexMatchFlags::empty() instead of DEFAULT
gio: Only require gio 2.89 for v2_90
gio: Only return the result from spawn_blocking() from the task completion callback
glib: Drain any remaining, pending sources after MainContext::block_on()
gio: Fix new 1.98 clippy warning
cairo: Update to system-deps 9
Update Cargo.lock
deny: Remove syn 2 override
glib: Re-add default flags member for RegexMatchFlags / RegexCompileFlags without version guard
Update versions to 0.22.9

Sophie Herold:
security: Update crossbeam-epoch to 0.9.20

Yang Lin:
fix: g_free alignments return from pango_tab_array_get_tabs
fix: call g_free on the return value of g_filename_from_utf8 after the end of its lifetime
fix: Pack the return value early so that the rustc compiler can generate the drop glue on the error path when matches!(status, err)
fix: definitely memory leak happens on the paths of from_glib_none and from_glib_full

Zachary S:
glib: Use Ref(Mut)::filter_map in BoxedAnyObject::try_borrow(_mut).

Ángel Guzmán Maeso:
gio: Don't require the arguments of run() to be valid UTF-8

0.22.8

Alba Mendez:
      fix typo in ObjectExt::property_value docs
</tr></table> 

... (truncated)

Commits
  • 00a448f glib: Re-add default flags member for RegexMatchFlags / RegexCompileFlags wit...
  • c0ce5d1 deny: Remove syn 2 override
  • 1269a10 Update Cargo.lock
  • 84936e9 cairo: Update to system-deps 9
  • fa1e1f8 fix: definitely memory leak happens on the paths of from_glib_none and
  • ac6dcaa fix: Pack the return value early so that the rustc
  • 59869b2 fix: call g_free on the return value of g_filename_from_utf8 after
  • 2b828d7 fix: g_free alignments return from pango_tab_array_get_tabs
  • e2c8591 gio: Fix new 1.98 clippy warning
  • cdd4189 gio: Don't require the arguments of run() to be valid UTF-8
  • Additional commits viewable in compare view

Updates pango from 0.22.8 to 0.22.9

Release notes

Sourced from pango's releases.

0.22.9

Bilal Elmoussaoui:
      Bump syn to 3.0

Sebastian Dröge:
Update gir / gir-files
Regenerate with latest gir / gir-files
Fix some Rust 1.97 clippy warnings
deny: Allow duplicated syn 2.0 dependency
cairo-sys: Update to system-deps 8
pango: Add new enums
pango: Add bindings for new width attribute
pangocairo: Add new pango RenderComponent API
pango: Add v1_58 feature
pangocairo: Mark cairo context parameter as const
gio: Manually implement new UnixFDList API with correct types
glib: Add new nanosecond timeout source API
glib-macros: Use TypeFlags::empty() instead of ::NONE
glib: Use RegexMatchFlags::empty() instead of DEFAULT
gio: Only require gio 2.89 for v2_90
gio: Only return the result from spawn_blocking() from the task completion callback
glib: Drain any remaining, pending sources after MainContext::block_on()
gio: Fix new 1.98 clippy warning
cairo: Update to system-deps 9
Update Cargo.lock
deny: Remove syn 2 override
glib: Re-add default flags member for RegexMatchFlags / RegexCompileFlags without version guard
Update versions to 0.22.9

Sophie Herold:
security: Update crossbeam-epoch to 0.9.20

Yang Lin:
fix: g_free alignments return from pango_tab_array_get_tabs
fix: call g_free on the return value of g_filename_from_utf8 after the end of its lifetime
fix: Pack the return value early so that the rustc compiler can generate the drop glue on the error path when matches!(status, err)
fix: definitely memory leak happens on the paths of from_glib_none and from_glib_full

Zachary S:
glib: Use Ref(Mut)::filter_map in BoxedAnyObject::try_borrow(_mut).

Ángel Guzmán Maeso:
gio: Don't require the arguments of run() to be valid UTF-8

Commits
  • 00a448f glib: Re-add default flags member for RegexMatchFlags / RegexCompileFlags wit...
  • c0ce5d1 deny: Remove syn 2 override
  • 1269a10 Update Cargo.lock
  • 84936e9 cairo: Update to system-deps 9
  • fa1e1f8 fix: definitely memory leak happens on the paths of from_glib_none and
  • ac6dcaa fix: Pack the return value early so that the rustc
  • 59869b2 fix: call g_free on the return value of g_filename_from_utf8 after
  • 2b828d7 fix: g_free alignments return from pango_tab_array_get_tabs
  • e2c8591 gio: Fix new 1.98 clippy warning
  • cdd4189 gio: Don't require the arguments of run() to be valid UTF-8
  • Additional commits viewable in compare view

Updates pangocairo from 0.22.8 to 0.22.9

Release notes

Sourced from pangocairo's releases.

0.22.9

Bilal Elmoussaoui:
      Bump syn to 3.0

Sebastian Dröge:
Update gir / gir-files
Regenerate with latest gir / gir-files
Fix some Rust 1.97 clippy warnings
deny: Allow duplicated syn 2.0 dependency
cairo-sys: Update to system-deps 8
pango: Add new enums
pango: Add bindings for new width attribute
pangocairo: Add new pango RenderComponent API
pango: Add v1_58 feature
pangocairo: Mark cairo context parameter as const
gio: Manually implement new UnixFDList API with correct types
glib: Add new nanosecond timeout source API
glib-macros: Use TypeFlags::empty() instead of ::NONE
glib: Use RegexMatchFlags::empty() instead of DEFAULT
gio: Only require gio 2.89 for v2_90
gio: Only return the result from spawn_blocking() from the task completion callback
glib: Drain any remaining, pending sources after MainContext::block_on()
gio: Fix new 1.98 clippy warning
cairo: Update to system-deps 9
Update Cargo.lock
deny: Remove syn 2 override
glib: Re-add default flags member for RegexMatchFlags / RegexCompileFlags without version guard
Update versions to 0.22.9

Sophie Herold:
security: Update crossbeam-epoch to 0.9.20

Yang Lin:
fix: g_free alignments return from pango_tab_array_get_tabs
fix: call g_free on the return value of g_filename_from_utf8 after the end of its lifetime
fix: Pack the return value early so that the rustc compiler can generate the drop glue on the error path when matches!(status, err)
fix: definitely memory leak happens on the paths of from_glib_none and from_glib_full

Zachary S:
glib: Use Ref(Mut)::filter_map in BoxedAnyObject::try_borrow(_mut).

Ángel Guzmán Maeso:
gio: Don't require the arguments of run() to be valid UTF-8

Commits
  • 00a448f glib: Re-add default flags member for RegexMatchFlags / RegexCompileFlags wit...
  • c0ce5d1 deny: Remove syn 2 override
  • 1269a10 Update Cargo.lock
  • 84936e9 cairo: Update to system-deps 9
  • fa1e1f8 fix: definitely memory leak happens on the paths of from_glib_none and
  • ac6dcaa fix: Pack the return value early so that the rustc
  • 59869b2 fix: call g_free on the return value of g_filename_from_utf8 after
  • 2b828d7 fix: g_free alignments return from pango_tab_array_get_tabs
  • e2c8591 gio: Fix new 1.98 clippy warning
  • cdd4189 gio: Don't require the arguments of run() to be valid UTF-8
  • Additional commits viewable in compare view

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 Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…updates

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

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.6.4` | `4.6.6` |
| [log](https://github.com/rust-lang/log) | `0.4.33` | `0.4.34` |
| [alsa](https://github.com/diwic/alsa-rs) | `0.12.0` | `0.12.1` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.13.1` | `2.13.2` |
| [winit](https://github.com/rust-windowing/winit) | `0.31.0-beta.2` | `0.31.0-beta.3` |
| [xcursor](https://github.com/esposm03/xcursor-rs) | `0.3.10` | `0.3.11` |
| [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| pipewire | `0.10.0` | `0.10.1` |
| libspa | `0.10.0` | `0.10.1` |
| libspa-sys | `0.10.0` | `0.10.1` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.19` | `2.0.20` |
| [rkyv](https://github.com/rkyv/rkyv) | `0.8.17` | `0.8.18` |
| [flexi_logger](https://github.com/emabee/flexi_logger) | `0.31.9` | `0.31.10` |
| [cairo-rs](https://github.com/gtk-rs/gtk-rs-core) | `0.22.0` | `0.22.9` |
| [pango](https://github.com/gtk-rs/gtk-rs-core) | `0.22.8` | `0.22.9` |
| [pangocairo](https://github.com/gtk-rs/gtk-rs-core) | `0.22.8` | `0.22.9` |



Updates `clap` from 4.6.4 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.4...clap_complete-v4.6.6)

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 `alsa` from 0.12.0 to 0.12.1
- [Commits](diwic/alsa-rs@v0.12.0...v0.12.1)

Updates `bitflags` from 2.13.1 to 2.13.2
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.13.1...2.13.2)

Updates `winit` from 0.31.0-beta.2 to 0.31.0-beta.3
- [Release notes](https://github.com/rust-windowing/winit/releases)
- [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/winit@v0.31.0-beta.2...v0.31.0-beta.3)

Updates `xcursor` from 0.3.10 to 0.3.11
- [Commits](https://github.com/esposm03/xcursor-rs/commits)

Updates `futures-util` from 0.3.33 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.33...0.3.34)

Updates `pipewire` from 0.10.0 to 0.10.1

Updates `libspa` from 0.10.0 to 0.10.1

Updates `libspa-sys` from 0.10.0 to 0.10.1

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

Updates `rkyv` from 0.8.17 to 0.8.18
- [Release notes](https://github.com/rkyv/rkyv/releases)
- [Commits](rkyv/rkyv@0.8.17...0.8.18)

Updates `flexi_logger` from 0.31.9 to 0.31.10
- [Release notes](https://github.com/emabee/flexi_logger/releases)
- [Changelog](https://github.com/emabee/flexi_logger/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emabee/flexi_logger/commits)

Updates `cairo-rs` from 0.22.0 to 0.22.9
- [Release notes](https://github.com/gtk-rs/gtk-rs-core/releases)
- [Changelog](https://github.com/gtk-rs/gtk-rs-core/blob/main/CHANGELOG.md)
- [Commits](gtk-rs/gtk-rs-core@0.22.0...0.22.9)

Updates `pango` from 0.22.8 to 0.22.9
- [Release notes](https://github.com/gtk-rs/gtk-rs-core/releases)
- [Changelog](https://github.com/gtk-rs/gtk-rs-core/blob/main/CHANGELOG.md)
- [Commits](gtk-rs/gtk-rs-core@0.22.8...0.22.9)

Updates `pangocairo` from 0.22.8 to 0.22.9
- [Release notes](https://github.com/gtk-rs/gtk-rs-core/releases)
- [Changelog](https://github.com/gtk-rs/gtk-rs-core/blob/main/CHANGELOG.md)
- [Commits](gtk-rs/gtk-rs-core@0.22.8...0.22.9)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: log
  dependency-version: 0.4.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: alsa
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: bitflags
  dependency-version: 2.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: winit
  dependency-version: 0.31.0-beta.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: xcursor
  dependency-version: 0.3.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: futures-util
  dependency-version: 0.3.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: pipewire
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: libspa
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: libspa-sys
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: thiserror
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: rkyv
  dependency-version: 0.8.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: flexi_logger
  dependency-version: 0.31.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: cairo-rs
  dependency-version: 0.22.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: pango
  dependency-version: 0.22.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
- dependency-name: pangocairo
  dependency-version: 0.22.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, rust. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants