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

fix(deps): update rust crate tauri to v1.6.7 [security] #90

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
tauri (source) dependencies minor 1.2.4 -> 1.6.7

GitHub Vulnerability Alerts

CVE-2023-31134

Impact

The Tauri IPC is usually strictly isolated from external websites but the isolation can be bypassed by redirecting an existing Tauri window to an external website. This is either possible by an application implementing a feature for users to visit arbitrary websites or due to a bug allowing the open redirect1.

This allows the external website access to the IPC layer and therefore to all configured and exposed Tauri API endpoints and application specific implemented Tauri commands.

Patches

This issue has been patched in the latest release and was backported to all previous 1.x releases.

Workarounds

Prevent arbitrary input in redirect features. Only allow trusted websites access to the IPC.

References

The feature to enable this behavior in a more constrained way was introduced in the 1.3 release and documentation around this can be found in the documentation.

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)

v1.6.7: tauri v1.6.7

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 (589 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.6.7
        ├── tauri 1.6.7
        ├── restart 0.1.0
        └── app-updater 0.1.0

warning: 1 allowed warning found

[1.6.7]

Bug Fixes
  • 50aabad1f(#​9818) On Windows, fix flashing PowerShell for updates for NSIS installer, and address possible "permission denied" problems.
Security fixes
  • f6d81dfe0 Only process IPC commands from the main frame.
Dependencies
  • Upgraded to tauri-runtime-wry@0.14.8

Cargo Publish

Updating crates.io index
   Packaging tauri v1.6.7 (/home/runner/work/tauri/tauri/core/tauri)
    Updating crates.io index
   Verifying tauri v1.6.7 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded base64 v0.21.7
  Downloaded brotli-decompressor v2.5.1
  Downloaded block-buffer v0.10.4
  Downloaded digest v0.10.7
  Downloaded generic-array v0.14.7
  Downloaded ico v0.3.0
  Downloaded tar v0.4.40
  Downloaded xattr v1.3.1
  Downloaded typenum v1.17.0
  Downloaded tokio-macros v2.2.0
  Downloaded tauri-macros v1.4.4
  Downloaded brotli v3.5.0
  Downloaded tauri-codegen v1.4.3
  Downloaded alloc-stdlib v0.2.2
  Downloaded state v0.5.3
  Downloaded signal-hook-registry v1.4.2
  Downloaded sha2 v0.10.8
  Downloaded serialize-to-javascript-impl v0.1.1
  Downloaded serialize-to-javascript v0.1.1
  Downloaded serde_repr v0.1.19
  Downloaded libm v0.2.8
  Downloaded ignore v0.4.22
  Downloaded globset v0.4.14
  Downloaded glob v0.3.1
  Downloaded futures-macro v0.3.30
  Downloaded dirs-sys-next v0.1.2
  Downloaded dirs-next v2.0.0
  Downloaded crypto-common v0.1.6
  Downloaded cpufeatures v0.2.12
  Downloaded tauri-runtime-wry v0.14.8
   Compiling proc-macro2 v1.0.83
   Compiling unicode-ident v1.0.12
   Compiling serde v1.0.202
   Compiling libc v0.2.155
   Compiling smallvec v1.13.2
   Compiling pkg-config v0.3.30
   Compiling hashbrown v0.14.5
   Compiling quote v1.0.36
   Compiling equivalent v1.0.1
   Compiling indexmap v2.2.6
   Compiling syn v2.0.65
   Compiling heck v0.5.0
   Compiling target-lexicon v0.12.14
   Compiling winnow v0.6.8
   Compiling version-compare v0.2.0
   Compiling cfg-if v1.0.0
   Compiling autocfg v1.3.0
   Compiling cfg-expr v0.15.8
   Compiling syn v1.0.109
   Compiling version_check v0.9.4
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling once_cell v1.19.0
   Compiling getrandom v0.2.15
   Compiling bitflags v1.3.2
   Compiling thiserror v1.0.61
   Compiling getrandom v0.1.16
   Compiling rand_core v0.6.4
   Compiling proc-macro-error-attr v1.0.4
   Compiling rand_chacha v0.3.1
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.9
   Compiling anyhow v1.0.86
   Compiling winnow v0.5.40
   Compiling rand_core v0.5.1
   Compiling futures-core v0.3.30
   Compiling pin-project-lite v0.2.14
   Compiling rand v0.8.5
   Compiling pin-utils v0.1.0
   Compiling futures-task v0.3.30
   Compiling rand_chacha v0.2.2
   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 rand_pcg v0.2.1
   Compiling phf_shared v0.10.0
   Compiling heck v0.4.1
   Compiling unicode-segmentation v1.11.0
   Compiling rand v0.7.3
   Compiling heck v0.3.3
   Compiling futures-channel v0.3.30
   Compiling phf_shared v0.8.0
   Compiling lock_api v0.4.12
   Compiling cfg-expr v0.9.1
   Compiling parking_lot_core v0.9.10
   Compiling version-compare v0.0.11
   Compiling fnv v1.0.7
   Compiling semver v1.0.23
   Compiling futures-executor v0.3.30
   Compiling phf_generator v0.8.0
   Compiling log v0.4.21
   Compiling scopeguard v1.2.0
   Compiling phf_generator v0.10.0
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling itoa v1.0.11
   Compiling parking_lot v0.12.2
   Compiling byteorder v1.5.0
   Compiling new_debug_unreachable v1.0.6
   Compiling ryu v1.0.18
   Compiling string_cache_codegen v0.5.2
   Compiling phf_codegen v0.10.0
   Compiling memchr v2.7.2
   Compiling mac v0.1.1
   Compiling ident_case v1.0.1
   Compiling tinyvec_macros v0.1.1
   Compiling strsim v0.11.1
   Compiling gio v0.15.12
   Compiling precomputed-hash v0.1.1
   Compiling phf_macros v0.8.0
   Compiling darling_core v0.20.9
   Compiling tinyvec v1.6.0
   Compiling futf v0.1.5
   Compiling markup5ever v0.11.0
   Compiling phf_codegen v0.8.0
   Compiling cssparser v0.27.2
   Compiling uuid v1.8.0
   Compiling toml_datetime v0.6.6
   Compiling serde_spanned v0.6.6
   Compiling toml_edit v0.22.13
   Compiling toml_edit v0.19.15
   Compiling toml v0.5.11
   Compiling toml v0.8.13
   Compiling system-deps v6.2.2
   Compiling proc-macro-crate v1.3.1
   Compiling system-deps v5.0.0
   Compiling utf-8 v0.7.6
   Compiling glib-macros v0.15.13
   Compiling dtoa v1.0.9
   Compiling futures-io v0.3.30
   Compiling glib-sys v0.15.10
   Compiling gobject-sys v0.15.10
   Compiling gdk-sys v0.15.1
   Compiling gio-sys v0.15.10
   Compiling atk-sys v0.15.1
   Compiling gdk-pixbuf-sys v0.15.10
   Compiling pango-sys v0.15.10
   Compiling cairo-sys-rs v0.15.1
   Compiling gtk-sys v0.15.3
   Compiling glib v0.15.12
   Compiling simd-adler32 v0.3.7
   Compiling soup2-sys v0.2.0
   Compiling dtoa-short v0.3.4
   Compiling tendril v0.4.3
   Compiling darling_macro v0.20.9
   Compiling string_cache v0.8.7
   Compiling selectors v0.22.0
   Compiling phf v0.8.0
   Compiling unicode-normalization v0.1.23
   Compiling rustc_version v0.4.0
   Compiling phf v0.10.1
   Compiling html5ever v0.26.0
   Compiling cssparser-macros v0.6.1
   Compiling phf_shared v0.11.2
   Compiling memoffset v0.9.1
   Compiling indexmap v1.9.3
   Compiling alloc-no-stdlib v2.0.4
   Compiling typenum v1.17.0
   Compiling percent-encoding v2.3.1
   Compiling unicode-bidi v0.3.15
   Compiling matches v0.1.10
   Compiling convert_case v0.4.0
   Compiling stable_deref_trait v1.2.0
   Compiling crossbeam-utils v0.8.20
   Compiling itoa v0.4.8
   Compiling nodrop v0.1.14
   Compiling adler v1.0.2
   Compiling miniz_oxide v0.7.3
   Compiling servo_arc v0.1.1
   Compiling derive_more v0.99.17
   Compiling idna v0.5.0
   Compiling form_urlencoded v1.2.1
   Compiling alloc-stdlib v0.2.2
   Compiling phf_generator v0.11.2
   Compiling field-offset v0.3.6
   Compiling darling v0.20.9
   Compiling fxhash v0.2.1
   Compiling generic-array v0.14.7
   Compiling crc32fast v1.4.2
   Compiling serde_json v1.0.117
   Compiling thin-slice v0.1.1
   Compiling hashbrown v0.12.3
   Compiling flate2 v1.0.30
   Compiling serde_with_macros v3.8.1
   Compiling phf_macros v0.11.2
   Compiling brotli-decompressor v2.5.1
   Compiling url v2.5.0
   Compiling pango v0.15.10
   Compiling cairo-rs v0.15.12
   Compiling fdeflate v0.3.4
   Compiling javascriptcore-rs-sys v0.4.0
   Compiling cfb v0.7.3
   Compiling gtk v0.15.5
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling gdk-pixbuf v0.15.11
   Compiling infer v0.13.0
   Compiling png v0.17.13
   Compiling gdk v0.15.4
   Compiling brotli v3.5.0
   Compiling phf v0.11.2
   Compiling serde_with v3.8.1
   Compiling kuchikiki v0.8.2
   Compiling atk v0.15.1
   Compiling webkit2gtk-sys v0.18.0
   Compiling gtk3-macros v0.15.6
   Compiling ctor v0.2.8
   Compiling x11 v2.21.0
   Compiling dunce v1.0.4
   Compiling gdkx11-sys v0.15.1
   Compiling x11-dl v2.21.0
   Compiling rustix v0.38.34
   Compiling cc v1.0.98
   Compiling bytes v1.6.0
   Compiling tao v0.16.9
   Compiling block-buffer v0.10.4
   Compiling crypto-common v0.1.6
   Compiling bitflags v2.5.0
   Compiling raw-window-handle v0.5.2
   Compiling linux-raw-sys v0.4.14
   Compiling digest v0.10.7
   Compiling json-patch v1.4.0
   Compiling http v0.2.12
   Compiling soup2 v0.2.1
   Compiling javascriptcore-rs v0.16.0
   Compiling crossbeam-channel v0.5.13
   Compiling gdkwayland-sys v0.15.3
   Compiling aho-corasick v1.1.3
   Compiling instant v0.1.13
   Compiling regex-syntax v0.8.3
   Compiling lazy_static v1.4.0
   Compiling tauri-runtime v0.14.3
   Compiling cpufeatures v0.2.12
   Compiling wry v0.24.10
   Compiling glob v0.3.1
   Compiling tauri-utils v1.5.4
   Compiling sha2 v0.10.8
   Compiling regex-automata v0.4.6
   Compiling ico v0.3.0
   Compiling crossbeam-epoch v0.9.18
   Compiling bstr v1.9.1
   Compiling tauri-runtime-wry v0.14.8
   Compiling http-range v0.1.5
   Compiling base64 v0.21.7
   Compiling globset v0.4.14
   Compiling tauri-codegen v1.4.3
   Compiling crossbeam-deque v0.8.5
   Compiling xattr v1.3.1
   Compiling serialize-to-javascript-impl v0.1.1
   Compiling tauri v1.6.7 (/home/runner/work/tauri/tauri/target/package/tauri-1.6.7)
   Compiling filetime v0.2.23
   Compiling num_cpus v1.16.0
   Compiling dirs-sys-next v0.1.2
   Compiling fastrand v2.1.0
   Compiling dirs-next v2.0.0
   Compiling tokio v1.37.0
   Compiling tempfile v3.10.1
   Compiling webkit2gtk v0.18.2
   Compiling tauri-macros v1.4.4
   Compiling tar v0.4.40
   Compiling serialize-to-javascript v0.1.1
   Compiling ignore v0.4.22
   Compiling serde_repr v0.1.19
   Compiling encoding_rs v0.8.34
   Compiling state v0.5.3
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 19s
    Packaged 76 files, 998.1KiB (223.2KiB compressed)
   Uploading tauri v1.6.7 (/home/runner/work/tauri/tauri/core/tauri)
    Uploaded tauri v1.6.7 to registry `crates-io`
note: waiting for `tauri v1.6.7` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri v1.6.7 at registry `crates-io`

v1.6.6: tauri v1.6.6

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 (586 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.6.6
        ├── tauri 1.6.6
        ├── restart 0.1.0
        └── app-updater 0.1.0

warning: 1 allowed warning found

[1.6.6]

Bug Fixes
  • 704260bb3(#​9784) Fix dialog crash on macOS when the default_path value is empty.
  • 3b69c1384(#​9792) Revert #​9706 which broke compatability between tauri crate and the JS @tauri-apps/api npm package in a patch release where it should've been in a minor release.

Cargo Publish

Updating crates.io index
   Packaging tauri v1.6.6 (/home/runner/work/tauri/tauri/core/tauri)
    Updating crates.io index
   Verifying tauri v1.6.6 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded byteorder v1.5.0
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded anyhow v1.0.83
  Downloaded alloc-stdlib v0.2.2
  Downloaded cairo-rs v0.15.12
  Downloaded block-buffer v0.10.4
  Downloaded cfg-expr v0.9.1
  Downloaded cfg-expr v0.15.8
  Downloaded cfb v0.7.3
  Downloaded cairo-sys-rs v0.15.1
  Downloaded brotli v3.5.0
  Downloaded png v0.17.13
  Downloaded simd-adler32 v0.3.7
  Downloaded sha2 v0.10.8
  Downloaded rand_core v0.5.1
  Downloaded thin-slice v0.1.1
  Downloaded xattr v1.3.1
  Downloaded x11-dl v2.21.0
  Downloaded tar v0.4.40
  Downloaded serde_with_macros v3.8.1
  Downloaded serde_with v3.8.1
  Downloaded selectors v0.22.0
  Downloaded rand_chacha v0.3.1
  Downloaded rand v0.8.5
  Downloaded rand v0.7.3
  Downloaded x11 v2.21.0
  Downloaded wry v0.24.10
  Downloaded webkit2gtk-sys v0.18.0
  Downloaded webkit2gtk v0.18.2
  Downloaded version-compare v0.2.0
  Downloaded uuid v1.8.0
  Downloaded tao v0.16.9
  Downloaded unicode-segmentation v1.11.0
  Downloaded typenum v1.17.0
  Downloaded toml_edit v0.22.13
  Downloaded toml v0.8.13
  Downloaded tokio-macros v2.2.0
  Downloaded tendril v0.4.3
  Downloaded tauri-utils v1.5.4
  Downloaded tauri-runtime v0.14.3
  Downloaded target-lexicon v0.12.14
  Downloaded system-deps v6.2.2
  Downloaded system-deps v5.0.0
  Downloaded string_cache_codegen v0.5.2
  Downloaded string_cache v0.8.7
  Downloaded state v0.5.3
  Downloaded soup2-sys v0.2.0
  Downloaded soup2 v0.2.1
  Downloaded serialize-to-javascript v0.1.1
  Downloaded rustc_version v0.4.0
  Downloaded version-compare v0.0.11
  Downloaded utf-8 v0.7.6
  Downloaded tauri-macros v1.4.4
  Downloaded tauri-codegen v1.4.3
  Downloaded stable_deref_trait v1.2.0
  Downloaded siphasher v0.3.11
  Downloaded signal-hook-registry v1.4.2
  Downloaded servo_arc v0.1.1
  Downloaded serde_repr v0.1.19
  Downloaded raw-window-handle v0.5.2
  Downloaded rand_pcg v0.2.1
  Downloaded rand_core v0.6.4
  Downloaded rand_chacha v0.2.2
  Downloaded proc-macro-crate v1.3.1
  Downloaded ppv-lite86 v0.2.17
  Downloaded tauri-runtime-wry v0.14.7
  Downloaded serialize-to-javascript-impl v0.1.1
  Downloaded precomputed-hash v0.1.1
  Downloaded gtk v0.15.5
  Downloaded proc-macro-error-attr v1.0.4
  Downloaded proc-macro-error v1.0.4
  Downloaded num-traits v0.2.19
  Downloaded nodrop v0.1.14
  Downloaded new_debug_unreachable v1.0.6
  Downloaded memoffset v0.9.1
  Downloaded matches v0.1.10
  Downloaded ignore v0.4.22
  Downloaded ico v0.3.0
  Downloaded iana-time-zone v0.1.60
  Downloaded http-range v0.1.5
  Downloaded http v0.2.12
  Downloaded html5ever v0.26.0
  Downloaded gtk-sys v0.15.3
  Downloaded gobject-sys v0.15.10
  Downloaded glib-macros v0.15.13
  Downloaded glib v0.15.12
  Downloaded gio v0.15.12
  Downloaded getrandom v0.1.16
  Downloaded glib-sys v0.15.10
  Downloaded futures-executor v0.3.30
  Downloaded dirs-sys-next v0.1.2
  Downloaded proc-macro-hack v0.5.20+deprecated
  Downloaded pango-sys v0.15.10
  Downloaded pango v0.15.10
  Downloaded indexmap v1.9.3
  Downloaded hex v0.4.3
  Downloaded heck v0.4.1
  Downloaded heck v0.3.3
  Downloaded hashbrown v0.12.3
  Downloaded gtk3-macros v0.15.6
  Downloaded gio-sys v0.15.10
  Downloaded dtoa v1.0.9
  Downloaded darling v0.20.9
  Downloaded ctor v0.2.8
  Downloaded cssparser-macros v0.6.1
  Downloaded cssparser v0.27.2
  Downloaded crypto-common v0.1.6
  Downloaded cpufeatures v0.2.12
  Downloaded convert_case v0.4.0
  Downloaded chrono v0.4.38
  Downloaded pkg-config v0.3.30
  Downloaded phf_shared v0.11.2
  Downloaded phf_shared v0.10.0
  Downloaded phf_shared v0.8.0
  Downloaded phf_macros v0.11.2
  Downloaded phf_macros v0.8.0
  Downloaded phf_generator v0.11.2
  Downloaded phf_generator v0.10.0
  Downloaded phf_generator v0.8.0
  Downloaded phf_codegen v0.10.0
  Downloaded phf_codegen v0.8.0
  Downloaded phf v0.11.2
  Downloaded phf v0.10.1
  Downloaded phf v0.8.0
  Downloaded markup5ever v0.11.0
  Downloaded mac v0.1.1
  Downloaded libm v0.2.8
  Downloaded kuchikiki v0.8.2
  Downloaded json-patch v1.4.0
  Downloaded javascriptcore-rs-sys v0.4.0
  Downloaded javascriptcore-rs v0.16.0
  Downloaded itoa v0.4.8
  Downloaded instant v0.1.12
  Downloaded infer v0.13.0
  Downloaded globset v0.4.14
  Downloaded glob v0.3.1
  Downloaded generic-array v0.14.7
  Downloaded gdkx11-sys v0.15.1
  Downloaded gdkwayland-sys v0.15.3
  Downloaded gdk-sys v0.15.1
  Downloaded gdk-pixbuf-sys v0.15.10
  Downloaded gdk-pixbuf v0.15.11
  Downloaded gdk v0.15.4
  Downloaded fxhash v0.2.1
  Downloaded futures-macro v0.3.30
  Downloaded futf v0.1.5
  Downloaded field-offset v0.3.6
  Downloaded fdeflate v0.3.4
  Downloaded dunce v1.0.4
  Downloaded dtoa-short v0.3.4
  Downloaded dirs-next v2.0.0
  Downloaded digest v0.10.7
  Downloaded derive_more v0.99.17
  Downloaded darling_macro v0.20.9
  Downloaded darling_core v0.20.9
  Downloaded brotli-decompressor v2.5.1
  Downloaded atk-sys v0.15.1
  Downloaded bitflags v1.3.2
  Downloaded atk v0.15.1
   Compiling proc-macro2 v1.0.82
   Compiling unicode-ident v1.0.12
   Compiling serde v1.0.202
   Compiling libc v0.2.154
   Compiling smallvec v1.13.2
   Compiling pkg-config v0.3.30
   Compiling equivalent v1.0.1
   Compiling hashbrown v0.14.5
   Compiling heck v0.5.0
   Compiling quote v1.0.36
   Compiling indexmap v2.2.6
   Compiling target-lexicon v0.12.14
   Compiling syn v2.0.63
   Compiling winnow v0.6.8
   Compiling version-compare v0.2.0
   Compiling cfg-expr v0.15.8
   Compiling cfg-if v1.0.0
   Compiling autocfg v1.3.0
   Compiling syn v1.0.109
   Compiling version_check v0.9.4
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling once_cell v1.19.0
   Compiling getrandom v0.2.15
   Compiling bitflags v1.3.2
   Compiling thiserror v1.0.60
   Compiling getrandom v0.1.16
   Compiling rand_core v0.6.4
   Compiling proc-macro-error-attr v1.0.4
   Compiling rand_chacha v0.3.1
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.9
   Compiling winnow v0.5.40
   Compiling anyhow v1.0.83
   Compiling rand_core v0.5.1
   Compiling pin-project-lite v0.2.14
   Compiling futures-core v0.3.30
   Compiling rand v0.8.5
   Compiling futures-task v0.3.30
   Compiling pin-utils v0.1.0
   Compiling rand_pcg v0.2.1
   Compiling rand_chacha v0.2.2
   Compiling phf_shared v0.10.0
   Compiling serde_derive v1.0.202
   Compiling thiserror-impl v1.0.60
   Compiling futures-macro v0.3.30
   Compiling futures-util v0.3.30
   Compiling unicode-segmentation v1.11.0
   Compiling heck v0.4.1
   Compiling heck v0.3.3
   Compiling rand v0.7.3
   Compiling futures-channel v0.3.30
   Compiling phf_shared v0.8.0
   Compiling lock_api v0.4.12
   Compiling cfg-expr v0.9.1
   Compiling fnv v1.0.7
   Compiling semver v1.0.23
   Compiling version-compare v0.0.11
   Compiling parking_lot_core v0.9.10
   Compiling phf_generator v0.8.0
   Compiling futures-executor v0.3.30
   Compiling log v0.4.21
   Compiling scopeguard v1.2.0
   Compiling phf_generator v0.10.0
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling itoa v1.0.11
   Compiling parking_lot v0.12.2
   Compiling ryu v1.0.18
   Compiling new_debug_unreachable v1.0.6
   Compiling byteorder v1.5.0
   Compiling phf_codegen v0.10.0
   Compiling string_cache_codegen v0.5.2
   Compiling strsim v0.11.1
   Compiling precomputed-hash v0.1.1
   Compiling gio v0.15.12
   Compiling ident_case v1.0.1
   Compiling tinyvec_macros v0.1.1
   Compiling memchr v2.7.2
   Compiling mac v0.1.1
   Compiling phf_macros v0.8.0
   Compiling futf v0.1.5
   Compiling tinyvec v1.6.0
   Compiling darling_core v0.20.9
   Compiling markup5ever v0.11.0
   Compiling phf_codegen v0.8.0
   Compiling cssparser v0.27.2
   Compiling uuid v1.8.0
   Compiling crc32fast v1.4.0
   Compiling toml_datetime v0.6.6
   Compiling serde_spanned v0.6.6
   Compiling toml_edit v0.19.15
   Compiling toml_edit v0.22.13
   Compiling proc-macro-crate v1.3.1
   Compiling toml v0.5.11
   Compiling toml v0.8.13
   Compiling system-deps v6.2.2
   Compiling system-deps v5.0.0
   Compiling glib-macros v0.15.13
   Compiling utf-8 v0.7.6
   Compiling dtoa v1.0.9
   Compiling futures-io v0.3.30
   Compiling simd-adler32 v0.3.7
   Compiling glib-sys v0.15.10
   Compiling gobject-sys v0.15.10
   Compiling gio-sys v0.15.10
   Compiling gdk-sys v0.15.1
   Compiling cairo-sys-rs v0.15.1
   Compiling atk-sys v0.15.1
   Compiling gdk-pixbuf-sys v0.15.10
   Compiling pango-sys v0.15.10
   Compiling gtk-sys v0.15.3
   Compiling glib v0.15.12
   Compiling soup2-sys v0.2.0
   Compiling dtoa-short v0.3.4
   Compiling tendril v0.4.3
   Compiling darling_macro v0.20.9
   Compiling string_cache v0.8.7
   Compiling selectors v0.22.0
   Compiling phf v0.8.0
   Compiling unicode-normalization v0.1.23
   Compiling rustc_version v0.4.0
   Compiling html5ever v0.26.0
   Compiling phf v0.10.1
   Compiling cssparser-macros v0.6.1
   Compiling phf_shared v0.11.2
   Compiling memoffset v0.9.1
   Compiling indexmap v1.9.3
   Compiling matches v0.1.10
   Compiling unicode-bidi v0.3.15
   Compiling nodrop v0.1.14
   Compiling alloc-no-stdlib v2.0.4
   Compiling stable_deref_trait v1.2.0
   Compiling itoa v0.4.8
   Compiling adler v1.0.2
   Compiling typenum v1.17.0
   Compiling convert_case v0.4.0
   Compiling percent-encoding v2.3.1
   Compiling crossbeam-utils v0.8.19
   Compiling derive_more v0.99.17
   Compiling form_urlencoded v1.2.1
   Compiling idna v0.5.0
   Compiling miniz_oxide v0.7.2
   Compiling servo_arc v0.1.1
   Compiling alloc-stdlib v0.2.2
   Compiling phf_generator v0.11.2
   Compiling field-offset v0.3.6
   Compiling darling v0.20.9
   Compiling fxhash v0.2.1
   Compiling generic-array v0.14.7
   Compiling hashbrown v0.12.3
   Compiling thin-slice v0.1.1
   Compiling serde_json v1.0.117
   Compiling flate2 v1.0.30
   Compiling serde_with_macros v3.8.1
   Compiling phf_macros v0.11.2
   Compiling brotli-decompressor v2.5.1
   Compiling pango v0.15.10
   Compiling cairo-rs v0.15.12
   Compiling url v2.5.0
   Compiling javascriptcore-rs-sys v0.4.0
   Compiling fdeflate v0.3.4
   Compiling cfb v0.7.3
   Compiling gtk v0.15.5
   Compiling gdk-pixbuf v0.15.11
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling gdk v0.15.4
   Compiling infer v0.13.0
   Compiling png v0.17.13
   Compiling brotli v3.5.0
   Compiling phf v0.11.2
   Compiling serde_with v3.8.1
   Compiling kuchikiki v0.8.2
   Compiling atk v0.15.1
   Compiling webkit2gtk-sys v0.18.0
   Compiling gtk3-macros v0.15.6
   Compiling ctor v0.2.8
   Compiling x11 v2.21.0
   Compiling dunce v1.0.4
   Compiling gdkx11-sys v0.15.1
   Compiling x11-dl v2.21.0
   Compiling rustix v0.38.34
   Compiling bytes v1.6.0
   Compiling cc v1.0.97
   Compiling tao v0.16.9
   Compiling crypto-common v0.1.6
   Compiling block-buffer v0.10.4
   Compiling linux-raw-sys v0.4.13
   Compiling bitflags v2.5.0
   Compiling raw-window-handle v0.5.2
   Compiling digest v0.10.7
   Compiling json-patch v1.4.0
   Compiling http v0.2.12
   Compiling soup2 v0.2.1
   Compiling javascriptcore-rs v0.16.0
   Compiling crossbeam-channel v0.5.12
   Compiling gdkwayland-sys v0.15.3
   Compiling aho-corasick v1.1.3
   Compiling instant v0.1.12
   Compiling glob v0.3.1
   Compiling wry v0.24.10
   Compiling lazy_static v1.4.0
   Compiling regex-syntax v0.8.3
   Compiling tauri-runtime v0.14.3
   Compiling cpufeatures v0.2.12
   Compiling sha2 v0.10.8
   Compiling regex-automata v0.4.6
   Compiling tauri-utils v1.5.4
   Compiling ico v0.3.0
   Compiling crossbeam-epoch v0.9.18
   Compiling bstr v1.9.1
   Compiling http-range v0.1.5
   Compiling tauri-runtime-wry v0.14.7
   Compiling base64 v0.21.7
   Compiling tauri-codegen v1.4.3
   Compiling globset v0.4.14
   Compiling crossbeam-deque v0.8.5
   Compiling xattr v1.3.1
   Compiling serialize-to-javascript-impl v0.1.1
   Compiling tauri v1.6.6 (/home/runner/work/tauri/tauri/target/package/tauri-1.6.6)
   Compiling filetime v0.2.23
   Compiling num_cpus v1.16.0
   Compiling dirs-sys-next v0.1.2
   Compiling fastrand v2.1.0
   Compiling tempfile v3.10.1
   Compiling dirs-next v2.0.0
   Compiling tokio v1.37.0
   Compiling tar v0.4.40
   Compiling webkit2gtk v0.18.2
   Compiling tauri-macros v1.4.4
   Compiling serialize-to-javascript v0.1.1
   Compiling ignore v0.4.22
   Compiling serde_repr v0.1.19
   Compiling encoding_rs v0.8.34
   Compiling state v0.5.3
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 22s
    Packaged 76 files, 993.6KiB (221.7KiB compressed)
   Uploading tauri v1.6.6 (/home/runner/work/tauri/tauri/core/tauri)
    Uploaded tauri v1.6.6 to registry `crates-io`
note: waiting for `tauri v1.6.6` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri v1.6.6 at registry `crates-io`

v1.6.5: tauri v1.6.5

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 (585 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.6.5
        ├── tauri 1.6.5
        ├── restart 0.1.0
        └── app-updater 0.1.0

warning: 1 allowed warning found

[1.6.5]

Bug Fixes
  • ef35a793c(#​9729) Fix compilation error when shell-execute or shell-sidecar features are not active

Cargo Publish

Updating crates.io index
   Packaging tauri v1.6.5 (/home/runner/work/tauri/tauri/core/tauri)
    Updating crates.io index
   Verifying tauri v1.6.5 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded alloc-stdlib v0.2.2
  Downloaded bitflags v1.3.2
  Downloaded anyhow v1.0.83
  Downloaded cairo-sys-rs v0.15.1
  Downloaded atk v0.15.1
  Downloaded cfb v0.7.3
  Downloaded brotli-decompressor v2.5.1
  Downloaded derive_more v0.99.17
  Downloaded signal-hook-registry v1.4.2
  Downloaded cpufeatures v0.2.12
  Downloaded darling v0.20.8
  Downloaded strsim v0.10.0
  Downloaded gdk-pixbuf-sys v0.15.10
  Downloaded gio-sys v0.15.10
  Downloaded rand v0.8.5
  Downloaded thin-slice v0.1.1
  Downloaded tauri-runtime-wry v0.14.7
  Downloaded string_cache v0.8.7
  Downloaded typenum v1.17.0
  Downloaded xattr v1.3.1
  Downloaded x11-dl v2.21.0
  Downloaded phf_shared v0.10.0
  Downloaded tao v0.16.9
  Downloaded png v0.17.13
  Downloaded pkg-config v0.3.30
  Downloaded phf_shared v0.11.2
  Downloaded phf_macros v0.11.2
  Downloaded phf_generator v0.11.2
  Downloaded phf_generator v0.10.0
  Downloaded phf_generator v0.8.0
  Downloaded phf v0.8.0
  Downloaded pango-sys v0.15.10
  Downloaded memoffset v0.9.1
  Downloaded matches v0.1.10
  Downloaded markup5ever v0.11.0
  Downloaded libm v0.2.8
  Downloaded kuchikiki v0.8.2
  Downloaded json-patch v1.4.0
  Downloaded javascriptcore-rs-sys v0.4.0
  Downloaded instant v0.1.12
  Downloaded infer v0.13.0
  Downloaded iana-time-zone v0.1.60
  Downloaded http v0.2.12
  Downloaded hex v0.4.3
  Downloaded heck v0.4.1
  Downloaded phf_shared v0.8.0
  Downloaded phf_macros v0.8.0
  Downloaded phf_codegen v0.10.0
  Downloaded phf_codegen v0.8.0
  Downloaded phf v0.11.2
  Downloaded phf v0.10.1
  Downloaded pango v0.15.10
  Downloaded num-traits v0.2.19
  Downloaded nodrop v0.1.14
  Downloaded new_debug_unreachable v1.0.6
  Downloaded mac v0.1.1
  Downloaded javascriptcore-rs v0.16.0
  Downloaded itoa v0.4.8
  Downloaded indexmap v1.9.3
  Downloaded ignore v0.4.22
  Downloaded ico v0.3.0
  Downloaded http-range v0.1.5
  Downloaded html5ever v0.26.0
  Downloaded x11 v2.21.0
  Downloaded wry v0.24.9
  Downloaded webkit2gtk-sys v0.18.0
  Downloaded webkit2gtk v0.18.2
  Downloaded uuid v1.8.0
  Downloaded unicode-segmentation v1.11.0
  Downloaded toml_edit v0.22.12
  Downloaded toml v0.8.12
  Downloaded tendril v0.4.3
  Downloaded tauri-utils v1.5.4
  Downloaded tar v0.4.40
  Downloaded state v0.5.3
  Downloaded soup2 v0.2.1
  Downloaded serde_with v3.8.1
  Downloaded selectors v0.22.0
  Downloaded rand v0.7.3
  Downloaded dunce v1.0.4
  Downloaded version-compare v0.2.0
  Downloaded version-compare v0.0.11
  Downloaded utf-8 v0.7.6
  Downloaded tokio-macros v2.2.0
  Downloaded tauri-runtime v0.14.3
  Downloaded string_cache_codegen v0.5.2
  Downloaded soup2-sys v0.2.0
  Downloaded simd-adler32 v0.3.7
  Downloaded target-lexicon v0.12.14
  Downloaded siphasher v0.3.11
  Downloaded servo_arc v0.1.1
  Downloaded serde_repr v0.1.19
  Downloaded rand_core v0.6.4
  Downloaded proc-macro-error-attr v1.0.4
  Downloaded glib-sys v0.15.10
  Downloaded generic-array v0.14.7
  Downloaded darling_macro v0.20.8
  Downloaded stable_deref_trait v1.2.0
  Downloaded sha2 v0.10.8
  Downloaded serde_with_macros v3.8.1
  Downloaded rustc_version v0.4.0
  Downloaded raw-window-handle v0.5.2
  Downloaded rand_chacha v0.3.1
  Downloaded rand_chacha v0.2.2
  Downloaded gtk-sys v0.15.3
  Downloaded gobject-sys v0.15.10
  Downloaded glob v0.3.1
  Downloaded glib-macros v0.15.13
  Downloaded gdk-pixbuf v0.15.11
  Downloaded cssparser-macros v0.6.1
  Downloaded tauri-macros v1.4.4
  Downloaded tauri-codegen v1.4.3
  Downloaded system-deps v6.2.2
  Downloaded system-deps v5.0.0
  Downloaded rand_pcg v0.2.1
  Downloaded proc-macro-hack v0.5.20+deprecated
  Downloaded proc-macro-crate v1.3.1
  Downloaded ppv-lite86 v0.2.17
  Downloaded gtk v0.15.5
  Downloaded glib v0.15.12
  Downloaded futures-macro v0.3.30
  Downloaded field-offset v0.3.6
  Downloaded dirs-next v2.0.0
  Downloaded darling_core v0.20.8
  Downloaded serialize-to-javascript-impl v0.1.1
  Downloaded rand_core v0.5.1
  Downloaded proc-macro-error v1.0.4
  Downloaded precomputed-hash v0.1.1
  Downloaded heck v0.3.3
  Downloaded gtk3-macros v0.15.6
  Downloaded globset v0.4.14
  Downloaded gdkwayland-sys v0.15.3
  Downloaded fxhash v0.2.1
  Downloaded futures-executor v0.3.30
  Downloaded futf v0.1.5
  Downloaded fdeflate v0.3.4
  Downloaded hashbrown v0.12.3
  Downloaded gio v0.15.12
  Downloaded gdk v0.15.4
  Downloaded dtoa-short v0.3.4
  Downloaded dtoa v1.0.9
  Downloaded getrandom v0.1.16
  Downloaded dirs-sys-next v0.1.2
  Downloaded ctor v0.2.8
  Downloaded serialize-to-javascript v0.1.1
  Downloaded digest v0.10.7
  Downloaded crypto-common v0.1.6
  Downloaded chrono v0.4.38
  Downloaded cfg-expr v0.15.8
  Downloaded convert_case v0.4.0
  Downloaded cfg-expr v0.9.1
  Downloaded gdkx11-sys v0.15.1
  Downloaded gdk-sys v0.15.1
  Downloaded cssparser v0.27.2
  Downloaded brotli v3.5.0
  Downloaded block-buffer v0.10.4
  Downloaded cairo-rs v0.15.12
  Downloaded byteorder v1.5.0
  Downloaded atk-sys v0.15.1
  Downloaded alloc-no-stdlib v2.0.4
   Compiling proc-macro2 v1.0.82
   Compiling unicode-ident v1.0.12
   Compiling serde v1.0.201
   Compiling libc v0.2.154
   Compiling smallvec v1.13.2
   Compiling pkg-config v0.3.30
   Compiling hashbrown v0.14.5
   Compiling equivalent v1.0.1
   Compiling heck v0.5.0
   Compiling quote v1.0.36
   Compiling indexmap v2.2.6
   Compiling target-lexicon v0.12.14
   Compiling syn v2.0.61
   Compiling winnow v0.6.8
   Compiling version-compare v0.2.0
   Compiling cfg-expr v0.15.8
   Compiling cfg-if v1.0.0
   Compiling autocfg v1.3.0
   Compiling syn v1.0.109
   Compiling version_check v0.9.4
   Compiling ppv-lite86 v0.2.17
   Compiling siphasher v0.3.11
   Compiling once_cell v1.19.0
   Compiling getrandom v0.2.15
   Compiling bitflags v1.3.2
   Compiling thiserror v1.0.60
   Compiling getrandom v0.1.16
   Compiling rand_core v0.6.4
   Compiling proc-macro-error-attr v1.0.4
   Compiling rand_chacha v0.3.1
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.9
   Compiling anyhow v1.0.83
   Compiling winnow v0.5.40
   Compiling rand_core v0.5.1
   Compiling futures-core v0.3.30
   Compiling pin-project-lite v0.2.14
   Compiling rand v0.8.5
   Compiling futures-task v0.3.30
   Compiling serde_derive v1.0.201
   Compiling thiserror-impl v1.0.60
   Compiling futures-macro v0.3.30
   Compiling pin-utils v0.1.0
   Compiling rand_pcg v0.2.1
   Compiling futures-util v0.3.30
   Compiling rand_chacha v0.2.2
   Compiling phf_shared v0.10.0
   Compiling heck v0.4.1
   Compiling unicode-segmentation v1.11.0
   Compiling rand v0.7.3
   Compiling heck v0.3.3
   Compiling futures-channel v0.3.30
   Compiling phf_shared v0.8.0
   Compiling lock_api v0.4.12
   Compiling cfg-expr v0.9.1
   Compiling version-compare v0.0.11
   Compiling parking_lot_core v0.9.10
   Compiling futures-executor v0.3.30
   Compiling semver v1.0.23
   Compiling fnv v1.0.7
   Compiling phf_generator v0.8.0
   Compiling log v0.4.21
   Compiling scopeguard v1.2.0
   Compiling phf_generator v0.10.0
   Compiling itoa v1.0.11
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling parking_lot v0.12.2
   Compiling new_debug_unreachable v1.0.6
   Compiling byteorder v1.5.0
   Compiling ryu v1.0.18
   Compiling phf_codegen v0.10.0
   Compiling string_cache_codegen v0.5.2
   Compiling precomputed-hash v0.1.1
   Compiling ident_case v1.0.1
   Compiling mac v0.1.1
   Compiling memchr v2.7.2
   Compiling gio v0.15.12
   Compiling tinyvec_macros v0.1.1
   Compiling strsim v0.10.0
   Compiling phf_macros v0.8.0
   Compiling darling_core v0.20.8
   Compiling tinyvec v1.6.0
   Compiling markup5ever v0.11.0
   Compiling futf v0.1.5
   Compiling phf_codegen v0.8.0
   Compiling cssparser v0.27.2
   Compiling toml_datetime v0.6.5
   Compiling serde_spanned v0.6.5
   Compiling toml v0.5.11
   Compiling toml_edit v0.22.12
   Compiling toml_edit v0.19.15
   Compiling toml v0.8.12
   Compiling system-deps v6.2.2
   Compiling system-deps v5.0.0
   Compiling proc-macro-crate v1.3.1
   Compiling uuid v1.8.0
   Compiling dtoa v1.0.9
   Compiling crc32fast v1.4.0
   Compiling simd-adler32 v0.3.7
   Compiling glib-sys v0.15.10
   Compiling gobject-sys v0.15.10
   Compiling gdk-sys v0.15.1
   Compiling gio-sys v0.15.10
   Compiling pango-sys v0.15.10
   Compiling glib-macros v0.15.13
   Compiling atk-sys v0.15.1
   Compiling cairo-sys-rs v0.15.1
   Compiling gdk-pixbuf-sys v0.15.10
   Compiling gtk-sys v0.15.3
   Compiling futures-io v0.3.30
   Compiling utf-8 v0.7.6
   Compiling tendril v0.4.3
   Compiling dtoa-short v0.3.4
   Compiling soup2-sys v0.2.0
   Compiling darling_macro v0.20.8
   Compiling string_cache v0.8.7
   Compiling glib v0.15.12
   Compiling selectors v0.22.0
   Compiling unicode-normalization v0.1.23
   Compiling phf v0.8.0
   Compiling rustc_version v0.4.0
   Compiling phf v0.10.1
   Compiling html5ever v0.26.0
   Compiling cssparser-macros v0.6.1
   Compiling phf_shared v0.11.2
   Compiling memoffset v0.9.1
   Compiling indexmap v1.9.3
   Compiling unicode-bidi v0.3.15
   Compiling adler v1.0.2
   Compiling itoa v0.4.8
   Compiling typenum v1.17.0
   Compiling nodrop v0.1.14
   Compiling matches v0.1.10
   Compiling convert_case v0.4.0
   Compiling percent-encoding v2.3.1
   Compiling crossbeam-utils v0.8.19
   Compiling alloc-no-stdlib v2.0.4
   Compiling stable_deref_trait v1.2.0
   Compiling servo_arc v0.1.1
   Compiling alloc-stdlib v0.2.2
   Compiling derive_more v0.99.17
   Compiling form_urlencoded v1.2.1
   Compiling idna v0.5.0
   Compiling miniz_oxide v0.7.2
   Compiling phf_generator v0.11.2
   Compiling field-offset v0.3.6
   Compiling darling v0.20.8
   Compiling fxhash v0.2.1
   Compiling generic-array v0.14.7
   Compiling serde_json v1.0.117
   Compiling hashbrown v0.12.3
   Compiling thin-slice v0.1.1
   Compiling flate2 v1.0.30
   Compiling pango v0.15.10
   Compiling cairo-rs v0.15.12
   Compiling serde_with_macros v3.8.1
   Compiling phf_macros v0.11.2
   Compiling url v2.5.0
   Compiling brotli-decompressor v2.5.1
   Compiling fdeflate v0.3.4
   Compiling cfb v0.7.3
   Compiling javascriptcore-rs-sys v0.4.0
   Compiling gtk v0.15.5
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling infer v0.13.0
   Compiling png v0.17.13
   Compiling brotli v3.5.0
   Compiling gdk-pixbuf v0.15.11
   Compiling gdk v0.15.4
   Compiling phf v0.11.2
   Compiling serde_with v3.8.1
   Compiling kuchikiki v0.8.2
   Compiling atk v0.15.1
   Compiling gtk3-macros v0.15.6
   Compiling webkit2gtk-sys v0.18.0
   Compiling ctor v0.2.8
   Compiling x11 v2.21.0
   Compiling dunce v1.0.4
   Compiling gdkx11-sys v0.15.1
   Compiling x11-dl v2.21.0
   Compiling cc v1.0.97
   Compiling bytes v1.6.0
   Compiling rustix v0.38.34
   Compiling tao v0.16.9
   Compiling block-buffer v0.10.4
   Compiling crypto-common v0.1.6
   Compiling raw-window-handle v0.5.2
   Compiling linux-raw-sys v0.4.13
   Compiling bitflags v2.5.0
   Compiling digest v0.10.7
   Compiling json-patch v1.4.0
   Compiling http v0.2.12
   Compiling soup2 v0.2.1
   Compiling javascriptcore-rs v0.16.0
   Compiling crossbeam-channel v0.5.12
   Compiling gdkwayland-sys v0.15.3
   Compiling aho-corasick v1.1.3
   Compiling instant v0.1.12
   Compiling lazy_static v1.4.0
   Compiling wry v0.24.9
   Compiling cpufeatures v0.2.12
   Compiling glob v0.3.1
   Compiling regex-syntax v0.8.3
   Compiling tauri-runtime v0.14.3
   Compiling regex-automata v0.4.6
   Compiling tauri-utils v1.5.4
   Compiling sha2 v0.10.8
   Compiling ico v0.3.0
   Compiling crossbeam-epoch v0.9.18
   Compiling bstr v1.9.1
   Compiling base64 v0.21.7
   Compiling tauri-runtime-wry v0.14.7
   Compiling http-range v0.1.5
   Compiling tauri-codegen v1.4.3
   Compiling globset v0.4.14
   Compiling crossbeam-deque v0.8.5
   Compiling xattr v1.3.1
   Compiling serialize-to-javascript-impl v0.1.1
   Compiling tauri v1.6.5 (/home/runner/work/tauri/tauri/target/package/tauri-1.6.5)
   Compiling filetime v0.2.23
   Compiling num_cpus v1.16.0
   Compiling dirs-sys-next v0.1.2
   Compiling webkit2gtk v0.18.2
   Compiling fastrand v2.1.0
   Compiling tempfile v3.10.1
   Compiling tauri-macros v1.4.4
   Compiling dirs-next v2.0.0
   Compiling tokio v1.37.0
   Compiling tar v0.4.40
   Compiling serialize-to-javascript v0.1.1
   Compiling ignore v0.4.22
   Compiling serde_repr v0.1.19
   Compiling encoding_rs v0.8.34
   Compiling state v0.5.3
    Finished dev [unoptimized + debuginfo] target(s) in 1m 19s
    Packaged 76 files, 994.8KiB (221.9KiB compressed)
   Uploading tauri v1.6.5 (/home/runner/work/tauri/tauri/core/tauri)
    Uploaded tauri v1.6.5 to registry `crates-io`
note: Waiting for `tauri v1.6.5` to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri v1.6.5 at registry `crates-io`

v1.6.4: tauri v1.6.4

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 (585 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.6.4
        ├── tauri 1.6.4
        ├── restart 0.1.0
        └── app-updater 0.1.0

warning: 1 allowed warning found

[1.6.4]

Enhancements
  • 7f885bd5e(#​9706) Enhance the speed of The JS Command.execute API from shell module.
Dependencies
  • Upgraded to tauri-runtime-wry@0.14.7

Cargo Publish

Updating crates.io index
   Packaging tauri v1.6.4 (/home/runner/work/tauri/tauri/core/tauri)
    Updating crates.io index
   Verifying tauri v1.6.4 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded alloc-stdlib v0.2.2
  Downloaded futures-macro v0.3.30
  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 tauri-macros v1.4.4
  Downloaded ignore v0.4.22
  Downloaded tauri-codegen v1.4.3
  Downloaded libm v0.2.8
  Downloaded brotli v3.5.0
  Downloaded brotli-decompressor v2.5.1
  Downloaded state v0.5.3
  Downloaded serde_repr v0.1.19
  Downloaded ico v0.3.0
  Downloaded globset v0.4.14
  Downloaded tauri-runtime-wry v0.14.7
   Compiling proc-macro2 v1.0.82
   Compiling unicode-ident v1.0.12
   Compiling serde v1.0.201
   Compiling libc v0.2.154
   Compiling smallvec v1.13.2
   Compiling pkg-config v0.3.30
   Compiling equivalent v1.0.1
   Compiling hashbrown v0.14.5
   Compiling quote v1.0.36
   Compiling indexmap v2.2.6
   Compiling syn v2.0.61
   Compiling heck v0.5.0
   Compiling target-lexicon v0.12.14
   Compiling winnow v0.6.8
   Compiling version-compare v0.2.0
   Compiling cfg-if v1.0.0
   Compiling autocfg v1.3.0
   Compiling cfg-expr v0.15.8
   Compiling syn v1.0.109
   Compiling version_check v0.9.4
   Compiling siphasher v0.3.11
   Compiling ppv-lite86 v0.2.17
   Compiling once_cell v1.19.0
   Compiling getrandom v0.2.15
   Compiling bitflags v1.3.2
   Compiling thiserror v1.0.60
   Compiling getrandom v0.1.16
   Compiling rand_core v0.6.4
   Compiling proc-macro-error-attr v1.0.4
   Compiling rand_chacha v0.3.1
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.9
   Compiling anyhow v1.0.83
   Compiling winnow v0.5.40
   Compiling rand_core v0.5.1
   Compiling pin-project-lite v0.2.14
   Compiling futures-core v0.3.30
   Compiling rand v0.8.5
   Compiling pin-utils v0.1.0
   Compiling futures-task v0.3.30
   Compiling rand_pcg v0.2.1
   Compiling serde_derive v1.0.201
   Compiling thiserror-impl v1.0.60
   Compiling futures-macro v0.3.30
   Compiling futures-util v0.3.30
   Compiling rand_chacha v0.2.2
   Compiling phf_shared v0.10.0
   Compiling heck v0.4.1
   Compiling unicode-segmentation v1.11.0
   Compiling rand v0.7.3
   Compiling heck v0.3.3
   Compiling futures-channel v0.3.30
   Compiling phf_shared v0.8.0
   Compiling lock_api v0.4.12
   Compiling cfg-expr v0.9.1
   Compiling version-compare v0.0.11
   Compiling semver v1.0.23
   Compiling fnv v1.0.7
   Compiling parking_lot_core v0.9.10
   Compiling phf_generator v0.8.0
   Compiling futures-executor v0.3.30
   Compiling log v0.4.21
   Compiling scopeguard v1.2.0
   Compiling phf_generator v0.10.0
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling itoa v1.0.11
   Compiling parking_lot v0.12.2
   Compiling ryu v1.0.18
   Compiling byteorder v1.5.0
   Compiling new_debug_unreachable v1.0.6
   Compiling string_cache_codegen v0.5.2
   Compiling phf_codegen v0.10.0
   Compiling memchr v2.7.2
   Compiling strsim v0.10.0
   Compiling gio v0.15.12
   Compiling mac v0.1.1
   Compiling tinyvec_macros v0.1.1
   Compiling ident_case v1.0.1
   Compiling precomputed-hash v0.1.1
   Compiling darling_core v0.20.8
   Compiling tinyvec v1.6.0
   Compiling futf v0.1.5
   Compiling phf_macros v0.8.0
   Compiling markup5ever v0.11.0
   Compiling phf_codegen v0.8.0
   Compiling cssparser v0.27.2
   Compiling uuid v1.8.0
   Compiling toml_datetime v0.6.5
   Compiling serde_spanned v0.6.5
   Compiling toml_edit v0.22.12
   Compiling toml_edit v0.19.15
   Compiling toml v0.5.11
   Compiling toml v0.8.12
   Compiling system-deps v6.2.2
   Compiling proc-macro-crate v1.3.1
   Compiling system-deps v5.0.0
   Compiling glib-macros v0.15.13
   Compiling simd-adler32 v0.3.7
   Compiling glib-sys v0.15.10
   Compiling gobject-sys v0.15.10
   Compiling gdk-sys v0.15.1
   Compiling gio-sys v0.15.10
   Compiling atk-sys v0.15.1
   Compiling pango-sys v0.15.10
   Compiling gdk-pixbuf-sys v0.15.10
   Compiling cairo-sys-rs v0.15.1
   Compiling gtk-sys v0.15.3
   Compiling glib v0.15.12
   Compiling futures-io v0.3.30
   Compiling crc32fast v1.4.0
   Compiling dtoa v1.0.9
   Compiling utf-8 v0.7.6
   Compiling dtoa-short v0.3.4
   Compiling tendril v0.4.3
   Compiling soup2-sys v0.2.0
   Compiling darling_macro v0.20.8
   Compiling string_cache v0.8.7
   Compiling selectors v0.22.0
   Compiling phf v0.8.0
   Compiling unicode-normalization v0.1.23
   Compiling rustc_version v0.4.0
   Compiling phf v0.10.1
   Compiling html5ever v0.26.0
   Compiling cssparser-macros v0.6.1
   Compiling phf_shared v0.11.2
   Compiling memoffset v0.9.1
   Compiling indexmap v1.9.3
   Compiling crossbeam-utils v0.8.19
   Compiling itoa v0.4.8
   Compiling unicode-bidi v0.3.15
   Compiling convert_case v0.4.0
   Compiling typenum v1.17.0
   Compiling percent-encoding v2.3.1
   Compiling nodrop v0.1.14
   Compiling alloc-no-stdlib v2.0.4
   Compiling adler v1.0.2
   Compiling matches v0.1.10
   Compiling stable_deref_trait v1.2.0
   Compiling servo_arc v0.1.1
   Compiling miniz_oxide v0.7.2
   Compiling alloc-stdlib v0.2.2
   Compiling form_urlencoded v1.2.1
   Compiling derive_more v0.99.17
   Compiling idna v0.5.0
   Compiling phf_generator v0.11.2
   Compiling field-offset v0.3.6
   Compiling darling v0.20.8
   Compiling fxhash v0.2.1
   Compiling generic-array v0.14.7
   Compiling hashbrown v0.12.3
   Compiling thin-slice v0.1.1
   Compiling serde_json v1.0.117
   Compiling flate2 v1.0.30
   Compiling serde_with_macros v3.8.1
   Compiling phf_macros v0.11.2
   Compiling url v2.5.0
   Compiling brotli-decompressor v2.5.1
   Compiling pango v0.15.10
   Compiling cairo-rs v0.15.12
   Compiling javascriptcore-rs-sys v0.4.0
   Co

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 has been generated by Mend Renovate. View repository job log here.

Footnotes

  1. https://en.wikipedia.org/wiki/Open_redirect

@renovate renovate bot force-pushed the renovate/crate-tauri-vulnerability branch from 3992662 to 5cb916b Compare May 23, 2024 15:37
@renovate renovate bot changed the title fix(deps): update rust crate tauri to v1.2.5 [security] fix(deps): update rust crate tauri to v1.6.7 [security] May 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants