Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the all group across 1 directory with 75 updates #287

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps the all group with 61 updates in the /src-tauri directory:

Package From To
serde_json 1.0.128 1.0.133
serde 1.0.210 1.0.215
tauri 1.8.0 1.8.1
tauri-build 1.5.5 2.0.3
anyhow 1.0.89 1.0.94
bstr 1.10.0 1.11.0
bytemuck 1.18.0 1.20.0
bytes 1.7.2 1.9.0
cc 1.1.23 1.2.3
chrono 0.4.38 0.4.39
cpufeatures 0.2.14 0.2.16
ctor 0.2.8 0.2.9
embed-resource 2.5.0 2.5.1
encoding_rs 0.8.34 0.8.35
errno 0.3.9 0.3.10
event-listener-strategy 0.5.2 0.5.3
fastrand 2.1.1 2.3.0
fdeflate 0.3.5 0.3.7
flate2 1.0.34 1.0.35
futures-core 0.3.30 0.3.31
futures-io 0.3.30 0.3.31
futures-lite 2.3.0 2.5.0
futures-sink 0.3.30 0.3.31
futures-task 0.3.30 0.3.31
futures-util 0.3.30 0.3.31
httparse 1.9.4 1.9.5
hyper 0.14.30 0.14.31
ipnet 2.10.0 2.10.1
libc 0.2.159 0.2.168
libloading 0.8.5 0.8.6
mio 1.0.2 1.0.3
object 0.36.4 0.36.5
once_cell 1.20.1 1.20.2
openssl 0.10.66 0.10.68
os_info 3.8.2 3.9.0
pathdiff 0.2.1 0.2.3
pin-project-lite 0.2.14 0.2.15
png 0.17.14 0.17.15
regex 1.10.6 1.11.1
rustix 0.38.37 0.38.42
rustversion 1.0.17 1.0.18
security-framework-sys 2.12.0 2.12.1
serde_with 3.9.0 3.11.0
socket2 0.5.7 0.5.8
sys-locale 0.3.1 0.3.2
tar 0.4.42 0.4.43
tempfile 3.11.0 3.14.0
thiserror 1.0.64 1.0.69
time 0.3.36 0.3.37
tokio 1.40.0 1.42.0
tokio-util 0.7.12 0.7.13
tracing 0.1.40 0.1.41
tracing-subscriber 0.3.18 0.3.19
tree_magic_mini 3.1.5 3.1.6
unicode-bidi 0.3.15 0.3.17
unicode-ident 1.0.13 1.0.14
url 2.5.2 2.5.4
uuid 1.10.0 1.11.0
wasm-bindgen 0.2.93 0.2.99
wasm-streams 0.4.1 0.4.2
wayland-client 0.31.6 0.31.7

Updates serde_json from 1.0.128 to 1.0.133

Release notes

Sourced from serde_json's releases.

