Skip to content
This repository was archived by the owner on Apr 6, 2026. It is now read-only.

chore(deps): update rust crate tauri to v2.0.0-beta.20 [security] - #6

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/crate-tauri-vulnerability
Open

chore(deps): update rust crate tauri to v2.0.0-beta.20 [security]#6
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/crate-tauri-vulnerability

Conversation

@renovate

@renovate renovate Bot commented Jan 24, 2025

Copy link
Copy Markdown

This PR contains the following updates:

Package Type Update Change
tauri (source) dependencies patch 2.0.0-beta.142.0.0-beta.20

GitHub Vulnerability Alerts

CVE-2024-35222

Impact

Remote origin iFrames in Tauri applications can access the Tauri IPC endpoints without being explicitly allowed in the dangerousRemoteDomainIpcAccess in v1 and in the capabilities in v2.
This bypasses the origin check and allows iFrames to access the IPC endpoints exposed to the parent window.

For this to be exploitable, an attacker must have script execution (e.g. XSS) in a script-enabled iFrame of a Tauri application.

Patches

The patches include changes to wry and the behaviour of Tauri applications using iFrames. Previously, we injected the Tauri IPC initialization script into iFrames on MacOS, which was unintended. This is now also disabled to be consistent with all other supported operating systems.

This means that the Tauri invoke functionality is no longer accessible from iFrames, except on Windows when the origin of the Tauri window and the origin of the iFrame are the same.

We have also added a new protection mechanism to the IPC layer to protect against iFrames directly using the WebView IPC functionality (e.g. via window.ipc.postMessage).
This introduces an invoke key (__TAURI_INVOKE_KEY__) which is used to prevent frames that have not been initialized by the Tauri core from sending messages to the Tauri IPC.
This key is not used to protect against compromised Tauri windows or WebViews and is only intended to block IPC access from sub-frames.

Unauthorized messages to the Tauri IPC from an iFrame or other non-initialized context will log a warning and the potentially malicious IPC call will be ignored.

Workarounds

These workarounds should only be considered if you are unable to upgrade to the patched Tauri version in time.

As a workaround for v1 Tauri applications, we recommend using a dedicated window for untrusted origins instead of iFrames, or disabling script execution within the iFrame.

For v2 Tauri applications targeting Linux, it is possible to use either a dedicated window or multiple WebViews in the main window to simulate iFrame behavior.
On other platforms, it is only possible to use dedicated windows or disable script execution inside the iFrame, as described for v1.

References

If you have any questions or comments about this advisory:

Open an issue in tauri or
Email us at security@tauri.app

The original submissions from the reporter:

Context

This is following up on the comments here: https://github.com/tauri-apps/tauri/issues/8316, and here: https://discord.com/channels/616186924390023171/1227969106091966475. I was asked to submit my findings as a vulnerability report.

Firstly, thank you to all of you from the core team that helped out and guided me through understanding this issue! Huge fan of Tauri, and I'm excited to see it succeed!

Summary

In short, any iframe you add in your Tauri frontend will get access to Tauri APIs, even in isolation mode.

Any embedded iframe that you don't own will be able to invoke the same APIs your app does. While isolation mode allows for finer grained control of what Tauri APIs can be called, it is not possible to determine if a request is coming your own app, or from a potentially malicious iframe.

This means your app could be open to malicious iframe being able to execute any command your app can, and there doesn't seem to be a mechanism to filter these out.

Details

I'm not an expert in Tauri source code, so I can't be sure I'm on the right track here, but I assume this has to do with how the webview is bootstrapped with the Tauri APIs.

I know there's various handlers that get set, such as opening target="_blank" links via a shell command, and of course setting invoke and other such APIs. Sounds like the issue is somewhere there and the APIs are being injected where they shouldn't.

Technically it seems that an attacker couldn't actually receive a response from the command it executes. Tauri IPC can't route the response back to the invoking iframe, but the action is still executed, with the response just being dropped. You see these messages in the logs:

[Warning] [TAURI] Couldn't find callback id 3399436348 in window. This happens when the app is reloaded while Rust is running an asynchronous operation.

PoC

Repository with reproduction steps: https://github.com/begleynk/tauri-sandbox-iframe-escape-poc

Building on that POC, here is a video of a Codepen iframe running inside an isolation mode Tauri app, invoking the same "Greet" command the frontend is invoking.

Export-1712922222595.mp4

This is done with the following code running inside Codepen:

window.__TAURI_INVOKE__("greet", { name: "From CodePen" })

Impact

Valid commands with potentially unwanted consequences ("delete project", "transfer credits", etc.) could be invoked by an attacker that controls the content of an iframe running inside a Tauri app.


Release Notes

tauri-apps/tauri (tauri)

v2.0.0-beta.20: tauri v2.0.0-beta.20

Compare Source

Updating crates.io index

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 627 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (493 crate dependencies)

[2.0.0-beta.20]

