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 93 updates #21

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
serde_json 1.0.124 1.0.128
serde 1.0.207 1.0.210
diesel 2.2.3 2.2.4
tauri-plugin-global-shortcut 2.0.0-rc.0 2.0.0-rc.2
tauri-plugin-process 2.0.0-rc.0 2.0.0-rc.1
tauri-plugin-dialog 2.0.0-rc.0 2.0.0-rc.2
tauri-plugin-fs 2.0.0-rc.0 2.0.0-rc.5
tauri-plugin-notification 2.0.0-rc.0 2.0.0-rc.5
tauri-plugin-shell 2.0.0-rc.0 2.0.0-rc.3
tauri-plugin-os 2.0.0-rc.0 2.0.0-rc.1
tauri-plugin-http 2.0.0-rc.0 2.0.0-rc.5
anyhow 1.0.86 1.0.89
arboard 3.4.0 3.4.1
async-executor 1.13.0 1.13.1
async-process 2.2.4 2.3.0
async-trait 0.1.81 0.1.82
bytemuck 1.16.3 1.18.0
camino 1.1.7 1.1.9
cc 1.1.10 1.1.19
cpufeatures 0.2.13 0.2.14
diesel_derives 2.2.2 2.2.3
error-code 3.2.0 3.3.1
fastrand 2.1.0 2.1.1
flate2 1.0.31 1.0.33
h2 0.4.5 0.4.6
hyper-rustls 0.27.2 0.27.3
hyper-util 0.1.7 0.1.8
iana-time-zone 0.1.60 0.1.61
ipnet 2.9.0 2.10.0
js-sys 0.3.69 0.3.70
libc 0.2.155 0.2.158
libsqlite3-sys 0.29.0 0.30.1
mac-notification-sys 0.6.1 0.6.2
notify-rust 4.11.1 4.11.3
object 0.36.3 0.36.4
parking 2.2.0 2.2.1
quinn 0.11.3 0.11.5
quinn-udp 0.5.4 0.5.5
quote 1.0.36 1.0.37
redox_syscall 0.5.3 0.5.4
redox_users 0.4.5 0.4.6
reqwest 0.12.5 0.12.7
rustc_version 0.4.0 0.4.1
rustix 0.38.34 0.38.37
rustls 0.23.12 0.23.13
softbuffer 0.4.5 0.4.6
tao-macros 0.1.2 0.1.3
tokio 1.39.2 1.40.0
tokio-util 0.7.11 0.7.12
tower-layer 0.3.2 0.3.3
tower-service 0.3.2 0.3.3
typeid 1.0.0 1.0.2
unicode-ident 1.0.12 1.0.13
unicode-segmentation 1.11.0 1.12.0
wasm-bindgen-futures 0.4.42 0.4.43
web-sys 0.3.69 0.3.70
webpki-roots 0.26.3 0.26.5
window-vibrancy 0.5.0 0.5.2

Updates serde_json from 1.0.124 to 1.0.128

Release notes

Sourced from serde_json's releases.

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
  • d96b1d9 Release 1.0.128
  • 599228d Merge pull request #1188 from Mrreadiness/feat/add-hashmap-key-128-serializer
  • 5416cee feat: add support for 128 bit HashMap key serialization
  • 27a4ca9 Upload CI Cargo.lock for reproducing failures
  • 5ebf65c Release 1.0.127
  • f287a3b Merge pull request 1179 from GREsau/patch-1
  • ec980b0 Release 1.0.126
  • e6282b0 Merge pull request #1184 from serde-rs/fastarithmetic
  • ffc4a43 Improve cfg names for fast arithmetic
  • 4b1048d Merge pull request #1183 from serde-rs/arithmetic
  • Additional commits viewable in compare view

Updates serde from 1.0.207 to 1.0.210

Release notes

Sourced from serde's releases.

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)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view

Updates diesel from 2.2.3 to 2.2.4

Changelog

Sourced from diesel's changelog.

[2.2.4] 2024-09-3

Fixed

  • Fix an issue where empty queries could trigger undefined behaviour in the sqlite backend
Commits

Updates tauri-plugin-global-shortcut from 2.0.0-rc.0 to 2.0.0-rc.2

Release notes

Sourced from tauri-plugin-global-shortcut's releases.

nfc v2.0.0-rc.2

[2.0.0-rc.2]

Updating crates.io index
   Packaging tauri-plugin-nfc v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/nfc)
    Packaged 42 files, 113.3KiB (34.5KiB compressed)
   Uploading tauri-plugin-nfc v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/nfc)
    Uploaded tauri-plugin-nfc v2.0.0-rc.2 to registry `crates-io`
note: waiting for `tauri-plugin-nfc v2.0.0-rc.2` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-nfc v2.0.0-rc.2 at registry `crates-io`

notification v2.0.0-rc.2

[2.0.0-rc.2]

Updating crates.io index
   Packaging tauri-plugin-notification v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/notification)
    Packaged 70 files, 259.2KiB (106.8KiB compressed)
   Uploading tauri-plugin-notification v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/notification)
    Uploaded tauri-plugin-notification v2.0.0-rc.2 to registry `crates-io`
note: waiting for `tauri-plugin-notification v2.0.0-rc.2` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-notification v2.0.0-rc.2 at registry `crates-io`

shell v2.0.0-rc.2

[2.0.0-rc.2]

... (truncated)

Commits
  • c565a08 publish new versions (#1711)
  • cf4d7d4 chore: adjust prettier config, .gitignore and use taplo to format toml files ...
  • 72c2ce8 chore(deep-link): fix example, update documentation (#1725)
  • 4654591 fix(deep-link): allow empty config values (#1732)
  • feb1e93 feat(dialog): implement save API on iOS (#1707)
  • ff134a8 Remove authenticator plugin (#1723)
  • f8255e1 feat(updater): allow passing headers & timeout in Update.download* methods ...
  • b9bcb2b chore(deps): update dependency typescript-eslint to v8.4.0 (v2) (#1721)
  • 51819c6 fix(fs): writeFile command implementation on Android (#1708)
  • f7280c8 fix(fs): can't use Windows path (#1710)
  • Additional commits viewable in compare view

Updates tauri-plugin-process from 2.0.0-rc.0 to 2.0.0-rc.1

Release notes

Sourced from tauri-plugin-process's releases.

authenticator-js v2.0.0-rc.1

[2.0.0-rc.1]

npm warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors. npm warn publish errors corrected: npm warn publish "repository" was changed from a string to an object npm warn publish "repository.url" was normalized to "git+https://github.com/tauri-apps/plugins-workspace.git" npm notice npm notice 📦 @​tauri-apps/plugin-authenticator@​2.0.0-rc.1 npm notice Tarball Contents npm notice 888B LICENSE.spdx npm notice 4.2kB README.md npm notice 1.4kB dist-js/index.cjs npm notice 497B dist-js/index.d.ts npm notice 1.3kB dist-js/index.js npm notice 739B package.json npm notice Tarball Details npm notice name: @​tauri-apps/plugin-authenticator npm notice version: 2.0.0-rc.1 npm notice filename: tauri-apps-plugin-authenticator-2.0.0-rc.1.tgz npm notice package size: 3.1 kB npm notice unpacked size: 9.1 kB npm notice shasum: bca35051913fa611d03068ae864482586b5efef5 npm notice integrity: sha512-DClmZO9pAVdim[...]VHSmYVRQ48qPg== npm notice total files: 6 npm notice npm notice Publishing to https://registry.npmjs.org/ with tag latest and public access npm notice publish Signed provenance statement with source and build information from GitHub Actions npm notice publish Provenance statement published to transparency log: https://search.sigstore.dev/?logIndex=125989175

  • @​tauri-apps/plugin-authenticator@​2.0.0-rc.1

authenticator v2.0.0-rc.1

[2.0.0-rc.1]

Updating crates.io index
   Packaging tauri-plugin-authenticator v2.0.0-rc.1 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/authenticator)
    Packaged 37 files, 121.0KiB (64.9KiB compressed)
   Uploading tauri-plugin-authenticator v2.0.0-rc.1 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/authenticator)
    Uploaded tauri-plugin-authenticator v2.0.0-rc.1 to registry `crates-io`
note: waiting for `tauri-plugin-authenticator v2.0.0-rc.1` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-authenticator v2.0.0-rc.1 at registry `crates-io`
</tr></table> 

... (truncated)

Commits

Updates tauri-plugin-dialog from 2.0.0-rc.0 to 2.0.0-rc.2

Release notes

Sourced from tauri-plugin-dialog's releases.

nfc v2.0.0-rc.2

[2.0.0-rc.2]

Updating crates.io index
   Packaging tauri-plugin-nfc v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/nfc)
    Packaged 42 files, 113.3KiB (34.5KiB compressed)
   Uploading tauri-plugin-nfc v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/nfc)
    Uploaded tauri-plugin-nfc v2.0.0-rc.2 to registry `crates-io`
note: waiting for `tauri-plugin-nfc v2.0.0-rc.2` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-nfc v2.0.0-rc.2 at registry `crates-io`

notification v2.0.0-rc.2

[2.0.0-rc.2]

Updating crates.io index
   Packaging tauri-plugin-notification v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/notification)
    Packaged 70 files, 259.2KiB (106.8KiB compressed)
   Uploading tauri-plugin-notification v2.0.0-rc.2 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/notification)
    Uploaded tauri-plugin-notification v2.0.0-rc.2 to registry `crates-io`
note: waiting for `tauri-plugin-notification v2.0.0-rc.2` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-notification v2.0.0-rc.2 at registry `crates-io`

shell v2.0.0-rc.2

[2.0.0-rc.2]

... (truncated)

Commits
  • c565a08 publish new versions (#1711)
  • cf4d7d4 chore: adjust prettier config, .gitignore and use taplo to format toml files ...
  • 72c2ce8 chore(deep-link): fix example, update documentation (#1725)
  • 4654591 fix(deep-link): allow empty config values (#1732)
  • feb1e93 feat(dialog): implement save API on iOS (#1707)
  • ff134a8 Remove authenticator plugin (#1723)
  • f8255e1 feat(updater): allow passing headers & timeout in Update.download* methods ...
  • b9bcb2b chore(deps): update dependency typescript-eslint to v8.4.0 (v2) (#1721)
  • 51819c6 fix(fs): writeFile command implementation on Android (#1708)
  • f7280c8 fix(fs): can't use Windows path (#1710)
  • Additional commits viewable in compare view

Updates tauri-plugin-fs from 2.0.0-rc.0 to 2.0.0-rc.5

Release notes

Sourced from tauri-plugin-fs's releases.

dialog v2.0.0-rc.5

[2.0.0-rc.5]

Dependencies

Updating crates.io index
   Packaging tauri-plugin-dialog v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/dialog)
    Packaged 48 files, 193.3KiB (89.2KiB compressed)
   Uploading tauri-plugin-dialog v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/dialog)
    Uploaded tauri-plugin-dialog v2.0.0-rc.5 to registry `crates-io`
note: waiting for `tauri-plugin-dialog v2.0.0-rc.5` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-dialog v2.0.0-rc.5 at registry `crates-io`

deep-link v2.0.0-rc.5

[2.0.0-rc.5]

  • 984110a9 (#1770 by @​lucasfernog) Emit the deep-link://new-url event on Linux and Windows when the app is executed with a deep link CLI argument, matching the iOS and macOS behavior.
Updating crates.io index
   Packaging tauri-plugin-deep-link v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/deep-link)
    Packaged 55 files, 167.5KiB (80.3KiB compressed)
   Uploading tauri-plugin-deep-link v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/deep-link)
    Uploaded tauri-plugin-deep-link v2.0.0-rc.5 to registry `crates-io`
note: waiting for `tauri-plugin-deep-link v2.0.0-rc.5` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-deep-link v2.0.0-rc.5 at registry `crates-io`
</tr></table> 

... (truncated)

Commits
  • 5cbd593 publish new versions (#1772)
  • f7600b5 chore(deps): update dependency @​tauri-apps/cli to v2.0.0-rc.14 (#1786)
  • fb85e5d chore(deps): update tauri to 2.0.0-rc.12 (#1785)
  • 6f3f667 feat(deep-link): add on_open_url Rust API (#1780)
  • 79d6e19 chore: Add changefile for #1777
  • aebd4f6 fix(barcode-scanner): Fix mixed up imports (internal) (#1777)
  • 341a532 fix(clipboard): Android warnings and build on SDK under 28 (#1771)
  • cc03ccf fix(fs): app scopes not properly enabling paths (#1774)
  • 009299e chore(prettier): ignore mobile build artifacts
  • 204e5aa fix(window-state)!: saving minimized state (#1743)
  • Additional commits viewable in compare view

Updates tauri-plugin-notification from 2.0.0-rc.0 to 2.0.0-rc.5

Release notes

Sourced from tauri-plugin-notification's releases.

dialog v2.0.0-rc.5

[2.0.0-rc.5]

Dependencies

Updating crates.io index
   Packaging tauri-plugin-dialog v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/dialog)
    Packaged 48 files, 193.3KiB (89.2KiB compressed)
   Uploading tauri-plugin-dialog v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/dialog)
    Uploaded tauri-plugin-dialog v2.0.0-rc.5 to registry `crates-io`
note: waiting for `tauri-plugin-dialog v2.0.0-rc.5` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-dialog v2.0.0-rc.5 at registry `crates-io`

deep-link v2.0.0-rc.5

[2.0.0-rc.5]

  • 984110a9 (#1770 by @​lucasfernog) Emit the deep-link://new-url event on Linux and Windows when the app is executed with a deep link CLI argument, matching the iOS and macOS behavior.
Updating crates.io index
   Packaging tauri-plugin-deep-link v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/deep-link)
    Packaged 55 files, 167.5KiB (80.3KiB compressed)
   Uploading tauri-plugin-deep-link v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/deep-link)
    Uploaded tauri-plugin-deep-link v2.0.0-rc.5 to registry `crates-io`
note: waiting for `tauri-plugin-deep-link v2.0.0-rc.5` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-deep-link v2.0.0-rc.5 at registry `crates-io`
</tr></table> 

... (truncated)

Commits
  • 5cbd593 publish new versions (#1772)
  • f7600b5 chore(deps): update dependency @​tauri-apps/cli to v2.0.0-rc.14 (#1786)
  • fb85e5d chore(deps): update tauri to 2.0.0-rc.12 (#1785)
  • 6f3f667 feat(deep-link): add on_open_url Rust API (#1780)
  • 79d6e19 chore: Add changefile for #1777
  • aebd4f6 fix(barcode-scanner): Fix mixed up imports (internal) (#1777)
  • 341a532 fix(clipboard): Android warnings and build on SDK under 28 (#1771)
  • cc03ccf fix(fs): app scopes not properly enabling paths (#1774)
  • 009299e chore(prettier): ignore mobile build artifacts
  • 204e5aa fix(window-state)!: saving minimized state (#1743)
  • Additional commits viewable in compare view

Updates tauri-plugin-shell from 2.0.0-rc.0 to 2.0.0-rc.3

Release notes

Sourced from tauri-plugin-shell's releases.

barcode-scanner v2.0.0-rc.3

[2.0.0-rc.1]

  • e2e97db5 (#1701 by @​lucasfernog) Use PermissionState from the tauri crate, which now also includes a "prompt with rationale" variant for Android (returned when your app must explain to the user why it needs the permission).
  • e2e97db5 (#1701 by @​lucasfernog) Update to tauri 2.0.0-rc.8
Updating crates.io index
   Packaging tauri-plugin-barcode-scanner v2.0.0-rc.3 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/barcode-scanner)
    Packaged 48 files, 164.6KiB (83.9KiB compressed)
   Uploading tauri-plugin-barcode-scanner v2.0.0-rc.3 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/barcode-scanner)
    Uploaded tauri-plugin-barcode-scanner v2.0.0-rc.3 to registry `crates-io`
note: waiting for `tauri-plugin-barcode-scanner v2.0.0-rc.3` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-barcode-scanner v2.0.0-rc.3 at registry `crates-io`

biometric v2.0.0-rc.3

[2.0.0-rc.1]

Updating crates.io index
   Packaging tauri-plugin-biometric v2.0.0-rc.3 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/biometric)
    Packaged 42 files, 93.3KiB (29.7KiB compressed)
   Uploading tauri-plugin-biometric v2.0.0-rc.3 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/biometric)
    Uploaded tauri-plugin-biometric v2.0.0-rc.3 to registry `crates-io`
note: waiting for `tauri-plugin-biometric v2.0.0-rc.3` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-biometric v2.0.0-rc.3 at registry `crates-io`

clipboard-manager v2.0.0-rc.3

[2.0.0-rc.1]

... (truncated)

Commits
  • 12e80ff Publish New Versions (v2) (#1736)
  • a2fe555 refactor: add methods and implement traits for FilePath and SafeFilePath ...
  • d00519e chore: Add missing changefile for updater rust changes (#1735)
  • 6995127 chore(deps): update tauri monorepo (#1734)
  • c565a08 publish new versions (#1711)
  • cf4d7d4 chore: adjust prettier config, .gitignore and use taplo to format toml files ...
  • 72c2ce8 chore(deep-link): fix example, update documentation (#1725)
  • 4654591 fix(deep-link): allow empty config values (#1732)
  • feb1e93 feat(dialog): implement save API on iOS (#1707)
  • ff134a8 Remove authenticator plugin (#1723)
  • Additional commits viewable in compare view

Updates tauri-plugin-os from 2.0.0-rc.0 to 2.0.0-rc.1

Release notes

Sourced from tauri-plugin-os's releases.

authenticator-js v2.0.0-rc.1

[2.0.0-rc.1]

npm warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors. npm warn publish errors corrected: npm warn publish "repository" was changed from a string to an object npm warn publish "repository.url" was normalized to "git+https://github.com/tauri-apps/plugins-workspace.git" npm notice npm notice 📦 @​tauri-apps/plugin-authenticator@​2.0.0-rc.1 npm notice Tarball Contents npm notice 888B LICENSE.spdx npm notice 4.2kB README.md npm notice 1.4kB dist-js/index.cjs npm notice 497B dist-js/index.d.ts npm notice 1.3kB dist-js/index.js npm notice 739B package.json npm notice Tarball Details npm notice name: @​tauri-apps/plugin-authenticator npm notice version: 2.0.0-rc.1 npm notice filename: tauri-apps-plugin-authenticator-2.0.0-rc.1.tgz npm notice package size: 3.1 kB npm notice unpacked size: 9.1 kB npm notice shasum: bca35051913fa611d03068ae864482586b5efef5 npm notice integrity: sha512-DClmZO9pAVdim[...]VHSmYVRQ48qPg== npm notice total files: 6 npm notice npm notice Publishing to https://registry.npmjs.org/ with tag latest and public access npm notice publish Signed provenance statement with source and build information from GitHub Actions npm notice publish Provenance statement published to transparency log: https://search.sigstore.dev/?logIndex=125989175

  • @​tauri-apps/plugin-authenticator@​2.0.0-rc.1

authenticator v2.0.0-rc.1

[2.0.0-rc.1]

Updating crates.io index
   Packaging tauri-plugin-authenticator v2.0.0-rc.1 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/authenticator)
    Packaged 37 files, 121.0KiB (64.9KiB compressed)
   Uploading tauri-plugin-authenticator v2.0.0-rc.1 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/authenticator)
    Uploaded tauri-plugin-authenticator v2.0.0-rc.1 to registry `crates-io`
note: waiting for `tauri-plugin-authenticator v2.0.0-rc.1` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-authenticator v2.0.0-rc.1 at registry `crates-io`
</tr></table> 

... (truncated)

Commits

Updates tauri-plugin-http from 2.0.0-rc.0 to 2.0.0-rc.5

Release notes

Sourced from tauri-plugin-http's releases.

dialog v2.0.0-rc.5

[2.0.0-rc.5]

Dependencies

Updating crates.io index
   Packaging tauri-plugin-dialog v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/dialog)
    Packaged 48 files, 193.3KiB (89.2KiB compressed)
   Uploading tauri-plugin-dialog v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/dialog)
    Uploaded tauri-plugin-dialog v2.0.0-rc.5 to registry `crates-io`
note: waiting for `tauri-plugin-dialog v2.0.0-rc.5` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-dialog v2.0.0-rc.5 at registry `crates-io`

deep-link v2.0.0-rc.5

[2.0.0-rc.5]

  • 984110a9 (#1770 by @​lucasfernog) Emit the deep-link://new-url event on Linux and Windows when the app is executed with a deep link CLI argument, matching the iOS and macOS behavior.
Updating crates.io index
   Packaging tauri-plugin-deep-link v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/deep-link)
    Packaged 55 files, 167.5KiB (80.3KiB compressed)
   Uploading tauri-plugin-deep-link v2.0.0-rc.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/deep-link)
    Uploaded tauri-plugin-deep-link v2.0.0-rc.5 to registry `crates-io`
note: waiting for `tauri-plugin-deep-link v2.0.0-rc.5` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-deep-link v2.0.0-rc.5 at registry `crates-io`
</tr></table> 

... (truncated)

Commits

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

| Package | From | To |
| --- | --- | --- |
| [serde_json](https://github.com/serde-rs/json) | `1.0.124` | `1.0.128` |
| [serde](https://github.com/serde-rs/serde) | `1.0.207` | `1.0.210` |
| [diesel](https://github.com/diesel-rs/diesel) | `2.2.3` | `2.2.4` |
| [tauri-plugin-global-shortcut](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.2` |
| [tauri-plugin-process](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.1` |
| [tauri-plugin-dialog](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.2` |
| [tauri-plugin-fs](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.5` |
| [tauri-plugin-notification](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.5` |
| [tauri-plugin-shell](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.3` |
| [tauri-plugin-os](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.1` |
| [tauri-plugin-http](https://github.com/tauri-apps/plugins-workspace) | `2.0.0-rc.0` | `2.0.0-rc.5` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [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.4` | `2.3.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` | `0.1.82` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.3` | `1.18.0` |
| [camino](https://github.com/camino-rs/camino) | `1.1.7` | `1.1.9` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.10` | `1.1.19` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` | `0.2.14` |
| [diesel_derives](https://github.com/diesel-rs/diesel) | `2.2.2` | `2.2.3` |
| [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.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.31` | `1.0.33` |
| [h2](https://github.com/hyperium/h2) | `0.4.5` | `0.4.6` |
| [hyper-rustls](https://github.com/rustls/hyper-rustls) | `0.27.2` | `0.27.3` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.7` | `0.1.8` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.60` | `0.1.61` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.9.0` | `2.10.0` |
| [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.69` | `0.3.70` |
| [libc](https://github.com/rust-lang/libc) | `0.2.155` | `0.2.158` |
| [libsqlite3-sys](https://github.com/rusqlite/rusqlite) | `0.29.0` | `0.30.1` |
| [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.4` |
| [parking](https://github.com/smol-rs/parking) | `2.2.0` | `2.2.1` |
| [quinn](https://github.com/quinn-rs/quinn) | `0.11.3` | `0.11.5` |
| [quinn-udp](https://github.com/quinn-rs/quinn) | `0.5.4` | `0.5.5` |
| [quote](https://github.com/dtolnay/quote) | `1.0.36` | `1.0.37` |
| redox_syscall | `0.5.3` | `0.5.4` |
| redox_users | `0.4.5` | `0.4.6` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.5` | `0.12.7` |
| [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.37` |
| [rustls](https://github.com/rustls/rustls) | `0.23.12` | `0.23.13` |
| [softbuffer](https://github.com/rust-windowing/softbuffer) | `0.4.5` | `0.4.6` |
| [tao-macros](https://github.com/tauri-apps/tao) | `0.1.2` | `0.1.3` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.2` | `1.40.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.11` | `0.7.12` |
| [tower-layer](https://github.com/tower-rs/tower) | `0.3.2` | `0.3.3` |
| [tower-service](https://github.com/tower-rs/tower) | `0.3.2` | `0.3.3` |
| [typeid](https://github.com/dtolnay/typeid) | `1.0.0` | `1.0.2` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` | `1.0.13` |
| [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) | `1.11.0` | `1.12.0` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.42` | `0.4.43` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.69` | `0.3.70` |
| [webpki-roots](https://github.com/rustls/webpki-roots) | `0.26.3` | `0.26.5` |
| [window-vibrancy](https://github.com/tauri-apps/tauri-plugin-vibrancy) | `0.5.0` | `0.5.2` |



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

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

Updates `diesel` from 2.2.3 to 2.2.4
- [Release notes](https://github.com/diesel-rs/diesel/releases)
- [Changelog](https://github.com/diesel-rs/diesel/blob/v2.2.4/CHANGELOG.md)
- [Commits](diesel-rs/diesel@v2.2.3...v2.2.4)

Updates `tauri-plugin-global-shortcut` from 2.0.0-rc.0 to 2.0.0-rc.2
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...fs-v2.0.0-rc.2)

Updates `tauri-plugin-process` from 2.0.0-rc.0 to 2.0.0-rc.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...os-v2.0.0-rc.1)

Updates `tauri-plugin-dialog` from 2.0.0-rc.0 to 2.0.0-rc.2
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...fs-v2.0.0-rc.2)

Updates `tauri-plugin-fs` from 2.0.0-rc.0 to 2.0.0-rc.5
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...fs-v2.0.0-rc.5)

Updates `tauri-plugin-notification` from 2.0.0-rc.0 to 2.0.0-rc.5
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...fs-v2.0.0-rc.5)

Updates `tauri-plugin-shell` from 2.0.0-rc.0 to 2.0.0-rc.3
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...fs-v2.0.0-rc.3)

Updates `tauri-plugin-os` from 2.0.0-rc.0 to 2.0.0-rc.1
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...os-v2.0.0-rc.1)

Updates `tauri-plugin-http` from 2.0.0-rc.0 to 2.0.0-rc.5
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@os-v2.0.0-rc.0...fs-v2.0.0-rc.5)

Updates `tauri-build` from 2.0.0-rc.2 to 2.0.0-rc.11
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-build-v2.0.0-rc.2...tauri-build-v2.0.0-rc.11)

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

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.4 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.4...v2.3.0)

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

Updates `brotli` from 3.5.0 to 6.0.0
- [Release notes](https://github.com/dropbox/rust-brotli/releases)
- [Commits](dropbox/rust-brotli@3.5.0...6.0.0)

Updates `brotli-decompressor` from 2.5.1 to 4.0.1
- [Commits](https://github.com/dropbox/rust-brotli-decompressor/commits/4.0.1)

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

Updates `camino` from 1.1.7 to 1.1.9
- [Release notes](https://github.com/camino-rs/camino/releases)
- [Changelog](https://github.com/camino-rs/camino/blob/main/CHANGELOG.md)
- [Commits](camino-rs/camino@camino-1.1.7...camino-1.1.9)

Updates `cc` from 1.1.10 to 1.1.19
- [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.19)

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

Updates `diesel_derives` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/diesel-rs/diesel/releases)
- [Changelog](https://github.com/diesel-rs/diesel/blob/v2.2.3/CHANGELOG.md)
- [Commits](diesel-rs/diesel@v2.2.2...v2.2.3)

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

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

Updates `global-hotkey` from 0.5.4 to 0.6.2
- [Release notes](https://github.com/amrbashir/global-hotkey/releases)
- [Changelog](https://github.com/tauri-apps/global-hotkey/blob/dev/CHANGELOG.md)
- [Commits](tauri-apps/global-hotkey@global-hotkey-v0.5.4...global-hotkey-v0.6.2)

Updates `h2` from 0.4.5 to 0.4.6
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.5...v0.4.6)

Updates `hyper-rustls` from 0.27.2 to 0.27.3
- [Release notes](https://github.com/rustls/hyper-rustls/releases)
- [Commits](rustls/hyper-rustls@v/0.27.2...v/0.27.3)

Updates `hyper-util` from 0.1.7 to 0.1.8
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.7...v0.1.8)

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 `infer` from 0.15.0 to 0.16.0
- [Release notes](https://github.com/bojand/infer/releases)
- [Commits](bojand/infer@v0.15.0...v0.16.0)

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

Updates `js-sys` from 0.3.69 to 0.3.70
- [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 `json-patch` from 1.4.0 to 2.0.0
- [Changelog](https://github.com/idubrov/json-patch/blob/main/CHANGELOG.md)
- [Commits](idubrov/json-patch@v1.4.0...v2.0.0)

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

Updates `libsqlite3-sys` from 0.29.0 to 0.30.1
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](https://github.com/rusqlite/rusqlite/commits)

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 `muda` from 0.13.5 to 0.14.1
- [Release notes](https://github.com/amrbashir/muda/releases)
- [Changelog](https://github.com/tauri-apps/muda/blob/dev/CHANGELOG.md)
- [Commits](tauri-apps/muda@muda-v0.13.5...muda-v0.14.1)

Updates `ndk` from 0.7.0 to 0.9.0
- [Release notes](https://github.com/rust-mobile/ndk/releases)
- [Commits](rust-mobile/ndk@ndk-0.7.0...ndk-0.9.0)

Updates `ndk-sys` from 0.4.1+23.1.7779620 to 0.6.0+11769913
- [Release notes](https://github.com/rust-mobile/ndk/releases)
- [Commits](rust-mobile/ndk@ndk-sys-0.4.1...ndk-sys-0.6.0)

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 `num_enum` from 0.5.11 to 0.7.3
- [Commits](illicitonion/num_enum@0.5.11...0.7.3)

Updates `num_enum_derive` from 0.5.11 to 0.7.3
- [Commits](illicitonion/num_enum@0.5.11...0.7.3)

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

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 `quinn` from 0.11.3 to 0.11.5
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-0.11.3...quinn-0.11.5)

Updates `quinn-udp` from 0.5.4 to 0.5.5
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-udp-0.5.4...quinn-udp-0.5.5)

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 `raw-window-handle` from 0.5.2 to 0.6.2
- [Release notes](https://github.com/rust-windowing/raw-window-handle/releases)
- [Changelog](https://github.com/rust-windowing/raw-window-handle/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/raw-window-handle@v0.5.2...v0.6.2)

Updates `redox_syscall` from 0.5.3 to 0.5.4

Updates `redox_users` from 0.4.5 to 0.4.6

Updates `reqwest` from 0.12.5 to 0.12.7
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.5...v0.12.7)

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

Updates `rustls` from 0.23.12 to 0.23.13
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.12...v/0.23.13)

Updates `rustls-webpki` from 0.102.6 to 0.102.8
- [Release notes](https://github.com/rustls/webpki/releases)
- [Commits](rustls/webpki@v/0.102.6...v/0.102.8)

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

Updates `softbuffer` from 0.4.5 to 0.4.6
- [Release notes](https://github.com/rust-windowing/softbuffer/releases)
- [Changelog](https://github.com/rust-windowing/softbuffer/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/softbuffer@v0.4.5...v0.4.6)

Updates `swift-rs` from 1.0.6 to 1.0.7
- [Release notes](https://github.com/Brendonovich/swift-rs/releases)
- [Commits](Brendonovich/swift-rs@1.0.6...1.0.7)

Updates `system-configuration` from 0.5.1 to 0.6.1
- [Changelog](https://github.com/mullvad/system-configuration-rs/blob/main/CHANGELOG.md)
- [Commits](mullvad/system-configuration-rs@v0.5.1...v0.6.1)

Updates `system-configuration-sys` from 0.5.0 to 0.6.0
- [Changelog](https://github.com/mullvad/system-configuration-rs/blob/main/CHANGELOG.md)
- [Commits](mullvad/system-configuration-rs@v0.5.0...v0.6.0)

Updates `tao` from 0.28.1 to 0.30.0
- [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-v0.28.1...tao-v0.30)

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 `tauri-codegen` from 2.0.0-rc.2 to 2.0.0-rc.11
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-codegen-v2.0.0-rc.2...tauri-codegen-v2.0.0-rc.11)

Updates `tauri-macros` from 2.0.0-rc.2 to 2.0.0-rc.10
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-macros-v2.0.0-rc.2...tauri-macros-v2.0.0-rc.10)

Updates `tauri-plugin` from 2.0.0-rc.2 to 2.0.0-rc.11
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-plugin-v2.0.0-rc.2...tauri-plugin-v2.0.0-rc.11)

Updates `tauri-runtime` from 2.0.0-rc.2 to 2.0.0-rc.11
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-runtime-v2.0.0-rc.2...tauri-runtime-v2.0.0-rc.11)

Updates `tauri-runtime-wry` from 2.0.0-rc.2 to 2.0.0-rc.12
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-runtime-wry-v2.0.0-rc.2...tauri-runtime-wry-v2.0.0-rc.12)

Updates `tauri-utils` from 2.0.0-rc.2 to 2.0.0-rc.11
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-utils-v2.0.0-rc.2...tauri-utils-v2.0.0-rc.11)

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

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-layer` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-layer-0.3.2...tower-layer-0.3.3)

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 `tray-icon` from 0.14.3 to 0.17.0
- [Release notes](https://github.com/tauri-apps/tray-icon/releases)
- [Changelog](https://github.com/tauri-apps/tray-icon/blob/dev/CHANGELOG.md)
- [Commits](tauri-apps/tray-icon@tray-icon-v0.14.3...tray-icon-v0.17)

Updates `typeid` from 1.0.0 to 1.0.2
- [Release notes](https://github.com/dtolnay/typeid/releases)
- [Commits](dtolnay/typeid@1.0.0...1.0.2)

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-segmentation` from 1.11.0 to 1.12.0
- [Commits](unicode-rs/unicode-segmentation@v1.11.0...v1.12.0)

Updates `urlpattern` from 0.2.0 to 0.3.0
- [Release notes](https://github.com/denoland/rust-urlpattern/releases)
- [Commits](denoland/rust-urlpattern@0.2.0...0.3.0)

Updates `wasm-bindgen` from 0.2.92 to 0.2.93
- [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.93)

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

Updates `wasm-bindgen-futures` from 0.4.42 to 0.4.43
- [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 `wasm-bindgen-macro` from 0.2.92 to 0.2.93
- [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.93)

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

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

Updates `web-sys` from 0.3.69 to 0.3.70
- [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 `webpki-roots` from 0.26.3 to 0.26.5
- [Release notes](https://github.com/rustls/webpki-roots/releases)
- [Commits](rustls/webpki-roots@v/0.26.3...v/0.26.5)

Updates `webview2-com` from 0.31.0 to 0.33.0
- [Commits](https://github.com/wravery/webview2-rs/commits)

Updates `webview2-com-macros` from 0.7.0 to 0.8.0
- [Commits](https://github.com/wravery/webview2-rs/commits)

Updates `webview2-com-sys` from 0.31.0 to 0.33.0
- [Commits](https://github.com/wravery/webview2-rs/commits)

Updates `window-vibrancy` from 0.5.0 to 0.5.2
- [Release notes](https://github.com/tauri-apps/tauri-plugin-vibrancy/releases)
- [Changelog](https://github.com/tauri-apps/window-vibrancy/blob/dev/CHANGELOG.md)
- [Commits](tauri-apps/window-vibrancy@window-vibrancy-v0.5.0...window-vibrancy-v0.5.2)

Updates `wry` from 0.41.0 to 0.43.1
- [Release notes](https://github.com/tauri-apps/wry/releases)
- [Changelog](https://github.com/tauri-apps/wry/blob/dev/CHANGELOG.md)
- [Commits](tauri-apps/wry@wry-v0.41...wry-v0.43.1)

---
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: diesel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-global-shortcut
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-process
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-dialog
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-fs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-notification
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-shell
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-os
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-plugin-http
  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-patch
  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: brotli
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: brotli-decompressor
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: bytemuck
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: camino
  dependency-type: indirect
  update-type: version-update:semver-patch
  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: diesel_derives
  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-patch
  dependency-group: all
- dependency-name: flate2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: global-hotkey
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: h2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: hyper-rustls
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: hyper-util
  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: infer
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ipnet
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: js-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: json-patch
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: libsqlite3-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: mac-notification-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: muda
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ndk
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ndk-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: notify-rust
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: num_enum
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: num_enum_derive
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: object
  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: quinn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: quinn-udp
  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: raw-window-handle
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: redox_syscall
  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: reqwest
  dependency-type: indirect
  update-type: version-update:semver-patch
  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: rustls
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rustls-webpki
  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: softbuffer
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: swift-rs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: system-configuration
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: system-configuration-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tao
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tao-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-codegen
  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-plugin
  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: 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-layer
  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: tray-icon
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typeid
  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-segmentation
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: urlpattern
  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-futures
  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: web-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: webpki-roots
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: webview2-com
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: webview2-com-macros
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: webview2-com-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: window-vibrancy
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wry
  dependency-type: indirect
  update-type: version-update:semver-minor
  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 Sep 16, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 23, 2024

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

@dependabot dependabot bot closed this Sep 23, 2024
@dependabot dependabot bot deleted the dependabot/cargo/src-tauri/all-281d8f2fe7 branch September 23, 2024 20:46
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