v1.0.133

  • Implement From<[T; N]> for serde_json::Value (#1215)

v1.0.132

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#1206)

v1.0.131

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#1135, thanks @​swlynch99)

v1.0.130

  • Support converting and deserializing Number from i128 and u128 (#1141, thanks @​druide)

v1.0.129

Commits
  • 0903de4 Release 1.0.133
  • 2b65ca0 Merge pull request #1215 from dtolnay/fromarray
  • 4e5f985 Implement From<[T; N]> for Value
  • 2ccb5b6 Disable question_mark clippy lint in lexical test
  • a11f5f2 Resolve unnecessary_map_or clippy lints
  • 07f280a Wrap PR 1213 to 80 columns
  • 75ed447 Merge pull request #1213 from djmitche/safety-comment
  • 73011c0 Add a safety comment to unsafe block
  • be2198a Prevent upload-artifact step from causing CI failure
  • 7cce517 Raise minimum version for preserve_order feature to Rust 1.65
  • Additional commits viewable in compare view

Updates serde from 1.0.210 to 1.0.215

Release notes

Sourced from serde's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates tauri from 1.8.0 to 1.8.1

Release notes

Sourced from tauri's releases.

tauri v1.8.1

Updating crates.io index Locking 592 packages to latest compatible versions Adding atk v0.15.1 (latest: v0.18.0) Adding atk-sys v0.15.1 (latest: v0.18.0) Adding base64 v0.13.1 (latest: v0.22.1) Adding base64 v0.21.7 (latest: v0.22.1) Adding bit-set v0.5.3 (latest: v0.8.0) Adding bit-vec v0.6.3 (latest: v0.8.0) Adding bitflags v1.3.2 (latest: v2.6.0) Adding brotli v6.0.0 (latest: v7.0.0) Adding cairo-rs v0.15.12 (latest: v0.20.1) Adding cairo-sys-rs v0.15.1 (latest: v0.20.0) Adding cargo_toml v0.15.3 (latest: v0.20.5) Adding cfb v0.7.3 (latest: v0.10.0) Adding cfg-expr v0.9.1 (latest: v0.17.0) Adding cfg-expr v0.15.8 (latest: v0.17.0) Adding cfg_aliases v0.1.1 (latest: v0.2.1) Adding clap v3.2.25 (latest: v4.5.20) Adding clap_lex v0.2.4 (latest: v0.7.2) Adding cocoa v0.24.1 (latest: v0.26.0) Adding cocoa-foundation v0.1.2 (latest: v0.2.0) Adding convert_case v0.4.0 (latest: v0.6.0) Adding core-foundation v0.9.4 (latest: v0.10.0) Adding core-graphics v0.22.3 (latest: v0.24.0) Adding core-graphics v0.23.2 (latest: v0.24.0) Adding core-graphics-types v0.1.3 (latest: v0.2.0) Adding cssparser v0.27.2 (latest: v0.34.0) Adding derive-new v0.6.0 (latest: v0.7.0) Adding derive_more v0.99.18 (latest: v1.0.0) Adding env_logger v0.8.4 (latest: v0.11.5) Adding fixedbitset v0.4.2 (latest: v0.5.7) Adding fluent-uri v0.1.4 (latest: v0.3.2) Adding foreign-types v0.3.2 (latest: v0.5.0) Adding foreign-types-shared v0.1.1 (latest: v0.3.1) Adding freetype-sys v0.20.1 (latest: v0.22.1) Adding gdk v0.15.4 (latest: v0.18.0) Adding gdk-pixbuf v0.15.11 (latest: v0.20.4) Adding gdk-pixbuf-sys v0.15.10 (latest: v0.20.4) Adding gdk-sys v0.15.1 (latest: v0.18.0) Adding gdkwayland-sys v0.15.3 (latest: v0.18.0) Adding gdkx11-sys v0.15.1 (latest: v0.18.0) Adding generator v0.7.5 (latest: v0.8.3) Adding generic-array v0.14.7 (latest: v1.1.0) Adding gethostname v0.4.3 (latest: v0.5.0) Adding getrandom v0.1.16 (latest: v0.2.15) Adding gio v0.15.12 (latest: v0.20.4) Adding gio-sys v0.15.10 (latest: v0.20.4) Adding glib v0.15.12 (latest: v0.20.4) Adding glib-macros v0.15.13 (latest: v0.20.4)

... (truncated)

Commits

Updates tauri-build from 1.5.5 to 2.0.3

Release notes

Sourced from tauri-build's releases.

tauri-build v2.0.3

Updating git repository `https://github.com/tauri-apps/schemars.git`
    Updating crates.io index
     Locking 1051 packages to latest compatible versions
      Adding ahash v0.7.8 (latest: v0.8.11)
      Adding aligned-vec v0.5.0 (latest: v0.6.1)
      Adding app-store-connect v0.5.0 (latest: v0.6.0)
      Adding apple-bundles v0.19.0 (latest: v0.20.0)
      Adding apple-codesign v0.27.0 (latest: v0.28.0)
      Adding apple-flat-package v0.18.0 (latest: v0.19.0)
      Adding apple-xar v0.18.0 (latest: v0.19.0)
      Adding asn1-rs v0.5.2 (latest: v0.6.2)
      Adding asn1-rs-derive v0.4.0 (latest: v0.5.1)
      Adding asn1-rs-impl v0.1.0 (latest: v0.2.0)
      Adding base16ct v0.1.1 (latest: v0.2.0)
      Adding base64 v0.13.1 (latest: v0.22.1)
      Adding base64 v0.21.7 (latest: v0.22.1)
      Adding bit-set v0.5.3 (latest: v0.8.0)
      Adding bit-vec v0.6.3 (latest: v0.8.0)
      Adding bitfield v0.14.0 (latest: v0.17.0)
      Adding bitflags v1.3.2 (latest: v2.6.0)
      Adding bytecheck v0.6.12 (latest: v0.8.0)
      Adding bytecheck_derive v0.6.12 (latest: v0.8.0)
      Adding cairo-rs v0.18.5 (latest: v0.20.5)
      Adding cairo-sys-rs v0.18.2 (latest: v0.20.0)
      Adding cargo_toml v0.17.2 (latest: v0.20.5)
      Adding cfb v0.7.3 (latest: v0.10.0)
      Adding cfg-expr v0.15.8 (latest: v0.17.0)
      Adding convert_case v0.4.0 (latest: v0.6.0)
      Adding core-foundation v0.9.4 (latest: v0.10.0)
      Adding cpio-archive v0.9.0 (latest: v0.10.0)
      Adding crypto-bigint v0.4.9 (latest: v0.5.5)
      Adding cryptographic-message-syntax v0.26.0 (latest: v0.27.0)
      Adding cssparser v0.27.2 (latest: v0.34.0)
      Adding der v0.6.1 (latest: v0.7.9)
      Adding derive_more v0.99.18 (latest: v1.0.0)
      Adding ecdsa v0.14.8 (latest: v0.16.9)
      Adding elliptic-curve v0.12.3 (latest: v0.13.8)
      Adding embed-resource v2.5.1 (latest: v3.0.1)
      Adding encode_unicode v0.3.6 (latest: v1.0.0)
      Adding env_logger v0.8.4 (latest: v0.11.5)
      Adding env_logger v0.10.2 (latest: v0.11.5)
      Adding fancy-regex v0.13.0 (latest: v0.14.0)
      Adding ff v0.12.1 (latest: v0.13.0)
      Adding float-cmp v0.9.0 (latest: v0.10.0)
      Adding fluent-uri v0.1.4 (latest: v0.3.2)
</tr></table> 

... (truncated)

Commits

Updates anyhow from 1.0.89 to 1.0.94

Release notes

Sourced from anyhow's releases.

1.0.94

  • Documentation improvements

1.0.93

  • Update dev-dependencies to thiserror v2

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)

1.0.90

  • Documentation improvements
Commits
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • 8852dc3 Prevent upload-artifact from causing CI failure
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • Additional commits viewable in compare view

Updates bstr from 1.10.0 to 1.11.0

Commits
  • 41f8bdb 1.11.0
  • f679928 msrv: bump to Rust 1.73
  • 71e468c safety: introduce ALIGN_MASK based on core::mem::align_of
  • 77e5fd7 lint: fix elided_named_lifetimes warning on nightly
  • 6b713be impl: add PartialEq and PartialOrd instances for byte arrays [u8; N]
  • af99a6e impl: fix discrepancy in upper/lower case in impl fmt::Debug for BStr
  • 955fa16 lint: clippy::cast_lossless and clippy::unreadable_literal lints
  • 65018f6 lint: clippy::redundant_closure_for_method_calls lint violation
  • dee0d9a lint: clippy::cloned_instead_of_copied lint violation
  • c7f3d56 lint: clippy::range_plus_one lint violations
  • Additional commits viewable in compare view

Updates bytemuck from 1.18.0 to 1.20.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

1.20

  • New functions to allocate zeroed Arc and Rc. Requires Rust 1.82
  • TransparentWrapper impls for core::cmp::Reverse and core::num::Saturating.
  • internal: Simplified the library's fill_zeroes calls to write_bytes

1.19

  • Adds the #[track_caller] attribute to functions which may panic.

1.18

  • Adds the latest_stable_rust cargo feature, which is a blanket feature that turns all other features on that are both sound and compatible with Stable rust.

1.17.1

  • Adds #[repr(C)] to the union Transmute<A, B> type that's used internally for most of the transmutations.

1.17.0

  • Makes the must_cast versions of the by-value and by-ref casts be const. The mut ref cast is unaffected for now (mut references aren't yet stable in const fn). This increases the MSRV of using that particular feature from 1.57 to 1.64.

1.16.3

  • Fully described in Lokathor/bytemuck#256, This makes casting slices to/from ZST elements more consistent between the crate's core module and other modules.

1.16.2

  • Fixes potential UB where BoxBytes could attempt to free a dangling pointer if the Layout is zero sized. This type was introduced in 1.14.1, so that version and the others up to and including 1.16.1 are now yanked for safety.

1.16.1

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This activates the f16 and f128 nightly features, and then provides Zeroable and Pod impls for those types.

1.16.0

  • Adds a const_zeroed feature (MSRV 1.75) which puts a zeroed fn at the crate root. This is just like the Zeroable::zeroed method, but as a const fn.

... (truncated)

Commits

Updates bytes from 1.7.2 to 1.9.0

Release notes

Sourced from bytes's releases.

Bytes v1.9.0

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

  • Fix typo in Buf::chunk() comment (#744)

Internal changes

  • Replace BufMut::put with BufMut::put_slice in Writer impl (#745)
  • Rename hex_impl! to fmt_impl! and reuse it for fmt::Debug (#743)

Bytes 1.8.0

1.8.0 (October 21, 2024)

  • Guarantee address in split_off/split_to for empty slices (#740)
Changelog

Sourced from bytes's changelog.

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

  • Fix typo in Buf::chunk() comment (#744)

Internal changes

  • Replace BufMut::put with BufMut::put_slice in Writer impl (#745)
  • Rename hex_impl! to fmt_impl! and reuse it for fmt::Debug (#743)

1.8.0 (October 21, 2024)

  • Guarantee address in split_off/split_to for empty slices (#740)
Commits

Updates cargo_toml from 0.15.3 to 0.17.2

Commits

Updates cc from 1.1.23 to 1.2.3

Release notes

Sourced from cc's releases.

cc-v1.2.3

Other

  • Improve detection of environment when compiling from msbuild or msvc (#1310)
  • Better error message when failing on unknown targets (#1313)
  • Optimize RustcCodegenFlags (#1305)

cc-v1.2.2

Other

  • Inherit flags from rustc (#1279)
  • Add support for using sccache wrapper with cuda/nvcc (#1304)
  • Fix msvc stdout not shown on error (#1303)
  • Regenerate target info (#1301)
  • Fix compilation of C++ code for armv7-unknown-linux-gnueabihf (#1298)
  • Fetch target info from Cargo even if Build::target is manually set (#1299)
  • Fix two files with different extensions having the same object name (#1295)
  • Allow disabling cc's ability to compile via env var CC_FORCE_DISABLE (#1292)
  • Regenerate target info (#1293)

cc-v1.2.1

Other

  • When invoking cl -?, set stdin to null (#1288)

cc-v1.2.0

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)

cc-v1.1.37

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

cc-v1.1.36

Other

  • Fix CUDA build with clang++. (#1273)

cc-v1.1.35

Other

  • Remove support for FRC (#1268)

... (truncated)

Changelog

Sourced from cc's changelog.

1.2.3 - 2024-12-06

Other

  • Improve detection of environment when compiling from msbuild or msvc (#1310)
  • Better error message when failing on unknown targets (#1313)
  • Optimize RustcCodegenFlags (#1305)

1.2.2 - 2024-11-29

Other

  • Inherit flags from rustc (#1279)
  • Add support for using sccache wrapper with cuda/nvcc (#1304)
  • Fix msvc stdout not shown on error (#1303)
  • Regenerate target info (#1301)
  • Fix compilation of C++ code for armv7-unknown-linux-gnueabihf (#1298)
  • Fetch target info from Cargo even if Build::target is manually set (#1299)
  • Fix two files with different extensions having the same object name (#1295)
  • Allow disabling cc's ability to compile via env var CC_FORCE_DISABLE (#1292)
  • Regenerate target info (#1293)

1.2.1 - 2024-11-14

Other

  • When invoking cl -?, set stdin to null (#1288)

1.2.0 - 2024-11-11

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)

1.1.37 - 2024-11-08

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

1.1.36 - 2024-11-05

Other

... (truncated)

Commits

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates cpufeatures from 0.2.14 to 0.2.16

Commits

Updates ctor from 0.2.8 to 0.2.9

Commits

Updates embed-resource from 2.5.0 to 2.5.1

Commits
  • af3fed9 Bump version to 2.5.1
  • 7fa4ffa Use std::path::MAIN_SEPARATOR to join $OUT_DIR/lib$prefix.a on Win32 to fix b...
  • See full diff in compare view

Updates encoding_rs from 0.8.34 to 0.8.35

Commits
  • 2fa58ae Increment version number to 0.8.35
  • 375b374 Note the encoding repo revision used
  • e60a65a Update docs for GBK and gb18030
  • 7f62c7f Fix typo
  • 65e9eee Add release note
  • 471104f Restore PUA range check, add manual tests
  • 6a489c7 Make the GBK-range GB18030-2022 changes work
  • 2f1b14f Regenerate data for GB18030-2022 (tests fail)
  • acae064 Link to icu_normalizer instead of unic-normal
  • See full diff in compare view

Updates errno from 0.3.9 to 0.3.10

Release notes

Sourced from errno's releases.

v0.3.10

  • Update to windows-sys 0.59 #98

  • Support emscripten #100

  • Remove Bitrig support #99

Changelog

Sourced from errno's changelog.

[0.3.10] - 2024-11-29

  • Update to windows-sys 0.59 #98

  • Support emscripten #100

  • Remove Bitrig support #99

Commits

Updates event-listener-strategy from 0.5.2 to 0.5.3

Release notes

Sourced from event-listener-strategy's releases.

v0.5.3

  • Add loom feature that exposes event-listener's underlying loom feature. (#24)
Changelog

Sourced from event-listener-strategy's changelog.

Version 0.5.3

  • Add loom feature that exposes event-listener's underlying loom feature. (#24)
Commits

Updates fastrand from 2.1.1 to 2.3.0

Release notes

Sourced from fastrand's releases.

v2.3.0

  • Accept IntoIterator in choose_multiple functions instead of just Iterator. (#92)

v2.2.0

  • Expose missing fill method for the global RNG. (#90)
Changelog

Sourced from fastrand's changelog.

Version 2.3.0

  • Accept IntoIterator in choose_multiple functions instead of just Iterator. (#92)

Version 2.2.0

  • Expose missing fill method for the global RNG. (#90)
Commits
  • 8419f89 v2.3.0
  • 9c7ecd8 Revert "ci: Bump resolver to version 2" (#97)
  • 3789392 ci: Bump resolver to version 2
  • a69b481 Accept any IntoIterator in choose_multiple
  • 1b93479 v2.2.0
  • 8ad2283 ci: Use "v2.0.0" branch for security check (#91)
  • cfc0ab0 Update rustsec/audit-check branch name to main
  • 6dee614 Expose missing fill method in global_rng module
  • See full diff in compare view

Updates fdeflate from 0.3.5 to 0.3.7

ChangelogDescription has been truncated

Bumps the all group with 61 updates in the /src-tauri directory:

| Package | From | To |
| --- | --- | --- |
| [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.133` |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.215` |
| [tauri](https://github.com/tauri-apps/tauri) | `1.8.0` | `1.8.1` |
| [tauri-build](https://github.com/tauri-apps/tauri) | `1.5.5` | `2.0.3` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.89` | `1.0.94` |
| [bstr](https://github.com/BurntSushi/bstr) | `1.10.0` | `1.11.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.18.0` | `1.20.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.2` | `1.9.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.23` | `1.2.3` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.14` | `0.2.16` |
| [ctor](https://github.com/mmastrac/rust-ctor) | `0.2.8` | `0.2.9` |
| [embed-resource](https://github.com/nabijaczleweli/rust-embed-resource) | `2.5.0` | `2.5.1` |
| [encoding_rs](https://github.com/hsivonen/encoding_rs) | `0.8.34` | `0.8.35` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.9` | `0.3.10` |
| [event-listener-strategy](https://github.com/smol-rs/event-listener-strategy) | `0.5.2` | `0.5.3` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.1` | `2.3.0` |
| [fdeflate](https://github.com/image-rs/fdeflate) | `0.3.5` | `0.3.7` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.34` | `1.0.35` |
| [futures-core](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [futures-io](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [futures-lite](https://github.com/smol-rs/futures-lite) | `2.3.0` | `2.5.0` |
| [futures-sink](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [futures-task](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [httparse](https://github.com/seanmonstar/httparse) | `1.9.4` | `1.9.5` |
| [hyper](https://github.com/hyperium/hyper) | `0.14.30` | `0.14.31` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.10.0` | `2.10.1` |
| [libc](https://github.com/rust-lang/libc) | `0.2.159` | `0.2.168` |
| [libloading](https://github.com/nagisa/rust_libloading) | `0.8.5` | `0.8.6` |
| [mio](https://github.com/tokio-rs/mio) | `1.0.2` | `1.0.3` |
| [object](https://github.com/gimli-rs/object) | `0.36.4` | `0.36.5` |
| [once_cell](https://github.com/matklad/once_cell) | `1.20.1` | `1.20.2` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.66` | `0.10.68` |
| [os_info](https://github.com/stanislav-tkach/os_info) | `3.8.2` | `3.9.0` |
| [pathdiff](https://github.com/Manishearth/pathdiff) | `0.2.1` | `0.2.3` |
| [pin-project-lite](https://github.com/taiki-e/pin-project-lite) | `0.2.14` | `0.2.15` |
| [png](https://github.com/image-rs/image-png) | `0.17.14` | `0.17.15` |
| [regex](https://github.com/rust-lang/regex) | `1.10.6` | `1.11.1` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.37` | `0.38.42` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.17` | `1.0.18` |
| [security-framework-sys](https://github.com/kornelski/rust-security-framework) | `2.12.0` | `2.12.1` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.9.0` | `3.11.0` |
| [socket2](https://github.com/rust-lang/socket2) | `0.5.7` | `0.5.8` |
| [sys-locale](https://github.com/1Password/sys-locale) | `0.3.1` | `0.3.2` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.42` | `0.4.43` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.11.0` | `3.14.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `1.0.69` |
| [time](https://github.com/time-rs/time) | `0.3.36` | `0.3.37` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.42.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.12` | `0.7.13` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.40` | `0.1.41` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.18` | `0.3.19` |
| [tree_magic_mini](https://github.com/mbrubeck/tree_magic) | `3.1.5` | `3.1.6` |
| [unicode-bidi](https://github.com/servo/unicode-bidi) | `0.3.15` | `0.3.17` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.13` | `1.0.14` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.4` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.10.0` | `1.11.0` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.93` | `0.2.99` |
| [wasm-streams](https://github.com/MattiasBuelens/wasm-streams) | `0.4.1` | `0.4.2` |
| [wayland-client](https://github.com/smithay/wayland-rs) | `0.31.6` | `0.31.7` |



Updates `serde_json` from 1.0.128 to 1.0.133
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.128...v1.0.133)

Updates `serde` from 1.0.210 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.215)

Updates `tauri` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-v1.8.0...tauri-v1.8.1)

Updates `tauri-build` from 1.5.5 to 2.0.3
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-build-v1.5.5...tauri-build-v2.0.3)

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

Updates `bstr` from 1.10.0 to 1.11.0
- [Commits](BurntSushi/bstr@1.10.0...1.11.0)

Updates `bytemuck` from 1.18.0 to 1.20.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.18.0...v1.20.0)

Updates `bytes` from 1.7.2 to 1.9.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.7.2...v1.9.0)

Updates `cargo_toml` from 0.15.3 to 0.17.2
- [Commits](https://gitlab.com/lib.rs/cargo_toml/commits/main)

Updates `cc` from 1.1.23 to 1.2.3
- [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.1.23...cc-v1.2.3)

Updates `chrono` from 0.4.38 to 0.4.39
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.38...v0.4.39)

Updates `cpufeatures` from 0.2.14 to 0.2.16
- [Commits](RustCrypto/utils@cpufeatures-v0.2.14...cpufeatures-v0.2.16)

Updates `ctor` from 0.2.8 to 0.2.9
- [Commits](https://github.com/mmastrac/rust-ctor/commits)

Updates `embed-resource` from 2.5.0 to 2.5.1
- [Release notes](https://github.com/nabijaczleweli/rust-embed-resource/releases)
- [Commits](nabijaczleweli/rust-embed-resource@v2.5.0...v2.5.1)

Updates `encoding_rs` from 0.8.34 to 0.8.35
- [Commits](hsivonen/encoding_rs@v0.8.34...v0.8.35)

Updates `errno` from 0.3.9 to 0.3.10
- [Release notes](https://github.com/lambda-fairy/rust-errno/releases)
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](lambda-fairy/rust-errno@v0.3.9...v0.3.10)

Updates `event-listener-strategy` from 0.5.2 to 0.5.3
- [Release notes](https://github.com/smol-rs/event-listener-strategy/releases)
- [Changelog](https://github.com/smol-rs/event-listener-strategy/blob/main/CHANGELOG.md)
- [Commits](smol-rs/event-listener-strategy@v0.5.2...v0.5.3)

Updates `fastrand` from 2.1.1 to 2.3.0
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](smol-rs/fastrand@v2.1.1...v2.3.0)

Updates `fdeflate` from 0.3.5 to 0.3.7
- [Changelog](https://github.com/image-rs/fdeflate/blob/main/CHANGES.md)
- [Commits](image-rs/fdeflate@v0.3.5...v0.3.7)

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

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

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

Updates `futures-lite` from 2.3.0 to 2.5.0
- [Release notes](https://github.com/smol-rs/futures-lite/releases)
- [Changelog](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md)
- [Commits](smol-rs/futures-lite@v2.3.0...v2.5.0)

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

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

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

Updates `httparse` from 1.9.4 to 1.9.5
- [Release notes](https://github.com/seanmonstar/httparse/releases)
- [Commits](seanmonstar/httparse@v1.9.4...v1.9.5)

Updates `hyper` from 0.14.30 to 0.14.31
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/v0.14.31/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.30...v0.14.31)

Updates `ipnet` from 2.10.0 to 2.10.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)

Updates `libc` from 0.2.159 to 0.2.168
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.168/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.159...0.2.168)

Updates `libloading` from 0.8.5 to 0.8.6
- [Commits](nagisa/rust_libloading@0.8.5...0.8.6)

Updates `mio` from 1.0.2 to 1.0.3
- [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.0.2...v1.0.3)

Updates `object` from 0.36.4 to 0.36.5
- [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/object@0.36.4...0.36.5)

Updates `once_cell` from 1.20.1 to 1.20.2
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.20.1...v1.20.2)

Updates `openssl` from 0.10.66 to 0.10.68
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-v0.10.66...openssl-v0.10.68)

Updates `openssl-sys` from 0.9.103 to 0.9.104
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-sys-v0.9.103...openssl-sys-v0.9.104)

Updates `os_info` from 3.8.2 to 3.9.0
- [Release notes](https://github.com/stanislav-tkach/os_info/releases)
- [Changelog](https://github.com/stanislav-tkach/os_info/blob/master/CHANGELOG.md)
- [Commits](stanislav-tkach/os_info@v3.8.2...v3.9.0)

Updates `pathdiff` from 0.2.1 to 0.2.3
- [Commits](https://github.com/Manishearth/pathdiff/commits)

Updates `pin-project-lite` from 0.2.14 to 0.2.15
- [Release notes](https://github.com/taiki-e/pin-project-lite/releases)
- [Changelog](https://github.com/taiki-e/pin-project-lite/blob/main/CHANGELOG.md)
- [Commits](taiki-e/pin-project-lite@v0.2.14...v0.2.15)

Updates `png` from 0.17.14 to 0.17.15
- [Changelog](https://github.com/image-rs/image-png/blob/master/CHANGES.md)
- [Commits](image-rs/image-png@v0.17.14...v0.17.15)

Updates `proc-macro2` from 1.0.86 to 1.0.92
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.86...1.0.92)

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

Updates `rustix` from 0.38.37 to 0.38.42
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.37...v0.38.42)

Updates `rustversion` from 1.0.17 to 1.0.18
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.17...1.0.18)

Updates `security-framework-sys` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/kornelski/rust-security-framework/releases)
- [Commits](https://github.com/kornelski/rust-security-framework/commits)

Updates `serde_derive` from 1.0.210 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.215)

Updates `serde_with` from 3.9.0 to 3.11.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.9.0...v3.11.0)

Updates `serde_with_macros` from 3.9.0 to 3.11.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.9.0...v3.11.0)

Updates `socket2` from 0.5.7 to 0.5.8
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/socket2/commits)

Updates `sys-locale` from 0.3.1 to 0.3.2
- [Release notes](https://github.com/1Password/sys-locale/releases)
- [Changelog](https://github.com/1Password/sys-locale/blob/main/CHANGELOG.md)
- [Commits](1Password/sys-locale@v0.3.1...v0.3.2)

Updates `tar` from 0.4.42 to 0.4.43
- [Commits](alexcrichton/tar-rs@0.4.42...0.4.43)

Updates `tempfile` from 3.11.0 to 3.14.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.11.0...v3.14.0)

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

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

Updates `time` from 0.3.36 to 0.3.37
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.36...v0.3.37)

Updates `time-macros` from 0.2.18 to 0.2.19
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.2.18...v0.2.19)

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

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

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

Updates `tracing-attributes` from 0.1.27 to 0.1.28
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-attributes-0.1.27...tracing-attributes-0.1.28)

Updates `tracing-core` from 0.1.32 to 0.1.33
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-core-0.1.32...tracing-core-0.1.33)

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

Updates `tree_magic_mini` from 3.1.5 to 3.1.6
- [Release notes](https://github.com/mbrubeck/tree_magic/releases)
- [Changelog](https://github.com/mbrubeck/tree_magic/blob/mini/CHANGELOG.md)
- [Commits](mbrubeck/tree_magic@v3.1.5...v3.1.6)

Updates `unicode-bidi` from 0.3.15 to 0.3.17
- [Release notes](https://github.com/servo/unicode-bidi/releases)
- [Commits](servo/unicode-bidi@v0.3.15...v0.3.17)

Updates `unicode-ident` from 1.0.13 to 1.0.14
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.13...1.0.14)

Updates `url` from 2.5.2 to 2.5.4
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.2...v2.5.4)

Updates `uuid` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.10.0...1.11.0)

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

Updates `wasm-bindgen-backend` from 0.2.93 to 0.2.99
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.93...0.2.99)

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

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

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

Updates `wasm-streams` from 0.4.1 to 0.4.2
- [Release notes](https://github.com/MattiasBuelens/wasm-streams/releases)
- [Changelog](https://github.com/MattiasBuelens/wasm-streams/blob/main/CHANGELOG.md)
- [Commits](MattiasBuelens/wasm-streams@v0.4.1...v0.4.2)

Updates `wayland-client` from 0.31.6 to 0.31.7
- [Release notes](https://github.com/smithay/wayland-rs/releases)
- [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md)
- [Commits](https://github.com/smithay/wayland-rs/commits)

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

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-build
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: anyhow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: bstr
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: bytemuck
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: bytes
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: cargo_toml
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: chrono
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ctor
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: embed-resource
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: encoding_rs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: errno
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: event-listener-strategy
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: fastrand
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: fdeflate
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: flate2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: futures-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: futures-io
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: futures-lite
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: futures-sink
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: futures-task
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: futures-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: httparse
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: hyper
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ipnet
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: libloading
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: mio
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: object
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: once_cell
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: openssl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: openssl-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: os_info
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pathdiff
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pin-project-lite
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: png
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: regex
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rustversion
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: security-framework-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_with
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: serde_with_macros
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: socket2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sys-locale
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tar
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tempfile
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: time
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: time-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tokio
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tokio-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tracing
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tracing-attributes
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tracing-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tracing-subscriber
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tree_magic_mini
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: unicode-bidi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: url
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: uuid
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: wasm-bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasm-bindgen-backend
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasm-bindgen-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasm-bindgen-macro-support
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasm-bindgen-shared
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasm-streams
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wayland-client
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: web-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
...

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 Dec 9, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 16, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 16, 2024
@dependabot dependabot bot deleted the dependabot/cargo/src-tauri/all-deb79d3e63 branch December 16, 2024 13:44
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