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

chore(deps): bump the all group across 1 directory with 88 updates #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 11, 2024

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

Package From To
serde_json 1.0.124 1.0.132
serde 1.0.206 1.0.214
tauri-build 1.5.3 2.0.3
anyhow 1.0.86 1.0.93
arboard 3.4.0 3.4.1
async-executor 1.13.0 1.13.1
async-process 2.2.3 2.3.0
async-trait 0.1.81 0.1.83
autocfg 1.3.0 1.4.0
bytemuck 1.16.3 1.19.0
bytes 1.7.1 1.8.0
cc 1.1.10 1.1.37
cpufeatures 0.2.12 0.2.14
embed-resource 2.4.3 2.5.1
encoding_rs 0.8.34 0.8.35
error-code 3.2.0 3.3.1
fastrand 2.1.0 2.2.0
fdeflate 0.3.4 0.3.6
flate2 1.0.31 1.0.34
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
globset 0.4.14 0.4.15
httparse 1.9.4 1.9.5
hyper 0.14.30 0.14.31
iana-time-zone 0.1.60 0.1.61
ignore 0.4.22 0.4.23
ipnet 2.9.0 2.10.1
libc 0.2.155 0.2.162
mac-notification-sys 0.6.1 0.6.2
notify-rust 4.11.1 4.11.3
object 0.36.3 0.36.5
once_cell 1.19.0 1.20.2
openssl 0.10.66 0.10.68
parking 2.2.0 2.2.1
pathdiff 0.2.1 0.2.2
pin-project-lite 0.2.14 0.2.15
pkg-config 0.3.30 0.3.31
png 0.17.13 0.17.14
proc-macro2 1.0.86 1.0.89
quote 1.0.36 1.0.37
redox_users 0.4.5 0.4.6
regex 1.10.6 1.11.1
rustc_version 0.4.0 0.4.1
rustix 0.38.34 0.38.40
rustversion 1.0.17 1.0.18
security-framework-sys 2.11.1 2.12.1
serde_spanned 0.6.7 0.6.8
serde_with 3.9.0 3.11.0
tao 0.16.9 0.16.10
tao-macros 0.1.2 0.1.3
tar 0.4.41 0.4.43
tauri-macros 1.4.5 1.4.6
tauri-runtime 0.14.4 0.14.5
tauri-runtime-wry 0.14.9 0.14.10
tempfile 3.11.0 3.14.0
thiserror 1.0.63 1.0.69
tokio 1.39.2 1.41.1
tokio-util 0.7.11 0.7.12
tower-service 0.3.2 0.3.3
tree_magic_mini 3.1.5 3.1.6
unicode-bidi 0.3.15 0.3.17
unicode-ident 1.0.12 1.0.13
unicode-normalization 0.1.23 0.1.24
unicode-segmentation 1.11.0 1.12.0
url 2.5.2 2.5.3
uuid 1.10.0 1.11.0
wasm-bindgen 0.2.92 0.2.95
wasm-streams 0.4.0 0.4.2
wayland-backend 0.3.6 0.3.7
wayland-client 0.31.5 0.31.7
wry 0.24.10 0.24.11

Updates serde_json from 1.0.124 to 1.0.132

Release notes

Sourced from serde_json's releases.

1.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)

1.0.131

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

1.0.130

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

1.0.129

1.0.128

  • Support serializing maps containing 128-bit integer keys to serde_json::Value (#1188, thanks @​Mrreadiness)

1.0.127

1.0.126

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @​CryZe)

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)
Commits
  • 86d933c Release 1.0.132
  • f45b422 Merge pull request #1206 from dtolnay/hasnext
  • f2082d2 Clearer order of comparisons
  • 0f54a1a Handle early return sooner on eof in seq or map
  • 2a4cb44 Rearrange 'match peek'
  • 4cb90ce Merge pull request #1205 from dtolnay/hasnext
  • b71ccd2 Reduce duplicative instantiation of logic in SeqAccess and MapAccess
  • a810ba9 Release 1.0.131
  • 0d084c5 Touch up PR 1135
  • b4954a9 Merge pull request #1135 from swlynch99/map-deserializer
  • Additional commits viewable in compare view

Updates serde from 1.0.206 to 1.0.214

Release notes

Sourced from serde's releases.

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)

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)

v1.0.209

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @​Mingun)

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)
Commits
  • 4180621 Release 1.0.214
  • 210373b Merge pull request #2568 from Mingun/into_deserializer-for-deserializers
  • 9cda015 Implement IntoDeserializer for all Deserializers in serde::de::value module
  • 58a8d22 Release 1.0.213
  • ef0ed22 Merge pull request #2847 from dtolnay/newtypewith
  • 79925ac Ignore dead_code warning in regression test
  • b60e409 Hygiene for macro-generated newtype struct deserialization with 'with' attr
  • fdc36e5 Add regression test for issue 2846
  • 49e11ce Ignore trivially_copy_pass_by_ref pedantic clippy lint in test
  • 7ae1b5f Release 1.0.212
  • Additional commits viewable in compare view

Updates tauri-build from 1.5.3 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.86 to 1.0.93

Release notes

Sourced from anyhow's releases.

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

1.0.89

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#386)

1.0.88

  • Documentation improvements

1.0.87

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#383)
Commits
  • 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
  • fd03a8e Release 1.0.92
  • a16252b Merge pull request #390 from dtolnay/rawaddr
  • fcf2ef8 Compile &raw test on Rust 1.82+ only
  • 1e7e9fe Parse raw address expression syntax
  • 7d1a8f9 Add test of raw addr expression syntax
  • 6c52daa Release 1.0.91
  • Additional commits viewable in compare view

Updates arboard from 3.4.0 to 3.4.1

Release notes

Sourced from arboard's releases.

v3.4.1

Added

  • Added support for excluding macOS clipboard items from history.
    • Note that macOS has no official history, so arboard's implementation uses a community standard instead.

New Contributors

Full Changelog: 1Password/arboard@v3.4.0...v3.4.1

Changelog

Sourced from arboard's changelog.

3.4.1 on 2024-12-09

Added

  • Added support for excluding macOS clipboard items from history.
    • Note that macOS has no official history, so arboard's implementation uses a community standard instead.
Commits

Updates async-executor from 1.13.0 to 1.13.1

Release notes

Sourced from async-executor's releases.