New Features
  • ae6b13dfc(#​9789) Add app-region: drag to HTML elements with data-tauri-drag-region on Windows, only WebView2 123+, which should fix dragging using touch.
  • ec0e092ec(#​9770) Add App/AppHandle/Window/Webview/WebviewWindow::monitor_from_point(x, y) getter to get the monitor from a given point.
Enhancements
Bug Fixes
Security fixes
  • d950ac123 Only process IPC commands from the main frame.
Dependencies
  • Upgraded to tauri-utils@2.0.0-beta.16
  • Upgraded to tauri-runtime-wry@2.0.0-beta.17
  • Upgraded to tauri-runtime@2.0.0-beta.17
  • Upgraded to tauri-macros@2.0.0-beta.16
  • Upgraded to tauri-build@2.0.0-beta.16

Cargo Publish

Updating crates.io index
   Packaging tauri v2.0.0-beta.20 (/home/runner/work/tauri/tauri/core/tauri)
    Updating crates.io index
   Verifying tauri v2.0.0-beta.20 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded muda v0.13.4
  Downloaded libappindicator-sys v0.9.0
  Downloaded serialize-to-javascript-impl v0.1.1
  Downloaded tokio-macros v2.2.0
  Downloaded signal-hook-registry v1.4.2
  Downloaded serialize-to-javascript v0.1.1
  Downloaded serde_repr v0.1.19
  Downloaded state v0.6.0
  Downloaded libloading v0.7.4
  Downloaded unicode-segmentation v1.11.0
  Downloaded tray-icon v0.13.5
  Downloaded libappindicator v0.9.0
  Downloaded keyboard-types v0.7.0
  Downloaded tauri-macros v2.0.0-beta.16
  Downloaded tauri-build v2.0.0-beta.16
  Downloaded tauri-runtime-wry v2.0.0-beta.17
   Compiling proc-macro2 v1.0.83
   Compiling unicode-ident v1.0.12
   Compiling serde v1.0.202
   Compiling libc v0.2.155
   Compiling hashbrown v0.14.5
   Compiling equivalent v1.0.1
   Compiling winnow v0.5.40
   Compiling indexmap v2.2.6
   Compiling quote v1.0.36
   Compiling syn v2.0.65
   Compiling smallvec v1.13.2
   Compiling heck v0.5.0
   Compiling pkg-config v0.3.30
   Compiling target-lexicon v0.12.14
   Compiling cfg-if v1.0.0
   Compiling version-compare v0.2.0
   Compiling cfg-expr v0.15.8
   Compiling autocfg v1.3.0
   Compiling syn v1.0.109
   Compiling once_cell v1.19.0
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling version_check v0.9.4
   Compiling memchr v2.7.2
   Compiling getrandom v0.2.15
   Compiling thiserror v1.0.61
   Compiling getrandom v0.1.16
   Compiling pin-project-lite v0.2.14
   Compiling futures-core v0.3.30
   Compiling fnv v1.0.7
   Compiling rand_core v0.6.4
   Compiling slab v0.4.9
   Compiling rand_chacha v0.3.1
   Compiling rand_core v0.5.1
   Compiling itoa v1.0.11
   Compiling rand v0.8.5
   Compiling phf_shared v0.10.0
   Compiling pin-utils v0.1.0
   Compiling futures-task v0.3.30
   Compiling parking_lot_core v0.9.10
   Compiling rand_chacha v0.2.2
   Compiling rand_pcg v0.2.1
   Compiling proc-macro-error-attr v1.0.4
   Compiling lock_api v0.4.12
   Compiling semver v1.0.23
   Compiling log v0.4.21
   Compiling rand v0.7.3
   Compiling proc-macro-error v1.0.4
   Compiling phf_shared v0.8.0
   Compiling scopeguard v1.2.0
   Compiling phf_generator v0.8.0
   Compiling serde_derive v1.0.202
   Compiling thiserror-impl v1.0.61
   Compiling futures-macro v0.3.30
   Compiling futures-util v0.3.30
   Compiling futures-channel v0.3.30
   Compiling phf_generator v0.10.0
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling byteorder v1.5.0
   Compiling precomputed-hash v0.1.1
   Compiling bitflags v1.3.2
   Compiling new_debug_unreachable v1.0.6
   Compiling percent-encoding v2.3.1
   Compiling tinyvec_macros v0.1.1
   Compiling tinyvec v1.6.0
   Compiling ryu v1.0.18
   Compiling heck v0.4.1
   Compiling unicode-normalization v0.1.23
   Compiling futures-executor v0.3.30
   Compiling form_urlencoded v1.2.1
   Compiling string_cache_codegen v0.5.2
   Compiling phf_codegen v0.10.0
   Compiling unicode-bidi v0.3.15
   Compiling mac v0.1.1
   Compiling futf v0.1.5
   Compiling phf_macros v0.8.0
   Compiling markup5ever v0.11.0
   Compiling idna v0.5.0
   Compiling cssparser v0.27.2
   Compiling dtoa v1.0.9
   Compiling utf-8 v0.7.6
   Compiling convert_case v0.4.0
   Compiling derive_more v0.99.17
   Compiling serde_spanned v0.6.6
   Compiling toml_datetime v0.6.3
   Compiling toml_edit v0.20.2
   Compiling bitflags v2.5.0
   Compiling rustc_version v0.4.0
   Compiling tendril v0.4.3
   Compiling dtoa-short v0.3.4
   Compiling phf v0.8.0
   Compiling phf_codegen v0.8.0
   Compiling cssparser-macros v0.6.1
   Compiling toml v0.8.2
   Compiling proc-macro-crate v2.0.2
   Compiling system-deps v6.2.2
   Compiling phf v0.10.1
   Compiling strsim v0.11.1
   Compiling itoa v0.4.8
   Compiling ident_case v1.0.1
   Compiling matches v0.1.10
   Compiling darling_core v0.20.9
   Compiling selectors v0.22.0
   Compiling toml_edit v0.19.15
   Compiling html5ever v0.26.0
   Compiling glib-sys v0.18.1
   Compiling gobject-sys v0.18.0
   Compiling gio-sys v0.18.1
   Compiling gdk-sys v0.18.0
   Compiling pango-sys v0.18.0
   Compiling gdk-pixbuf-sys v0.18.0
   Compiling glib-macros v0.18.5
   Compiling cairo-sys-rs v0.18.2
   Compiling atk-sys v0.18.0
   Compiling stable_deref_trait v1.2.0
   Compiling nodrop v0.1.14
   Compiling hashbrown v0.12.3
   Compiling gio v0.18.4
   Compiling servo_arc v0.1.1
   Compiling darling_macro v0.20.9
   Compiling gtk-sys v0.18.0
   Compiling fxhash v0.2.1
   Compiling aho-corasick v1.1.3
   Compiling unic-common v0.9.0
   Compiling futures-io v0.3.30
   Compiling regex-syntax v0.8.3
   Compiling thin-slice v0.1.1
   Compiling unic-char-range v0.9.0
   Compiling unic-char-property v0.9.0
   Compiling darling v0.20.9
   Compiling unic-ucd-version v0.9.0
   Compiling bytes v1.6.0
   Compiling phf_shared v0.11.2
   Compiling alloc-no-stdlib v2.0.4
   Compiling alloc-stdlib v0.2.2
   Compiling phf_generator v0.11.2
   Compiling unic-ucd-ident v0.9.0
   Compiling serde_with_macros v3.8.1
   Compiling glib v0.18.5
   Compiling regex-automata v0.4.6
   Compiling serde_json v1.0.117
   Compiling parking_lot v0.12.2
   Compiling phf_macros v0.11.2
   Compiling brotli-decompressor v2.5.1
   Compiling regex v1.10.4
   Compiling memoffset v0.9.1
   Compiling indexmap v1.9.3
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling brotli v3.5.0
   Compiling phf v0.11.2
   Compiling string_cache v0.8.7
   Compiling field-offset v0.3.6
   Compiling ctor v0.2.8
   Compiling dunce v1.0.4
   Compiling glob v0.3.1
   Compiling cairo-rs v0.18.5
   Compiling camino v1.1.7
   Compiling typenum v1.17.0
   Compiling http v1.1.0
   Compiling proc-macro-crate v1.3.1
   Compiling url v2.5.0
   Compiling serde_derive_internals v0.29.1
   Compiling uuid v1.8.0
   Compiling generic-array v0.14.7
   Compiling gtk v0.18.1
   Compiling schemars v0.8.20
   Compiling cfb v0.7.3
   Compiling schemars_derive v0.8.20
   Compiling gtk3-macros v0.18.0
   Compiling atk v0.18.0
   Compiling javascriptcore-rs-sys v1.1.1
   Compiling soup3-sys v0.5.0
   Compiling cargo-platform v0.1.8
   Compiling x11 v2.21.0
   Compiling simd-adler32 v0.3.7
   Compiling dyn-clone v1.0.17
   Compiling cargo_metadata v0.18.1
   Compiling kuchikiki v0.8.2
   Compiling infer v0.15.0
   Compiling urlpattern v0.2.0
   Compiling json-patch v1.4.0
   Compiling pango v0.18.3
   Compiling gdk-pixbuf v0.18.5
   Compiling serde_with v3.8.1
   Compiling gdkx11-sys v0.18.0
   Compiling gdk v0.18.0
   Compiling webkit2gtk-sys v2.0.1
   Compiling num_cpus v1.16.0
   Compiling socket2 v0.5.7
   Compiling mio v0.8.11
   Compiling crossbeam-utils v0.8.20
   Compiling adler v1.0.2
   Compiling miniz_oxide v0.7.3
   Compiling tokio v1.37.0
   Compiling tauri-utils v2.0.0-beta.16
   Compiling dpi v0.1.1
   Compiling crc32fast v1.4.2
   Compiling x11-dl v2.21.0
   Compiling cc v1.0.98
   Compiling httparse v1.8.0
   Compiling anyhow v1.0.86
   Compiling embed-resource v2.4.2
   Compiling flate2 v1.0.30
   Compiling crypto-common v0.1.6
   Compiling block-buffer v0.10.4
   Compiling fdeflate v0.3.4
   Compiling http-body v1.0.0
   Compiling toml v0.7.8
   Compiling pin-project-internal v1.1.5
   Compiling tracing-core v0.1.32
   Compiling dirs-sys-next v0.1.2
   Compiling raw-window-handle v0.6.2
   Compiling try-lock v0.2.5
   Compiling want v0.3.1
   Compiling dirs-next v2.0.0
   Compiling pin-project v1.1.5
   Compiling tracing v0.1.40
   Compiling tauri-winres v0.1.1
   Compiling png v0.17.13
   Compiling digest v0.10.7
   Compiling crossbeam-channel v0.5.13
   Compiling soup3 v0.5.0
   Compiling javascriptcore-rs v1.1.2
   Compiling cargo_toml v0.17.2
   Compiling dlopen2_derive v0.4.0
   Compiling tauri-runtime v2.0.0-beta.17
   Compiling tower-layer v0.3.2
   Compiling base64 v0.22.1
   Compiling tower-service v0.3.2
   Compiling cpufeatures v0.2.12
   Compiling wry v0.40.0
   Compiling sha2 v0.10.8
   Compiling tower v0.4.13
   Compiling dlopen2 v0.7.0
   Compiling tauri-build v2.0.0-beta.16
   Compiling webkit2gtk v2.0.1
   Compiling hyper v1.3.1
   Compiling ico v0.3.0
   Compiling gdkx11 v0.18.0
   Compiling gdkwayland-sys v0.18.0
   Compiling instant v0.1.13
   Compiling tauri-runtime-wry v2.0.0-beta.17
   Compiling futures-sink v0.3.30
   Compiling lazy_static v1.4.0
   Compiling unicode-segmentation v1.11.0
   Compiling keyboard-types v0.7.0
   Compiling tao v0.28.0
   Compiling tokio-util v0.7.11
   Compiling tauri-codegen v2.0.0-beta.16
   Compiling hyper-util v0.1.3
   Compiling tauri v2.0.0-beta.20 (/home/runner/work/tauri/tauri/target/package/tauri-2.0.0-beta.20)
   Compiling http-body-util v0.1.1
   Compiling serde_urlencoded v0.7.1
   Compiling serialize-to-javascript-impl v0.1.1
   Compiling sync_wrapper v0.1.2
   Compiling mime v0.3.17
   Compiling ipnet v2.9.0
   Compiling tauri-macros v2.0.0-beta.16
   Compiling serialize-to-javascript v0.1.1
   Compiling reqwest v0.12.4
   Compiling muda v0.13.4
   Compiling serde_repr v0.1.19
   Compiling state v0.6.0
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 30s
    Packaged 139 files, 1.0MiB (233.8KiB compressed)
   Uploading tauri v2.0.0-beta.20 (/home/runner/work/tauri/tauri/core/tauri)
    Uploaded tauri v2.0.0-beta.20 to registry `crates-io`
note: waiting for `tauri v2.0.0-beta.20` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri v2.0.0-beta.20 at registry `crates-io`

v2.0.0-beta.19: tauri-build v2.0.0-beta.19

Compare Source

Updating git repository https://github.com/chippers/schemars.git
Updating crates.io index
Locking 498 packages to latest compatible versions
Adding addr2line v0.22.0 (latest: v0.23.0)
Adding base64 v0.21.7 (latest: v0.22.1)
Adding bit-set v0.5.3 (latest: v0.6.0)
Adding bit-vec v0.6.3 (latest: v0.7.0)
Adding bitflags v1.3.2 (latest: v2.6.0)
Adding brotli v3.5.0 (latest: v6.0.0)
Adding brotli-decompressor v2.5.1 (latest: v4.0.1)
Adding cairo-rs v0.18.5 (latest: v0.20.0)
Adding cairo-sys-rs v0.18.2 (latest: v0.20.0)
Adding cargo_toml v0.17.2 (latest: v0.20.3)
Adding cfb v0.7.3 (latest: v0.10.0)
Adding convert_case v0.4.0 (latest: v0.6.0)
Adding cssparser v0.27.2 (latest: v0.34.0)
Adding encode_unicode v0.3.6 (latest: v1.0.0)
Adding env_logger v0.8.4 (latest: v0.11.3)
Adding foreign-types v0.3.2 (latest: v0.5.0)
Adding foreign-types-shared v0.1.1 (latest: v0.3.1)
Adding gdk-pixbuf v0.18.5 (latest: v0.20.0)
Adding gdk-pixbuf-sys v0.18.0 (latest: v0.20.0)
Adding generator v0.7.5 (latest: v0.8.1)
Adding generic-array v0.14.7 (latest: v1.1.0)
Adding getrandom v0.1.16 (latest: v0.2.15)
Adding gimli v0.29.0 (latest: v0.30.0)
Adding gio v0.18.4 (latest: v0.20.0)
Adding gio-sys v0.18.1 (latest: v0.20.0)
Adding glib v0.18.5 (latest: v0.20.0)
Adding glib-macros v0.18.5 (latest: v0.20.0)
Adding glib-sys v0.18.1 (latest: v0.20.0)
Adding gobject-sys v0.18.0 (latest: v0.20.0)
Adding hashbrown v0.12.3 (latest: v0.14.5)
Adding heck v0.4.1 (latest: v0.5.0)
Adding hermit-abi v0.3.9 (latest: v0.4.0)
Adding html5ever v0.26.0 (latest: v0.27.0)
Adding idna v0.5.0 (latest: v1.0.2)
Adding image v0.24.9 (latest: v0.25.1)
Adding indexmap v1.9.3 (latest: v2.2.6)
Adding infer v0.15.0 (latest: v0.16.0)
Adding itoa v0.4.8 (latest: v1.0.11)
Adding jni-sys v0.3.0 (latest: v0.4.0)
Adding json-patch v1.4.0 (latest: v2.0.0)
Adding libloading v0.7.4 (latest: v0.8.4)
Adding linux-raw-sys v0.4.14 (latest: v0.6.4)
Adding loom v0.5.6 (latest: v0.7.2)
Adding malloc_buf v0.0.6 (latest: v1.0.0)
Adding markup5ever v0.11.0 (latest: v0.12.1)
Adding matchers v0.1.0 (latest: v0.2.0)
Adding mio v0.8.11 (latest: v1.0.0)
Adding ndk v0.7.0 (latest: v0.9.0)
Adding ndk-sys v0.4.1+23.1.7779620 (latest: v0.6.0+11769913)
Adding nu-ansi-term v0.46.0 (latest: v0.50.0)
Adding num_enum v0.5.11 (latest: v0.7.2)
Adding num_enum_derive v0.5.11 (latest: v0.7.2)
Adding pango v0.18.3 (latest: v0.20.0)
Adding pango-sys v0.18.0 (latest: v0.20.0)
Adding phf v0.8.0 (latest: v0.11.2)
Adding phf v0.10.1 (latest: v0.11.2)
Adding phf_codegen v0.8.0 (latest: v0.11.2)
Adding phf_codegen v0.10.0 (latest: v0.11.2)
Adding phf_generator v0.8.0 (latest: v0.11.2)
Adding phf_generator v0.10.0 (latest: v0.11.2)
Adding phf_macros v0.8.0 (latest: v0.11.2)
Adding phf_shared v0.8.0 (latest: v0.11.2)
Adding phf_shared v0.10.0 (latest: v0.11.2)
Adding proc-macro-crate v1.3.1 (latest: v3.1.0)
Adding proc-macro-crate v2.0.2 (latest: v3.1.0)
Adding quick-error v1.2.3 (latest: v2.0.1)
Adding quick-xml v0.32.0 (latest: v0.36.0)
Adding rand v0.7.3 (latest: v0.8.5)
Adding rand_chacha v0.2.2 (latest: v0.3.1)
Adding rand_core v0.5.1 (latest: v0.6.4)
Adding rand_hc v0.2.0 (latest: v0.3.2)
Adding rand_pcg v0.2.1 (latest: v0.3.1)
Adding raw-window-handle v0.5.2 (latest: v0.6.2)
Adding regex-automata v0.1.10 (latest: v0.4.7)
Adding regex-syntax v0.6.29 (latest: v0.8.4)
Adding rustc-hash v1.1.0 (latest: v2.0.0)
Adding selectors v0.22.0 (latest: v0.25.0)
Adding servo_arc v0.1.1 (latest: v0.3.0)
Adding siphasher v0.3.11 (latest: v1.0.1)
Adding soup3 v0.5.0 (latest: v0.7.0)
Adding soup3-sys v0.5.0 (latest: v0.7.0)
Adding syn v1.0.109 (latest: v2.0.71)
Adding system-deps v6.2.2 (latest: v7.0.1)
Adding toml v0.7.8 (latest: v0.8.14)
Adding toml v0.8.2 (latest: v0.8.14)
Adding toml_datetime v0.6.3 (latest: v0.6.6)
Adding toml_edit v0.19.15 (latest: v0.22.15)
Adding toml_edit v0.20.2 (latest: v0.22.15)
Adding wasi v0.9.0+wasi-snapshot-preview1 (latest: v0.13.1+wasi-0.2.0)
Adding wasi v0.11.0+wasi-snapshot-preview1 (latest: v0.13.1+wasi-0.2.0)
Adding windows v0.48.0 (latest: v0.58.0)
Adding windows v0.57.0 (latest: v0.58.0)
Adding windows-core v0.52.0 (latest: v0.58.0)
Adding windows-core v0.57.0 (latest: v0.58.0)
Adding windows-implement v0.57.0 (latest: v0.58.0)
Adding windows-interface v0.57.0 (latest: v0.58.0)
Adding windows-result v0.1.2 (latest: v0.2.0)
Adding windows-sys v0.45.0 (latest: v0.52.0)
Adding windows-sys v0.48.0 (latest: v0.52.0)
Adding windows-targets v0.42.2 (latest: v0.52.6)
Adding windows-targets v0.48.5 (latest: v0.52.6)
Adding windows_aarch64_gnullvm v0.42.2 (latest: v0.52.6)
Adding windows_aarch64_gnullvm v0.48.5 (latest: v0.52.6)
Adding windows_aarch64_msvc v0.42.2 (latest: v0.52.6)
Adding windows_aarch64_msvc v0.48.5 (latest: v0.52.6)
Adding windows_i686_gnu v0.42.2 (latest: v0.52.6)
Adding windows_i686_gnu v0.48.5 (latest: v0.52.6)
Adding windows_i686_msvc v0.42.2 (latest: v0.52.6)
Adding windows_i686_msvc v0.48.5 (latest: v0.52.6)
Adding windows_x86_64_gnu v0.42.2 (latest: v0.52.6)
Adding windows_x86_64_gnu v0.48.5 (latest: v0.52.6)
Adding windows_x86_64_gnullvm v0.42.2 (latest: v0.52.6)
Adding windows_x86_64_gnullvm v0.48.5 (latest: v0.52.6)
Adding windows_x86_64_msvc v0.42.2 (latest: v0.52.6)
Adding windows_x86_64_msvc v0.48.5 (latest: v0.52.6)
Adding winnow v0.5.40 (latest: v0.6.13)

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 638 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (498 crate dependencies)

[2.0.0-beta.19]

Bug Fixes
Dependencies
  • Upgraded to tauri-codegen@2.0.0-beta.19
  • Upgraded to tauri-utils@2.0.0-beta.19

Cargo Publish

Updating crates.io index
   Packaging tauri-build v2.0.0-beta.19 (/home/runner/work/tauri/tauri/core/tauri-build)
   Verifying tauri-build v2.0.0-beta.19 (/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded embed-resource v2.4.2
  Downloaded tauri-winres v0.1.1
  Downloaded cargo_toml v0.17.2
   Compiling proc-macro2 v1.0.86
   Compiling unicode-ident v1.0.12
   Compiling cfg-if v1.0.0
   Compiling libc v0.2.155
   Compiling serde v1.0.204
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling getrandom v0.1.16
   Compiling syn v1.0.109
   Compiling autocfg v1.3.0
   Compiling quote v1.0.36
   Compiling phf_shared v0.10.0
   Compiling syn v2.0.71
   Compiling getrandom v0.2.15
   Compiling rand_core v0.6.4
   Compiling rand_core v0.5.1
   Compiling rand_chacha v0.3.1
   Compiling rand_chacha v0.2.2
   Compiling rand v0.8.5
   Compiling rand_pcg v0.2.1
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling phf_generator v0.8.0
   Compiling hashbrown v0.14.5
   Compiling smallvec v1.13.2
   Compiling equivalent v1.0.1
   Compiling phf_generator v0.10.0
   Compiling lock_api v0.4.12
   Compiling indexmap v2.2.6
   Compiling parking_lot_core v0.9.10
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling fnv v1.0.7
   Compiling memchr v2.7.4
   Compiling new_debug_unreachable v1.0.6
   Compiling scopeguard v1.2.0
   Compiling semver v1.0.23
   Compiling tinyvec_macros v0.1.1
   Compiling tinyvec v1.8.0
   Compiling string_cache_codegen v0.5.2
   Compiling phf_codegen v0.10.0
   Compiling winnow v0.6.13
   Compiling precomputed-hash v0.1.1
   Compiling serde_json v1.0.120
   Compiling serde_derive v1.0.204
   Compiling byteorder v1.5.0
   Compiling ident_case v1.0.1
   Compiling strsim v0.11.1
   Compiling mac v0.1.1
   Compiling futf v0.1.5
   Compiling phf_macros v0.8.0
   Compiling darling_core v0.20.10
   Compiling cssparser v0.27.2
   Compiling markup5ever v0.11.0
   Compiling parking_lot v0.12.3
   Compiling unicode-normalization v0.1.23
   Compiling phf_codegen v0.8.0
   Compiling indexmap v1.9.3
   Compiling thiserror v1.0.62
   Compiling utf-8 v0.7.6
   Compiling dtoa v1.0.9
   Compiling percent-encoding v2.3.1
   Compiling convert_case v0.4.0
   Compiling unicode-bidi v0.3.15
   Compiling once_cell v1.19.0
   Compiling itoa v1.0.11
   Compiling log v0.4.22
   Compiling ryu v1.0.18
   Compiling idna v0.5.0
   Compiling derive_more v0.99.18
   Compiling form_urlencoded v1.2.1
   Compiling dtoa-short v0.3.5
   Compiling darling_macro v0.20.10
   Compiling tendril v0.4.3
   Compiling selectors v0.22.0
   Compiling phf v0.8.0
   Compiling html5ever v0.26.0
   Compiling cssparser-macros v0.6.1
   Compiling toml_datetime v0.6.6
   Compiling serde_spanned v0.6.6
   Compiling toml_edit v0.22.15
   Compiling string_cache v0.8.7
   Compiling thiserror-impl v1.0.62
   Compiling aho-corasick v1.1.3
   Compiling toml v0.8.14
   Compiling phf v0.10.1
   Compiling phf_shared v0.11.2
   Compiling regex-syntax v0.8.4
   Compiling hashbrown v0.12.3
   Compiling stable_deref_trait v1.2.0
   Compiling unic-char-range v0.9.0
   Compiling itoa v0.4.8
   Compiling unic-common v0.9.0
   Compiling matches v0.1.10
   Compiling nodrop v0.1.14
   Compiling camino v1.1.7
   Compiling servo_arc v0.1.1
   Compiling unic-ucd-version v0.9.0
   Compiling unic-char-property v0.9.0
   Compiling regex-automata v0.4.7
   Compiling phf_generator v0.11.2
   Compiling url v2.5.2
   Compiling darling v0.20.10
   Compiling fxhash v0.2.1
   Compiling serde_derive_internals v0.29.1
   Compiling thin-slice v0.1.1
   Compiling typeid v1.0.0
   Compiling winnow v0.5.40
   Compiling schemars v0.8.21
   Compiling uuid v1.10.0
   Compiling bitflags v1.3.2
   Compiling schemars_derive v0.8.21
   Compiling cfb v0.7.3
   Compiling toml_edit v0.19.15
   Compiling regex v1.10.5
   Compiling erased-serde v0.4.5
   Compiling serde_with_macros v3.8.3
   Compiling phf_macros v0.11.2
   Compiling unic-ucd-ident v0.9.0
   Compiling rustc_version v0.4.0
   Compiling cargo-platform v0.1.8
   Compiling dyn-clone v1.0.17
   Compiling anyhow v1.0.86
   Compiling option-ext v0.2.0
   Compiling cc v1.1.1
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling dirs-sys v0.4.1
   Compiling embed-resource v2.4.2
   Compiling phf v0.11.2
   Compiling cargo_metadata v0.18.1
   Compiling serde_with v3.8.3
   Compiling urlpattern v0.2.0
   Compiling kuchikiki v0.8.2
   Compiling toml v0.7.8
   Compiling serde-untagged v0.1.6
   Compiling infer v0.15.0
   Compiling json-patch v1.4.0
   Compiling ctor v0.2.8
   Compiling glob v0.3.1
   Compiling dunce v1.0.4
   Compiling tauri-winres v0.1.1
   Compiling dirs v5.0.1
   Compiling tauri-utils v2.0.0-beta.19
   Compiling cargo_toml v0.17.2
   Compiling heck v0.5.0
   Compiling tauri-build v2.0.0-beta.19 (/home/runner/work/tauri/tauri/target/package/tauri-build-2.0.0-beta.19)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 35.14s
    Packaged 14 files, 73.7KiB (20.7KiB compressed)
   Uploading tauri-build v2.0.0-beta.19 (/home/runner/work/tauri/tauri/core/tauri-build)
    Uploaded tauri-build v2.0.0-beta.19 to registry `crates-io`
note: waiting for `tauri-build v2.0.0-beta.19` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-build v2.0.0-beta.19 at registry `crates-io`

v2.0.0-beta.18: tauri-build v2.0.0-beta.18

Compare Source

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 630 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (498 crate dependencies)

[2.0.0-beta.18]

Enhancements
Dependencies
  • Upgraded to tauri-utils@2.0.0-beta.18
  • Upgraded to tauri-codegen@2.0.0-beta.18
  • f955f7b49 (#​9929) Switch from dirs_next to dirs as dirs_next is now unmaintained while dirs is

Cargo Publish

Updating crates.io index
   Packaging tauri-build v2.0.0-beta.18 (/home/runner/work/tauri/tauri/core/tauri-build)
   Verifying tauri-build v2.0.0-beta.18 (/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded embed-resource v2.4.2
  Downloaded tauri-winres v0.1.1
  Downloaded cargo_toml v0.17.2
   Compiling proc-macro2 v1.0.86
   Compiling unicode-ident v1.0.12
   Compiling cfg-if v1.0.0
   Compiling libc v0.2.155
   Compiling serde v1.0.203
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling getrandom v0.1.16
   Compiling syn v1.0.109
   Compiling autocfg v1.3.0
   Compiling quote v1.0.36
   Compiling phf_shared v0.10.0
   Compiling getrandom v0.2.15
   Compiling syn v2.0.68
   Compiling rand_core v0.6.4
   Compiling rand_core v0.5.1
   Compiling rand_chacha v0.3.1
   Compiling rand_pcg v0.2.1
   Compiling rand v0.8.5
   Compiling rand_chacha v0.2.2
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling phf_generator v0.8.0
   Compiling equivalent v1.0.1
   Compiling smallvec v1.13.2
   Compiling hashbrown v0.14.5
   Compiling phf_generator v0.10.0
   Compiling lock_api v0.4.12
   Compiling parking_lot_core v0.9.10
   Compiling indexmap v2.2.6
   Compiling fnv v1.0.7
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling new_debug_unreachable v1.0.6
   Compiling tinyvec_macros v0.1.1
   Compiling scopeguard v1.2.0
   Compiling semver v1.0.23
   Compiling memchr v2.7.4
   Compiling tinyvec v1.6.1
   Compiling string_cache_codegen v0.5.2
   Compiling phf_codegen v0.10.0
   Compiling winnow v0.6.13
   Compiling precomputed-hash v0.1.1
   Compiling serde_derive v1.0.203
   Compiling mac v0.1.1
   Compiling strsim v0.11.1
   Compiling serde_json v1.0.120
   Compiling ident_case v1.0.1
   Compiling byteorder v1.5.0
   Compiling phf_macros v0.8.0
   Compiling cssparser v0.27.2
   Compiling darling_core v0.20.9
   Compiling futf v0.1.5
   Compiling markup5ever v0.11.0
   Compiling unicode-normalization v0.1.23
   Compiling parking_lot v0.12.3
   Compiling phf_codegen v0.8.0
   Compiling indexmap v1.9.3
   Compiling unicode-bidi v0.3.15
   Compiling itoa v1.0.11
   Compiling log v0.4.22
   Compiling dtoa v1.0.9
   Compiling thiserror v1.0.61
   Compiling utf-8 v0.7.6
   Compiling once_cell v1.19.0
   Compiling convert_case v0.4.0
   Compiling ryu v1.0.18
   Compiling percent-encoding v2.3.1
   Compiling darling_macro v0.20.9
   Compiling derive_more v0.99.18
   Compiling form_urlencoded v1.2.1
   Compiling tendril v0.4.3
   Compiling dtoa-short v0.3.5
   Compiling idna v0.5.0
   Compiling selectors v0.22.0
   Compiling phf v0.8.0
   Compiling html5ever v0.26.0
   Compiling thiserror-impl v1.0.61
   Compiling toml_datetime v0.6.6
   Compiling serde_spanned v0.6.6
   Compiling toml_edit v0.22.14
   Compiling string_cache v0.8.7
   Compiling cssparser-macros v0.6.1
   Compiling aho-corasick v1.1.3
   Compiling phf v0.10.1
   Compiling toml v0.8.14
   Compiling phf_shared v0.11.2
   Compiling camino v1.1.7
   Compiling unic-char-range v0.9.0
   Compiling unic-common v0.9.0
   Compiling stable_deref_trait v1.2.0
   Compiling itoa v0.4.8
   Compiling regex-syntax v0.8.4
   Compiling matches v0.1.10
   Compiling nodrop v0.1.14
   Compiling hashbrown v0.12.3
   Compiling servo_arc v0.1.1
   Compiling unic-char-property v0.9.0
   Compiling unic-ucd-version v0.9.0
   Compiling regex-automata v0.4.7
   Compiling phf_generator v0.11.2
   Compiling url v2.5.2
   Compiling darling v0.20.9
   Compiling fxhash v0.2.1
   Compiling serde_derive_internals v0.29.1
   Compiling schemars v0.8.21
   Compiling uuid v1.9.1
   Compiling winnow v0.5.40
   Compiling thin-slice v0.1.1
   Compiling typeid v1.0.0
   Compiling bitflags v1.3.2
   Compiling schemars_derive v0.8.21
   Compiling erased-serde v0.4.5
   Compiling toml_edit v0.19.15
   Compiling cfb v0.7.3
   Compiling regex v1.10.5
   Compiling serde_with_macros v3.8.2
   Compiling phf_macros v0.11.2
   Compiling unic-ucd-ident v0.9.0
   Compiling rustc_version v0.4.0
   Compiling cargo-platform v0.1.8
   Compiling dyn-clone v1.0.17
   Compiling same-file v1.0.6
   Compiling cc v1.0.104
   Compiling option-ext v0.2.0
   Compiling anyhow v1.0.86
   Compiling dirs-sys v0.4.1
   Compiling walkdir v2.5.0
   Compiling embed-resource v2.4.2
   Compiling phf v0.11.2
   Compiling cargo_metadata v0.18.1
   Compiling urlpattern v0.2.0
   Compiling serde_with v3.8.2
   Compiling kuchikiki v0.8.2
   Compiling toml v0.7.8
   Compiling infer v0.15.0
   Compiling serde-untagged v0.1.6
   Compiling json-patch v1.4.0
   Compiling ctor v0.2.8
   Compiling glob v0.3.1
   Compiling dunce v1.0.4
   Compiling tauri-winres v0.1.1
   Compiling dirs v5.0.1
   Compiling cargo_toml v0.17.2
   Compiling heck v0.5.0
   Compiling tauri-utils v2.0.0-beta.18
   Compiling tauri-build v2.0.0-beta.18 (/home/runner/work/tauri/tauri/target/package/tauri-build-2.0.0-beta.18)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 36.75s
    Packaged 14 files, 73.7KiB (20.7KiB compressed)
   Uploading tauri-build v2.0.0-beta.18 (/home/runner/work/tauri/tauri/core/tauri-build)
    Uploaded tauri-build v2.0.0-beta.18 to registry `crates-io`
note: waiting for `tauri-build v2.0.0-beta.18` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-build v2.0.0-beta.18 at registry `crates-io`

v2.0.0-beta.17: tauri-build v2.0.0-beta.17

Compare Source

Updating crates.io index

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 627 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (493 crate dependencies)

[2.0.0-beta.17]

Enhancements
  • adac2185a(#​9898) Check for Android version code before building the package in release mode.
Bug Fixes
  • 19b696b61(#​9710) Avoid copying resources if the target path is the same as source.
What's Changed
  • 9ac930380(#​9850) Emit cargo:rustc-check-cfg instruction so Cargo validates custom cfg attributes on Rust 1.80 (or nightly-2024-05-05).
Dependencies
  • Upgraded to tauri-utils@2.0.0-beta.17
  • Upgraded to tauri-codegen@2.0.0-beta.17
Breaking Changes

Cargo Publish

Updating crates.io index
   Packaging tauri-build v2.0.0-beta.17 (/home/runner/work/tauri/tauri/core/tauri-build)
   Verifying tauri-build v2.0.0-beta.17 (/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded embed-resource v2.4.2
  Downloaded cargo_toml v0.17.2
  Downloaded tauri-winres v0.1.1
   Compiling proc-macro2 v1.0.84
   Compiling unicode-ident v1.0.12
   Compiling cfg-if v1.0.0
   Compiling libc v0.2.155
   Compiling serde v1.0.203
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling getrandom v0.1.16
   Compiling syn v1.0.109
   Compiling autocfg v1.3.0
   Compiling quote v1.0.36
   Compiling getrandom v0.2.15
   Compiling syn v2.0.66
   Compiling rand_core v0.6.4
   Compiling rand_core v0.5.1
   Compiling rand_chacha v0.3.1
   Compiling rand_pcg v0.2.1
   Compiling rand_chacha v0.2.2
   Compiling rand v0.8.5
   Compiling phf_shared v0.10.0
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling phf_generator v0.8.0
   Compiling smallvec v1.13.2
   Compiling equivalent v1.0.1
   Compiling hashbrown v0.14.5
   Compiling phf_generator v0.10.0
   Compiling lock_api v0.4.12
   Compiling fnv v1.0.7
   Compiling parking_lot_core v0.9.10
   Compiling indexmap v2.2.6
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling memchr v2.7.2
   Compiling scopeguard v1.2.0
   Compiling tinyvec_macros v0.1.1
   Compiling new_debug_unreachable v1.0.6
   Compiling semver v1.0.23
   Compiling tinyvec v1.6.0
   Compiling phf_codegen v0.10.0
   Compiling string_cache_codegen v0.5.2
   Compiling strsim v0.11.1
   Compiling serde_json v1.0.117
   Compiling winnow v0.6.9
   Compiling serde_derive v1.0.203
   Compiling byteorder v1.5.0
   Compiling precomputed-hash v0.1.1
   Compiling ident_case v1.0.1
   Compiling mac v0.1.1
   Compiling futf v0.1.5
   Compiling darling_core v0.20.9
   Compiling cssparser v0.27.2
   Compiling phf_macros v0.8.0
   Compiling markup5ever v0.11.0
   Compiling unicode-normalization v0.1.23
   Compiling parking_lot v0.12.3
   Compiling phf_codegen v0.8.0
   Compiling indexmap v1.9.3
   Compiling percent-encoding v2.3.1
   Compiling dtoa v1.0.9
   Compiling once_cell v1.19.0
   Compiling unicode-bidi v0.3.15
   Compiling convert_case v0.4.0
   Compiling utf-8 v0.7.6
   Compiling log v0.4.21
   Compiling itoa v1.0.11
   Compiling ryu v1.0.18
   Compiling thiserror v1.0.61
   Compiling derive_more v0.99.17
   Compiling idna v0.5.0
   Compiling tendril v0.4.3
   Compiling dtoa-short v0.3.4
   Compiling form_urlencoded v1.2.1
   Compiling selectors v0.22.0
   Compiling darling_macro v0.20.9
   Compiling phf v0.8.0
   Compiling html5ever v0.26.0
   Compiling cssparser-macros v0.6.1
   Compiling toml_datetime v0.6.6
   Compiling serde_spanned v0.6.6
   Compiling toml_edit v0.22.13
   Compiling string_cache v0.8.7
   Compiling thiserror-impl v1.0.61
   Compiling toml v0.8.13
   Compiling aho-corasick v1.1.3
   Compiling phf v0.10.1
   Compiling phf_shared v0.11.2
   Compiling nodrop v0.1.14
   Compiling regex-syntax v0.8.3
   Compiling unic-char-range v0.9.0
   Compiling hashbrown v0.12.3
   Compiling camino v1.1.7
   Compiling matches v0.1.10
   Compiling stable_deref_trait v1.2.0
   Compiling unic-common v0.9.0
   Compiling itoa v0.4.8
   Compiling regex-automata v0.4.6
   Compiling unic-ucd-version v0.9.0
   Compiling servo_arc v0.1.1
   Compiling unic-char-property v0.9.0
   Compiling phf_generator v0.11.2
   Compiling url v2.5.0
   Compiling darling v0.20.9
   Compiling fxhash v0.2.1
   Compiling serde_derive_internals v0.29.1
   Compiling uuid v1.8.0
   Compiling bitflags v1.3.2
   Compiling thin-slice v0.1.1
   Compiling winnow v0.5.40
   Compiling schemars v0.8.21
   Compiling schemars_derive v0.8.21
   Compiling regex v1.10.4
   Compiling cfb v0.7.3
   Compiling toml_edit v0.19.15
   Compiling serde_with_macros v3.8.1
   Compiling phf_macros v0.11.2
   Compiling unic-ucd-ident v0.9.0
   Compiling rustc_version v0.4.0
   Compiling cargo-platform v0.1.8
   Compiling dyn-clone v1.0.17
   Compiling same-file v1.0.6
   Compiling anyhow v1.0.86
   Compiling cc v1.0.98
   Compiling walkdir v2.5.0
   Compiling phf v0.11.2
   Compiling cargo_metadata v0.18.1
   Compiling embed-resource v2.4.2
   Compiling serde_with v3.8.1
   Compiling urlpattern v0.2.0
   Compiling toml v0.7.8
   Compiling kuchikiki v0.8.2
   Compiling infer v0.15.0
   Compiling json-patch v1.4.0
   Compiling ctor v0.2.8
   Compiling dirs-sys-next v0.1.2
   Compiling dunce v1.0.4
   Compiling glob v0.3.1
   Compiling dirs-next v2.0.0
   Compiling tauri-winres v0.1.1
   Compiling tauri-utils v2.0.0-beta.17
   Compiling cargo_toml v0.17.2
   Compiling heck v0.5.0
   Compiling tauri-build v2.0.0-beta.17 (/home/runner/work/tauri/tauri/target/package/tauri-build-2.0.0-beta.17)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 34.92s
    Packaged 14 files, 73.7KiB (20.7KiB compressed)
   Uploading tauri-build v2.0.0-beta.17 (/home/runner/work/tauri/tauri/core/tauri-build)
    Uploaded tauri-build v2.0.0-beta.17 to registry `crates-io`
note: waiting for `tauri-build v2.0.0-beta.17` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-build v2.0.0-beta.17 at registry `crates-io`

v2.0.0-beta.16: tauri-build v2.0.0-beta.16

Compare Source

Updating crates.io index

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 627 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (493 crate dependencies)

[2.0.0-beta.16]

Dependencies
  • Upgraded to tauri-utils@2.0.0-beta.16
  • Upgraded to tauri-codegen@2.0.0-beta.16

Cargo Publish

Updating crates.io index
   Packaging tauri-build v2.0.0-beta.16 (/home/runner/work/tauri/tauri/core/tauri-build)
   Verifying tauri-build v2.0.0-beta.16 (/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded embed-resource v2.4.2
  Downloaded cargo_toml v0.17.2
  Downloaded tauri-winres v0.1.1
   Compiling proc-macro2 v1.0.83
   Compiling unicode-ident v1.0.12
   Compiling cfg-if v1.0.0
   Compiling libc v0.2.155
   Compiling serde v1.0.202
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling getrandom v0.1.16
   Compiling syn v1.0.109
   Compiling autocfg v1.3.0
   Compiling quote v1.0.36
   Compiling getrandom v0.2.15
   Compiling syn v2.0.65
   Compiling rand_core v0.6.4
   Compiling rand_chacha v0.3.1
   Compiling rand_core v0.5.1
   Compiling rand_pcg v0.2.1
   Compiling rand v0.8.5
   Compiling rand_chacha v0.2.2
   Compiling phf_shared v0.10.0
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling phf_generator v0.8.0
   Compiling equivalent v1.0.1
   Compiling hashbrown v0.14.5
   Compiling smallvec v1.13.2
   Compiling phf_generator v0.10.0
   Compiling lock_api v0.4.12
   Compiling indexmap v2.2.6
   Compiling fnv v1.0.7
   Compiling parking_lot_core v0.9.10
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling semver v1.0.23
   Compiling memchr v2.7.2
   Compiling tinyvec_macros v0.1.1
   Compiling new_debug_unreachable v1.0.6
   Compiling scopeguard v1.2.0
   Compiling tinyvec v1.6.0
   Compiling phf_codegen v0.10.0
   Compiling string_cache_codegen v0.5.2
   Compiling serde_json v1.0.117
   Compiling ident_case v1.0.1
   Compiling precomputed-hash v0.1.1
   Compiling serde_derive v1.0.202
   Compiling byteorder v1.5.0
   Compiling strsim v0.11.1
   Compiling winnow v0.6.8
   Compiling mac v0.1.1
   Compiling cssparser v0.27.2
   Compiling futf v0.1.5
   Compiling phf_macros v0.8.0
   Compiling darling_core v0.20.9
   Compiling markup5ever v0.11.0
   Compiling parking_lot v0.12.2
   Compiling unicode-normalization v0.1.23
   Compiling phf_codegen v0.8.0
   Compiling indexmap v1.9.3
   Compiling once_cell v1.19.0
   Compiling utf-8 v0.7.6
   Compiling log v0.4.21
   Compiling thiserror v1.0.61
   Compiling ryu v1.0.18
   Compiling unicode-bidi v0.3.15
   Compiling dtoa v1.0.9
   Compiling percent-encoding v2.3.1
   Compiling convert_case v0.4.0
   Compiling itoa v1.0.11
   Compiling darling_macro v0.20.9
   Compiling derive_more v0.99.17
   Compiling idna v0.5.0
   Compiling form_urlencoded v1.2.1
   Compiling dtoa-short v0.3.4
   Compiling tendril v0.4.3
   Compiling selectors v0.22.0
   Compiling phf v0.8.0
   Compiling html5ever v0.26.0
   Compiling cssparser-macros v0.6.1
   Compiling serde_spanned v0.6.6
   Compiling toml_datetime v0.6.6
   Compiling toml_edit v0.22.13
   Compiling string_cache v0.8.7
   Compiling thiserror-impl v1.0.61
   Compiling aho-corasick v1.1.3
   Compiling toml v0.8.13
   Compiling phf v0.10.1
   Compiling phf_shared v0.11.2
   Compiling unic-char-range v0.9.0
   Compiling itoa v0.4.8
   Compiling stable_deref_trait v1.2.0
   Compiling hashbrown v0.12.3
   Compiling unic-common v0.9.0
   Compiling matches v0.1.10
   Compiling camino v1.1.7
   Compiling regex-syntax v0.8.3
   Compiling nodrop v0.1.14
   Compiling servo_arc v0.1.1
   Compiling unic-ucd-version v0.9.0
   Compiling phf_generator v0.11.2
   Compiling unic-char-property v0.9.0
   Compiling url v2.5.0
   Compiling regex-automata v0.4.6
   Compiling darling v0.20.9
   Compiling fxhash v0.2.1
   Compiling serde_derive_internals v0.29.1
   Compiling schemars v0.8.20
   Compiling uuid v1.8.0
   Compiling winnow v0.5.40
   Compiling bitflags v1.3.2
   Compiling thin-slice v0.1.1
   Compiling schemars_derive v0.8.20
   Compiling regex v1.10.4
   Compiling cfb v0.7.3
   Compiling toml_edit v0.19.15
   Compiling serde_with_macros v3.8.1
   Compiling unic-ucd-ident v0.9.0
   Compiling phf_macros v0.11.2
   Compiling rustc_version v0.4.0
   Compiling cargo-platform v0.1.8
   Compiling dyn-clone v1.0.17
   Compiling anyhow v1.0.86
   Compiling cc v1.0.98
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling phf v0.11.2
   Compiling embed-resource v2.4.2
   Compiling cargo_metadata v0.18.1
   Compiling serde_with v3.8.1
   Compiling toml v0.7.8
   Compiling urlpattern v0.2.0
   Compiling kuchikiki v0.8.2
   Compiling infer v0.15.0
   Compiling json-patch v1.4.0
   Compiling ctor v0.2.8
   Compiling dirs-sys-next v0.1.2
   Compiling glob v0.3.1
   Compiling heck v0.5.0
   Compiling dunce v1.0.4
   Compiling dirs-next v2.0.0
   Compiling tauri-winres v0.1.1
   Compiling tauri-utils v2.0.0-beta.16
   Compiling cargo_toml v0.17.2
   Compiling tauri-build v2.0.0-beta.16 (/home/runner/work/tauri/tauri/target/package/tauri-build-2.0.0-beta.16)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 35.61s
    Packaged 14 files, 71.4KiB (20.2KiB compressed)
   Uploading tauri-build v2.0.0-beta.16 (/home/runner/work/tauri/tauri/core/tauri-build)
    Uploaded tauri-build v2.0.0-beta.16 to registry `crates-io`
note: waiting for `tauri-build v2.0.0-beta.16` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-build v2.0.0-beta.16 at registry `crates-io`

v2.0.0-beta.15: tauri-build v2.0.0-beta.15

Compare Source

Updating crates.io index

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 623 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (483 crate dependencies)

[2.0.0-beta.15]

Dependencies
  • Upgraded to tauri-utils@2.0.0-beta.15
  • Upgraded to tauri-codegen@2.0.0-beta.15

Cargo Publish

Updating crates.io index
   Packaging tauri-build v2.0.0-beta.15 (/home/runner/work/tauri/tauri/core/tauri-build)
   Verifying tauri-build v2.0.0-beta.15 (/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded cargo_toml v0.17.2
  Downloaded embed-resource v2.4.2
  Downloaded tauri-winres v0.1.1
   Compiling proc-macro2 v1.0.82
   Compiling unicode-ident v1.0.12
   Compiling cfg-if v1.0.0
   Compiling libc v0.2.154
   Compiling serde v1.0.201
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling getrandom v0.1.16
   Compiling syn v1.0.109
   Compiling autocfg v1.3.0
   Compiling quote v1.0.36
   Compiling phf_shared v0.10.0
   Compiling syn v2.0.61
   Compiling getrandom v0.2.15
   Compiling rand_core v0.6.4
   Compiling rand_core v0.5.1
   Compiling rand_chacha v0.3.1
   Compiling rand_chacha v0.2.2
   Compiling rand v0.8.5
   Compiling rand_pcg v0.2.1
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling phf_generator v0.8.0
   Compiling smallvec v1.13.2
   Compiling equivalent v1.0.1
   Compiling hashbrown v0.14.5
   Compiling phf_generator v0.10.0
   Compiling lock_api v0.4.12
   Compiling parking_lot_core v0.9.10
   Compiling indexmap v2.2.6
   Compiling fnv v1.0.7
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling new_debug_unreachable v1.0.6
   Compiling memchr v2.7.2
   Compiling scopeguard v1.2.0
   Compiling semver v1.0.23
   Compiling tinyvec_macros v0.1.1
   Compiling tinyvec v1.6.0
   Compiling phf_codegen v0.10.0
   Compiling string_cache_codegen v0.5.2
   Compiling winnow v0.6.8
   Compiling serde_json v1.0.117
   Compiling serde_derive v1.0.201
   Compiling mac v0.1.1
   Compiling ident_case v1.0.1
   Compiling byteorder v1.5.0
   Compiling strsim v0.10.0
   Compiling precomputed-hash v0.1.1
   Compiling cssparser v0.27.2
   Compiling darling_core v0.20.8
   Compiling phf_macros v0.8.0
   Compiling futf v0.1.5
   Compiling markup5ever v0.11.0
   Compiling parking_lot v0.12.2
   Compiling unicode-normalization v0.1.23
   Compiling phf_codegen v0.8.0
   Compiling indexmap v1.9.3
   Compiling once_cell v1.19.0
   Compiling ryu v1.0.18
   Compiling unicode-bidi v0.3.15
   Compiling percent-encoding v2.3.1
   Compiling dtoa v1.0.9
   Compiling utf-8 v0.7.6
   Compiling itoa v1.0.11
   Compiling thiserror v1.0.60
   Compiling log v0.4.21
   Compiling convert_case v0.4.0
   Compiling idna v0.5.0
   Compiling tendril v0.4.3
   Compiling derive_more v0.99.17
   Compiling dtoa-short v0.3.4
   Compiling form_urlencoded v1.2.1
   Compiling darling_macro v0.20.8
   Compiling selectors v0.22.0
   Compiling phf v0.8.0
   Compiling html5ever v0.26.0
   Compiling cssparser-macros v0.6.1
   Compiling thiserror-impl v1.0.60
   Compiling toml_datetime v0.6.5
   Compiling serde_spanned v0.6.5
   Compiling toml_edit v0.22.12
   Compiling string_cache v0.8.7
   Compiling aho-corasick v1.1.3
   Compiling phf v0.10.1
   Compiling phf_shared v0.11.2
   Compiling camino v1.1.6
   Compiling toml v0.8.12
   Compiling hashbrown v0.12.3
   Compiling matches v0.1.10
   Compiling regex-syntax v0.8.3
   Compiling itoa v0.4.8
   Compiling unic-common v0.9.0
   Compiling unic-char-range v0.9.0
   Compiling stable_deref_trait v1.2.0
   Compiling nodrop v0.1.14
   Compiling servo_arc v0.1.1
   Compiling unic-char-property v0.9.0
   Compiling unic-ucd-version v0.9.0
   Compiling regex-automata v0.4.6
   Compiling phf_generator v0.11.2
   Compiling url v2.5.0
   Compiling darling v0.20.8
   Compiling fxhash v0.2.1
   Compiling serde_derive_internals v0.29.0
   Compiling bitflags v1.3.2
   Compiling thin-slice v0.1.1
   Compiling winnow v0.5.40
   Compiling schemars v0.8.19
   Compiling uuid v1.8.0
   Compiling schemars_derive v0.8.19
   Compiling cfb v0.7.3
   Compiling toml_edit v0.19.15
   Compiling regex v1.10.4
   Compiling serde_with_macros v3.8.1
   Compiling phf_macros v0.11.2
   Compiling unic-ucd-ident v0.9.0
   Compiling rustc_version v0.4.0
   Compiling cargo-platform v0.1.8
   Compiling cc v1.0.97
   Compiling dyn-clone v1.0.17
   Compiling anyhow v1.0.83
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling embed-resource v2.4.2
   Compiling phf v0.11.2
   Compiling cargo_metadata v0.18.1
   Compiling urlpattern v0.2.0
   Compiling serde_with v3.8.1
   Compiling kuchikiki v0.8.2
   Compiling toml v0.7.8
   Compiling infer v0.15.0
   Compiling json-patch v1.4.0
   Compiling ctor v0.2.8
   Compiling dirs-sys-next v0.1.2
   Compiling glob v0.3.1
   Compiling heck v0.5.0
   Compiling dunce v1.0.4
   Compiling dirs-next v2.0.0
   Compiling tauri-winres v0.1.1
   Compiling cargo_toml v0.17.2
   Compiling tauri-utils v2.0.0-beta.15
   Compiling tauri-build v2.0.0-beta.15 (/home/runner/work/tauri/tauri/target/package/tauri-build-2.0.0-beta.15)
    Finished dev [unoptimized + debuginfo] target(s) in 36.11s
    Packaged 14 files, 71.4KiB (20.2KiB compressed)
   Uploading tauri-build v2.0.0-beta.15 (/home/runner/work/tauri/tauri/core/tauri-build)
    Uploaded tauri-build v2.0.0-beta.15 to registry `crates-io`
note: Waiting for `tauri-build v2.0.0-beta.15` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-build v2.0.0-beta.15 at registry `crates-io`

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/crate-tauri-vulnerability branch from 11b3af2 to 64915eb Compare August 12, 2025 23:52
@renovate
renovate Bot force-pushed the renovate/crate-tauri-vulnerability branch from 64915eb to bccbc00 Compare February 3, 2026 07:35
@renovate
renovate Bot force-pushed the renovate/crate-tauri-vulnerability branch from bccbc00 to fb73c3d Compare February 13, 2026 08:01
@renovate
renovate Bot force-pushed the renovate/crate-tauri-vulnerability branch from fb73c3d to ba97ff3 Compare March 1, 2026 13:01
@renovate
renovate Bot force-pushed the renovate/crate-tauri-vulnerability branch from ba97ff3 to bd3d62d Compare March 14, 2026 13:29
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants