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 79 updates #289

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
serde_json 1.0.128 1.0.133
serde 1.0.210 1.0.216
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.1
bytemuck 1.18.0 1.20.0
bytes 1.7.2 1.9.0
cc 1.1.23 1.2.4
chrono 0.4.38 0.4.39
cpufeatures 0.2.14 0.2.16
crossbeam-channel 0.5.13 0.5.14
crossbeam-deque 0.8.5 0.8.6
crossbeam-utils 0.8.20 0.8.21
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
semver 1.0.23 1.0.24
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.216

Release notes

Sourced from serde's releases.

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)

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
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • 9497463 Mark all generated trait impls as #[automatically_derived]
  • 46e9ecf Merge pull request #2866 from tdittr/mark-visitors-as-generated
  • e9c399c Mark generated impl de::Visitor blocks as #[automatically_derived]
  • b9dbfcb Switch out fnv in favor of foldhash in test
  • c270e27 Use BuildHasher instead of Hasher in collection macros
  • 0307f60 Resolve question_mark clippy lint in build script
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 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.1

Commits
  • de55623 1.11.1
  • 979b343 cargo: exclude Unicode data files
  • 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
  • Additional commits viewable in compare view

Updates bytemuck from 1.18.0 to 1.20.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

Unreleased

  • Implement Pod and Zeroable for core::arch::{x86, x86_64}::__m512, __m512d and __m512i without nightly. Requires Rust 1.72, and is gated through the avx512_simd cargo feature.

  • Allow the use of must_cast_mut and must_cast_slice_mut in const contexts. Requires Rust 1.83, and is gated through the must_cast_extra cargo feature.

  • internal: introduced the maybe_const_fn macro that allows defining some function to be const depending upon some cfg predicate.

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.

... (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.4

Release notes

Sourced from cc's releases.

cc-v1.2.4

Other

  • Add support for C/C++ compiler for Neutrino QNX: qcc (#1319)
  • use -maix64 instead of -m64 (#1307)

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

... (truncated)

Changelog

Sourced from cc's changelog.

1.2.4 - 2024-12-13

Other

  • Add support for C/C++ compiler for Neutrino QNX: qcc (#1319)
  • use -maix64 instead of -m64 (#1307)

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

... (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 crossbeam-channel from 0.5.13 to 0.5.14

Release notes

Sourced from crossbeam-channel's releases.

crossbeam-channel 0.5.14

  • Fix stack overflow when sending large value to unbounded channel. (#1146, #1147)
  • Add Select::new_biased function. (#1150)
  • Remove inefficient spinning. (#1154)
  • Suppress buggy clippy::zero_repeat_side_effects lint in macro generated code. (#1123)
Commits
  • ccd83ac Prepare for the next release
  • 54988eb Calculate layout in const context
  • 761d0b6 Port #1146 & #1147 to deque::Injector and queue::SegQueue
  • 8144fbb Remove optimistic spinning from Context::wait_until
  • a92f6c4 Bump peter-evans/create-pull-request from 5 to 7 (#1153)
  • 66d41a9 channel: Add new_biased constructor for biased channel selection (#1150)
  • d0d0a80 CachePadded: Use 128-byte alignment on arm64ec
  • f757eef Add comment about fixed rustc bug
  • 71d8bb0 ci: Update minimum tested Rust version to 1.63
  • 5092a9b ci: Clean up no_atomic.sh
  • Additional commits viewable in compare view

Updates crossbeam-deque from 0.8.5 to 0.8.6

Release notes

Sourced from crossbeam-deque's releases.

crossbeam-deque 0.8.6

  • Fix stack overflow when pushing large value to Injector. (#1146, #1147, #1159)
Commits
  • ccd83ac Prepare for the next release
  • 54988eb Calculate layout in const context
  • 761d0b6 Port #1146 & #1147 to deque::Injector and queue::SegQueue
  • 8144fbb Remove optimistic spinning from Context::wait_until
  • a92f6c4 Bump peter-evans/create-pull-request from 5 to 7 (#1153)
  • 66d41a9 channel: Add new_biased constructor for biased channel selection (#1150)
  • d0d0a80 CachePadded: Use 128-byte alignment on arm64ec
  • f757eef Add comment about fixed rustc bug
  • 71d8bb0 ci: Update minimum tested Rust version to 1.63
  • 5092a9b ci: Clean up no_atomic.sh
  • Additional commits viewable in compare view

Updates crossbeam-utils from 0.8.20 to 0.8.21

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.21

  • Improve implementation of CachePadded. (#1152)
Commits
  • ccd83ac Prepare for the next release
  • 54988eb Calculate layout in const context
  • 761d0b6 Port #1146 & #1147 to deque::Injector and queue::SegQueue
  • 8144fbb Remove optimistic spinning from Context::wait_until
  • a92f6c4 Bump peter-evans/create-pull-request from 5 to 7 (#1153)
  • 66d41a9 channel: Add new_biased constructor for biased channel selection (#1150)
  • d0d0a80 CachePadded: Use 128-byte alignment on arm64ec
  • f757eef Add comment about fixed rustc bug
  • 71d8bb0 ci: Update minimum tested Rust version to 1.63
  • 5092a9b ci: Clean up no_atomic.sh
  • Additional commits viewable in compare view

Updates ctor from 0.2.8 to 0.2.9

Commits

Updates embed-resource from 2.5.0 to 2.5.1

Commits

Bumps the all group with 65 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.216` |
| [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.1` |
| [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.4` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.14` | `0.2.16` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.13` | `0.5.14` |
| [crossbeam-deque](https://github.com/crossbeam-rs/crossbeam) | `0.8.5` | `0.8.6` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.20` | `0.8.21` |
| [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` |
| [semver](https://github.com/dtolnay/semver) | `1.0.23` | `1.0.24` |
| [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.216
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.216)

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.1
- [Commits](BurntSushi/bstr@1.10.0...1.11.1)

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.4
- [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.4)

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 `crossbeam-channel` from 0.5.13 to 0.5.14
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.13...crossbeam-channel-0.5.14)

Updates `crossbeam-deque` from 0.8.5 to 0.8.6
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-deque-0.8.5...crossbeam-deque-0.8.6)

Updates `crossbeam-utils` from 0.8.20 to 0.8.21
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-utils-0.8.20...crossbeam-utils-0.8.21)

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 `semver` from 1.0.23 to 1.0.24
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.23...1.0.24)

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

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: crossbeam-channel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: crossbeam-deque
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: crossbeam-utils
  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: semver
  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 16, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

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

@dependabot dependabot bot closed this Dec 23, 2024
@dependabot dependabot bot deleted the dependabot/cargo/src-tauri/all-17d2aa759e branch December 23, 2024 14:05
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