v1.13.1

  • Fix docs.rs build. (#125)
Changelog

Sourced from async-executor's changelog.

Version 1.13.1

  • Fix docs.rs build. (#125)
Commits

Updates async-process from 2.2.3 to 2.3.0

Release notes

Sourced from async-process's releases.

v2.3.0

  • Use a more efficient backend on Windows. (#87)

v2.2.4

  • Update to windows-sys v0.59. (#85)
Changelog

Sourced from async-process's changelog.

Version 2.3.0

  • Use a more efficient backend on Windows. (#87)

Version 2.2.4

  • Update to windows-sys v0.59. (#85)
Commits

Updates async-trait from 0.1.81 to 0.1.83

Release notes

Sourced from async-trait's releases.

0.1.83

  • Prevent needless_arbitrary_self_type lint being produced in generated code (#278)

0.1.82

  • Prevent elided_named_lifetimes lint being produced in generated code (#276)
Commits
  • e6b4d47 Release 0.1.83
  • bfe8d61 Merge pull request #278 from dtolnay/arbself
  • 7bd974b Ignore needless_arbitrary_self_type clippy lint in generated code
  • b53b4e7 Add regression test for issue 277
  • f8e5bb4 Release 0.1.82
  • 8fbf118 Merge pull request #276 from dtolnay/elidednamed
  • 6fa246a Ignore nightly's new elided_named_lifetimes lint in generated code
  • d542a0d Upload CI Cargo.lock for reproducing failures
  • 8828c35 Sort dependency features in Cargo.toml
  • ba9793a Update ui test suite to nightly-2024-08-11
  • Additional commits viewable in compare view

Updates autocfg from 1.3.0 to 1.4.0

Commits
  • d07df66 Merge pull request #73 from cuviper/release-1.4.0
  • f6066f0 Release 1.4.0
  • 8af60ec Merge pull request #70 from Techcable/feature/rustc-check-cfg
  • 52a995b Apply suggestions from code review
  • a8703c1 Attempt rust 1.0 compat for ci/verify-check-cfg
  • ac78be8 Add ci test crate for check-cfg
  • 0b4a761 Have emit_has methods delegate wherever possible
  • 546f7c6 Fix minor doc issues
  • e0e0f18 Automatically emit rustc-check-cfg directives for AutoCfg
  • 1953a17 Merge pull request #72 from cuviper/pretty-way
  • Additional commits viewable in compare view

Updates bytemuck from 1.16.3 to 1.19.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

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.
Commits

Updates bytes from 1.7.1 to 1.8.0

Release notes

Sourced from bytes's releases.

Bytes 1.8.0

1.8.0 (October 21, 2024)

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

Bytes 1.7.2

1.7.2 (September 17, 2024)

Fixed

  • Fix default impl of Buf::{get_int, get_int_le} (#732)

Documented

  • Fix double spaces in comments and doc comments (#731)

Internal changes

  • Ensure BytesMut::advance reduces capacity (#728)
Changelog

Sourced from bytes's changelog.

1.8.0 (October 21, 2024)

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

1.7.2 (September 17, 2024)

Fixed

  • Fix default impl of Buf::{get_int, get_int_le} (#732)

Documented

  • Fix double spaces in comments and doc comments (#731)

Internal changes

  • Ensure BytesMut::advance reduces capacity (#728)
Commits

Updates cargo_toml from 0.15.3 to 0.17.2

Commits

Updates cc from 1.1.10 to 1.1.37

Release notes

Sourced from cc's releases.

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)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)

cc-v1.1.34

Other

  • Remove redundant flags (#1256)

cc-v1.1.33

Other

  • Reduce size of cc::Build and size of generated targets (#1257)

cc-v1.1.32

Other

  • Use rustc's knowledge of LLVM/Clang target triples (#1252)
  • Use Cargo's target information when possible (#1225)

cc-v1.1.31

Other

  • Add comment explaining why cc does not rebuild on env PATH change (#1247)

cc-v1.1.30

Other

  • Don't pass -fPIC by default on wasm (#1245)

cc-v1.1.29

Other

  • Regenerate target info (#1243)

cc-v1.1.28

... (truncated)

Changelog

Sourced from cc's changelog.

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

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

1.1.35 - 2024-11-04

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)

1.1.34 - 2024-11-02

Other

  • Remove redundant flags (#1256)

1.1.33 - 2024-11-02

Other

  • Reduce size of cc::Build and size of generated targets (#1257)

1.1.32 - 2024-11-02

Other

  • Use rustc's knowledge of LLVM/Clang target triples (#1252)
  • Use Cargo's target information when possible (#1225)

1.1.31 - 2024-10-19

Other

  • Add comment explaining why cc does not rebuild on env PATH change (#1247)

1.1.30 - 2024-10-11

Other

... (truncated)

Commits

Updates cpufeatures from 0.2.12 to 0.2.14

Commits

Updates embed-resource from 2.4.3 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...
  • 81bead8 Bump version to 2.5.0
  • ed238e6 Add compile_for_everything() that produces cargo:rustc-link-arg=
  • 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 error-code from 3.2.0 to 3.3.1

Commits

Updates fastrand from 2.1.0 to 2.2.0

Release notes

Sourced from fastrand's releases.

v2.2.0

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

v2.1.1

  • Remove support for 128-bit targets, as they are not supported by rustc yet. (#87)
Changelog

Sourced from fastrand's changelog.

Version 2.2.0

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

Version 2.1.1

  • Remove support for 128-bit targets, as they are not supported by rustc yet. (#87)
Commits

Updates fdeflate from 0.3.4 to 0.3.6

Changelog

Sourced from fdeflate's changelog.

0.3.6

This release improves end-to-end decoding peformance for PNG images by 10% on average, with select images benefitting by as much as 50%. These improvements were inspired by the algorithms in zune-inflate.

  • Optimized building the Huffman table, which helps the performance of small images (#31)
  • Dropped the specialized fast path for a hardcoded Huffman table, which is no longer necessary (#32)
  • Add a fast path to the DEFLATE decoding loop that processes more bytes at a time, benefitting performance on large images (#34)
  • Re-add test files into the crates.io tarball since they are so small. They may be removed in the future if they grow in size (#35)

#31: image-rs/fdeflate#31 #32: image-rs/fdeflate#32 #34: image-rs/fdeflate#34 #35: image-rs/fdeflate#35

0.3.5

  • Fix handling of invalid inputs, so that errors are consistently detected regardless of how the input is "chunked" when feeding it into the decompressor.
  • Add more fuzz testing.
Commits

Updates flate2 from 1.0.31 to 1.0.34

Release notes

Sourced from flate2's releases.

1.0.34

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.33...1.0.34

1.0.33 - fix minimal manifest versions

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.32...1.0.33

1.0.32 - turn pan...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [serde_json](https://github.com/serde-rs/json) | `1.0.124` | `1.0.132` |
| [serde](https://github.com/serde-rs/serde) | `1.0.206` | `1.0.214` |
| [tauri-build](https://github.com/tauri-apps/tauri) | `1.5.3` | `2.0.3` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.93` |
| [arboard](https://github.com/1Password/arboard) | `3.4.0` | `3.4.1` |
| [async-executor](https://github.com/smol-rs/async-executor) | `1.13.0` | `1.13.1` |
| [async-process](https://github.com/smol-rs/async-process) | `2.2.3` | `2.3.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` | `0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.3` | `1.19.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.8.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.10` | `1.1.37` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.12` | `0.2.14` |
| [embed-resource](https://github.com/nabijaczleweli/rust-embed-resource) | `2.4.3` | `2.5.1` |
| [encoding_rs](https://github.com/hsivonen/encoding_rs) | `0.8.34` | `0.8.35` |
| [error-code](https://github.com/DoumanAsh/error-code) | `3.2.0` | `3.3.1` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.2.0` |
| [fdeflate](https://github.com/image-rs/fdeflate) | `0.3.4` | `0.3.6` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.31` | `1.0.34` |
| [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` |
| [globset](https://github.com/BurntSushi/ripgrep) | `0.4.14` | `0.4.15` |
| [httparse](https://github.com/seanmonstar/httparse) | `1.9.4` | `1.9.5` |
| [hyper](https://github.com/hyperium/hyper) | `0.14.30` | `0.14.31` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.60` | `0.1.61` |
| [ignore](https://github.com/BurntSushi/ripgrep) | `0.4.22` | `0.4.23` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.9.0` | `2.10.1` |
| [libc](https://github.com/rust-lang/libc) | `0.2.155` | `0.2.162` |
| [mac-notification-sys](https://github.com/h4llow3En/mac-notification-sys) | `0.6.1` | `0.6.2` |
| [notify-rust](https://github.com/hoodie/notify-rust) | `4.11.1` | `4.11.3` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.5` |
| [once_cell](https://github.com/matklad/once_cell) | `1.19.0` | `1.20.2` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.66` | `0.10.68` |
| [parking](https://github.com/smol-rs/parking) | `2.2.0` | `2.2.1` |
| [pathdiff](https://github.com/Manishearth/pathdiff) | `0.2.1` | `0.2.2` |
| [pin-project-lite](https://github.com/taiki-e/pin-project-lite) | `0.2.14` | `0.2.15` |
| [pkg-config](https://github.com/rust-lang/pkg-config-rs) | `0.3.30` | `0.3.31` |
| [png](https://github.com/image-rs/image-png) | `0.17.13` | `0.17.14` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.86` | `1.0.89` |
| [quote](https://github.com/dtolnay/quote) | `1.0.36` | `1.0.37` |
| redox_users | `0.4.5` | `0.4.6` |
| [regex](https://github.com/rust-lang/regex) | `1.10.6` | `1.11.1` |
| [rustc_version](https://github.com/djc/rustc-version-rs) | `0.4.0` | `0.4.1` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.34` | `0.38.40` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.17` | `1.0.18` |
| [security-framework-sys](https://github.com/kornelski/rust-security-framework) | `2.11.1` | `2.12.1` |
| [serde_spanned](https://github.com/toml-rs/toml) | `0.6.7` | `0.6.8` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.9.0` | `3.11.0` |
| [tao](https://github.com/tauri-apps/tao) | `0.16.9` | `0.16.10` |
| [tao-macros](https://github.com/tauri-apps/tao) | `0.1.2` | `0.1.3` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.41` | `0.4.43` |
| [tauri-macros](https://github.com/tauri-apps/tauri) | `1.4.5` | `1.4.6` |
| [tauri-runtime](https://github.com/tauri-apps/tauri) | `0.14.4` | `0.14.5` |
| [tauri-runtime-wry](https://github.com/tauri-apps/tauri) | `0.14.9` | `0.14.10` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.11.0` | `3.14.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` | `1.0.69` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.2` | `1.41.1` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.11` | `0.7.12` |
| [tower-service](https://github.com/tower-rs/tower) | `0.3.2` | `0.3.3` |
| [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.12` | `1.0.13` |
| [unicode-normalization](https://github.com/unicode-rs/unicode-normalization) | `0.1.23` | `0.1.24` |
| [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) | `1.11.0` | `1.12.0` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.3` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.10.0` | `1.11.0` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.92` | `0.2.95` |
| [wasm-streams](https://github.com/MattiasBuelens/wasm-streams) | `0.4.0` | `0.4.2` |
| [wayland-backend](https://github.com/smithay/wayland-rs) | `0.3.6` | `0.3.7` |
| [wayland-client](https://github.com/smithay/wayland-rs) | `0.31.5` | `0.31.7` |
| [wry](https://github.com/tauri-apps/wry) | `0.24.10` | `0.24.11` |



Updates `serde_json` from 1.0.124 to 1.0.132
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.124...1.0.132)

Updates `serde` from 1.0.206 to 1.0.214
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.206...v1.0.214)

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

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

Updates `arboard` from 3.4.0 to 3.4.1
- [Release notes](https://github.com/1Password/arboard/releases)
- [Changelog](https://github.com/1Password/arboard/blob/master/CHANGELOG.md)
- [Commits](1Password/arboard@v3.4.0...v3.4.1)

Updates `async-executor` from 1.13.0 to 1.13.1
- [Release notes](https://github.com/smol-rs/async-executor/releases)
- [Changelog](https://github.com/smol-rs/async-executor/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-executor@v1.13.0...v1.13.1)

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

Updates `async-trait` from 0.1.81 to 0.1.83
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.81...0.1.83)

Updates `autocfg` from 1.3.0 to 1.4.0
- [Commits](cuviper/autocfg@1.3.0...1.4.0)

Updates `bytemuck` from 1.16.3 to 1.19.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.16.3...v1.19.0)

Updates `bytes` from 1.7.1 to 1.8.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.1...v1.8.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.10 to 1.1.37
- [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.10...cc-v1.1.37)

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

Updates `embed-resource` from 2.4.3 to 2.5.1
- [Release notes](https://github.com/nabijaczleweli/rust-embed-resource/releases)
- [Commits](nabijaczleweli/rust-embed-resource@v2.4.3...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 `error-code` from 3.2.0 to 3.3.1
- [Commits](https://github.com/DoumanAsh/error-code/commits)

Updates `fastrand` from 2.1.0 to 2.2.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.0...v2.2.0)

Updates `fdeflate` from 0.3.4 to 0.3.6
- [Changelog](https://github.com/image-rs/fdeflate/blob/main/CHANGES.md)
- [Commits](image-rs/fdeflate@v0.3.4...v0.3.6)

Updates `flate2` from 1.0.31 to 1.0.34
- [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.31...1.0.34)

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 `globset` from 0.4.14 to 0.4.15
- [Release notes](https://github.com/BurntSushi/ripgrep/releases)
- [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/ripgrep@globset-0.4.14...ignore-0.4.15)

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 `iana-time-zone` from 0.1.60 to 0.1.61
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](strawlab/iana-time-zone@v0.1.60...v0.1.61)

Updates `ignore` from 0.4.22 to 0.4.23
- [Release notes](https://github.com/BurntSushi/ripgrep/releases)
- [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md)
- [Commits](https://github.com/BurntSushi/ripgrep/commits)

Updates `ipnet` from 2.9.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.155 to 0.2.162
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.162/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.155...0.2.162)

Updates `mac-notification-sys` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/h4llow3En/mac-notification-sys/releases)
- [Changelog](https://github.com/h4llow3En/mac-notification-sys/blob/master/CHANGELOG.md)
- [Commits](h4llow3En/mac-notification-sys@v0.6.1...v0.6.2)

Updates `notify-rust` from 4.11.1 to 4.11.3
- [Release notes](https://github.com/hoodie/notify-rust/releases)
- [Changelog](https://github.com/hoodie/notify-rust/blob/main/CHANGELOG.md)
- [Commits](hoodie/notify-rust@v4.11.1...v4.11.3)

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

Updates `once_cell` from 1.19.0 to 1.20.2
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.19.0...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 `parking` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/smol-rs/parking/releases)
- [Changelog](https://github.com/smol-rs/parking/blob/master/CHANGELOG.md)
- [Commits](smol-rs/parking@v2.2.0...v2.2.1)

Updates `pathdiff` from 0.2.1 to 0.2.2
- [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 `pkg-config` from 0.3.30 to 0.3.31
- [Changelog](https://github.com/rust-lang/pkg-config-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/pkg-config-rs@0.3.30...0.3.31)

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

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

Updates `quote` from 1.0.36 to 1.0.37
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.36...1.0.37)

Updates `redox_users` from 0.4.5 to 0.4.6

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 `rustc_version` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/djc/rustc-version-rs/releases)
- [Commits](djc/rustc-version-rs@v0.4.0...v0.4.1)

Updates `rustix` from 0.38.34 to 0.38.40
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.34...v0.38.40)

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.11.1 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.206 to 1.0.214
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.206...v1.0.214)

Updates `serde_spanned` from 0.6.7 to 0.6.8
- [Commits](toml-rs/toml@serde_spanned-v0.6.7...serde_spanned-v0.6.8)

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 `tao` from 0.16.9 to 0.16.10
- [Release notes](https://github.com/tauri-apps/tao/releases)
- [Changelog](https://github.com/tauri-apps/tao/blob/tao-v0.16.10/CHANGELOG.md)
- [Commits](tauri-apps/tao@tao-v0.16.9...tao-v0.16.10)

Updates `tao-macros` from 0.1.2 to 0.1.3
- [Release notes](https://github.com/tauri-apps/tao/releases)
- [Changelog](https://github.com/tauri-apps/tao/blob/dev/CHANGELOG.md)
- [Commits](tauri-apps/tao@tao-macros-v0.1.2...tao-macros-v0.1.3)

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

Updates `tauri-macros` from 1.4.5 to 1.4.6
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-macros-v1.4.5...tauri-macros-v1.4.6)

Updates `tauri-runtime` from 0.14.4 to 0.14.5
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-runtime-v0.14.4...tauri-runtime-v0.14.5)

Updates `tauri-runtime-wry` from 0.14.9 to 0.14.10
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-runtime-wry-v0.14.9...tauri-runtime-wry-v0.14.10)

Updates `tauri-utils` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-utils-v1.6...tauri-utils-v1.6.1)

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.63 to 1.0.69
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.63...1.0.69)

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

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

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

Updates `tower-service` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-service-0.3.2...tower-service-0.3.3)

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.12 to 1.0.13
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.12...1.0.13)

Updates `unicode-normalization` from 0.1.23 to 0.1.24
- [Commits](unicode-rs/unicode-normalization@v0.1.23...v0.1.24)

Updates `unicode-segmentation` from 1.11.0 to 1.12.0
- [Commits](unicode-rs/unicode-segmentation@v1.11.0...v1.12.0)

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

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.92 to 0.2.95
- [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.92...0.2.95)

Updates `wasm-bindgen-backend` from 0.2.92 to 0.2.95
- [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.92...0.2.95)

Updates `wasm-bindgen-macro` from 0.2.92 to 0.2.95
- [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.92...0.2.95)

Updates `wasm-bindgen-macro-support` from 0.2.92 to 0.2.95
- [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.92...0.2.95)

Updates `wasm-bindgen-shared` from 0.2.92 to 0.2.95
- [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.92...0.2.95)

Updates `wasm-streams` from 0.4.0 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.0...v0.4.2)

Updates `wayland-backend` from 0.3.6 to 0.3.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 `wayland-client` from 0.31.5 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 `wayland-scanner` from 0.31.4 to 0.31.5
- [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 `wayland-sys` from 0.31.4 to 0.31.5
- [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.69 to 0.3.72
- [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)

Updates `wry` from 0.24.10 to 0.24.11
- [Release notes](https://github.com/tauri-apps/wry/releases)
- [Changelog](https://github.com/tauri-apps/wry/blob/wry-v0.24.11/CHANGELOG.md)
- [Commits](tauri-apps/wry@wry-v0.24.10...wry-v0.24.11)

---
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-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: arboard
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: async-executor
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: async-process
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: autocfg
  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-patch
  dependency-group: all
- dependency-name: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: embed-resource
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: encoding_rs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: error-code
  dependency-type: indirect
  update-type: version-update:semver-minor
  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: globset
  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: iana-time-zone
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ignore
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ipnet
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: mac-notification-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: notify-rust
  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-minor
  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: parking
  dependency-type: indirect
  update-type: version-update:semver-patch
  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: pkg-config
  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: quote
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: redox_users
  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: rustc_version
  dependency-type: indirect
  update-type: version-update:semver-patch
  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-minor
  dependency-group: all
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_spanned
  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: tao
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tao-macros
  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: tauri-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-runtime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-runtime-wry
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-utils
  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: 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: tower-service
  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: unicode-normalization
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: unicode-segmentation
  dependency-type: indirect
  update-type: version-update:semver-minor
  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-backend
  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: wayland-scanner
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wayland-sys
  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
- dependency-name: wry
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 11, 2024
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