github tauri-apps/tauri tauri-cli-v2.12.0
tauri-cli v2.12.0

latest release: tauri-driver-v2.1.0
3 hours ago

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 1271 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (1091 crate dependencies)
Crate:     fxhash
Version:   0.2.1
Warning:   unmaintained
Title:     fxhash - no longer maintained
Date:      2025-09-05
ID:        RUSTSEC-2025-0057
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0057

Crate:     paste
Version:   1.0.15
Warning:   unmaintained
Title:     paste - no longer maintained
Date:      2024-10-07
ID:        RUSTSEC-2024-0436
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0436

Crate:     rustls-pemfile
Version:   2.2.0
Warning:   unmaintained
Title:     rustls-pemfile is unmaintained
Date:      2025-11-28
ID:        RUSTSEC-2025-0134
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0134

Crate:     rustybuzz
Version:   0.20.1
Warning:   unmaintained
Title:     `rustybuzz` is unmaintained
Date:      2026-07-11
ID:        RUSTSEC-2026-0206
URL:       https://rustsec.org/advisories/RUSTSEC-2026-0206

Crate:     ttf-parser
Version:   0.25.1
Warning:   unmaintained
Title:     `ttf-parser` is unmaintained
Date:      2026-06-28
ID:        RUSTSEC-2026-0192
URL:       https://rustsec.org/advisories/RUSTSEC-2026-0192

warning: 5 allowed warnings found

[2.12.0]

New Features

  • f6c1eb253 (#15401) Added bundle.windows.bundleVCRuntime to copy the Visual C++ runtime DLLs into Windows MSI and NSIS installers. The bundler locates the runtime through VCTOOLS_REDIST_DIR or the bundled vswhere.exe.

  • f76b1d3ae (#15644) The bundler now prints the size of each generated bundle next to its path in the Finished N bundles at: output (directories such as macOS .app bundles are measured recursively).

  • af465eae1 (#15619) Add a --no-binary-patching flag to tauri build and tauri bundle. When set, the bundler skips patching the main executable with bundle type information (and the subsequent re-signing), leaving an already-signed binary untouched. Patching is only required when shipping multiple bundle types per platform that should each update with their own installer format.

  • 0646cc162 (#15620) Add a --fit option to tauri icon to accept non-square source images. --fit cover center-crops the source to a square (clipping the longer side) and --fit contain pads the shorter side with transparency. Non-square sources without --fit keep erroring, now with a hint pointing to the flag.

  • f6c1eb253 (#15401) Added build.windows.staticVCRuntime to control MSVC static runtime linking. The STATIC_VCRUNTIME environment variable is now deprecated and emits a migration warning when used.

  • f45ec0dcf Record the app version in the trusted comment of updater signatures, so a signed artifact is bound to the version it was released as.

    An update endpoint response is not signed, and the signature only covers the downloaded artifact, so the announced version on its own does not prove which release the url and signature point at. minisign covers the trusted comment with its global signature, which lets the updater plugin compare the two and reject a response that pairs a version number with a different release. Enable requireSignedVersion in the updater plugin configuration to enforce this.

    tauri build fills the version in automatically, and tauri plugin add updater now enables requireSignedVersion for the project it is adding the plugin to. tauri signer sign gains an --app-version flag for signing updater artifacts by hand, and warns when it is omitted.

Enhancements

  • e19121427 (#15993) Don't always rewrite Cargo.toml file from CRLF line endings to LF

  • aebf38c84 (#15694) Migrate the Android Gradle scripts from the deprecated kotlinOptions DSL to compilerOptions, which is accepted by both Kotlin Gradle Plugin 1.9.x and 2.x. This lets projects move to Kotlin 2.x without hitting the hard error that 2.3+ raises on the old DSL.

    This increased the minimum supported Gradle version to 8.13, if your gradle is on an earlier version, delete src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties and re-run tauri android init to update it.

  • d89d8fa62 (#15780) Warn during Android commands (init/dev/build) when the active Java version is too new for the Gradle version the project uses (e.g. Java 27 against the Gradle 9.6.1 the template ships, or Java 25 against a project still on Gradle 8.14), instead of letting the build fail later with a cryptic error. The warning points to the Gradle/Java compatibility matrix and suggests a supported JDK.

  • c3d21bd60 (#15730) Use Theme.Material3.DayNight.NoActionBar instead of Theme.MaterialComponents.DayNight.NoActionBar when running tauri android init

  • f654f470c (#15862) Update template to use targetSdk = 37

  • cdaf7eab6 (#15765) Clarify that the tauri init frontend commands run before tauri dev and tauri build, and can be left empty when they are not needed.

  • d0f38df06 (#15997) When stdin is not a terminal, tauri init now automatically skips prompts, avoiding IO errors in CI and scripts. This eliminates the need to pass --ci explicitly in non-interactive environments.

  • ca160ad48 (#15895) tauri build now warns when productName is still set to the default tauri-app, since it names the generated bundles and is written into install paths and metadata that are expected to be unique to your application. The config documentation for productName now lists what the field controls on each platform, and identifier's documentation notes that the default value is rejected.

  • 010f06bae (#15737) Document the TAURI_SIGNING_PRIVATE_KEY_PATH environment variable and clarify that TAURI_SIGNING_PRIVATE_KEY accepts a string or a path for the build and bundle command but must be the literal key string for the signer sign command, both in ENVIRONMENT_VARIABLES.md and in the signer generate command output.

Bug Fixes

  • 9bad06b9f (#16096) tauri capability new and tauri permission new now accept an --out path to a file that does not exist yet, trim comma-separated prompt answers (so fs:default, core:default works), report invalid permissions as errors instead of panicking, and reject identifiers that are not valid file names (such as ../../x), which previously let them write outside of the capabilities or permissions directory.
  • 9642b3087 (#16117) tauri add now honors --tag, --rev and --branch for official plugins instead of silently installing the registry version, and rejects passing more than one of them. With npm, the JS package requirement is now ~<version> like the other package managers, instead of >=<version> which allowed a later major version.
  • cada1cd4f (#16105) Fix Android dev server port forwarding: adb reverse --list is now matched on the exact port (so tcp:80 no longer matches tcp:8080), stale forwards on other connected devices are actually removed, and the forward verification gives up with a warning after a few attempts instead of retrying forever.
  • d5bd04658 (#16111) Fix bundle > android > debugApplicationIdSuffix being written to the signingConfigs debug block instead of the buildTypes one, and keep the existing content of single-line debug blocks such as getByName("debug") { isDebuggable = true } instead of dropping it.
  • ba17da2e5 (#16101) tauri icon now generates 72x72 Android hdpi launcher icons (previously 49x49) and writes the Android launcher background color in #RRGGBB/#AARRGGBB notation instead of the raw CSS color string, which Android rejected or misread. Invalid SVG sources and --png 0 now return an error instead of panicking.
  • 272842a57 (#16128) Fix error messages that printed placeholders such as {t} literally instead of the value, e.g. "Could not find an Android device matching {t}".
  • 10ad4e54e (#16127) The Bash completions generated by tauri completions no longer replace the completions of cargo, npm, pnpm, yarn, bun and deno. They now define a _tauri_cli function registered only for the tauri and cargo-tauri commands. Generating completions when running the cargo-tauri binary directly no longer panics.
  • 0e4ded72a (#16107) Fix binaries in src/bin and src/main.rs being left out of bundles when Cargo.toml declares a [[bin]] target without a path.
  • 8e0fa2e2f (#16097) Fix the bundler using the host target triple when --target is not passed but build.target is set in .cargo/config.toml. The CLI now also accepts build.target as an array and honors the CARGO_BUILD_TARGET environment variable.
  • 7bb0a5421 (#16120) Fix the Cargo.toml feature rewrite corrupting a string dependency version that has a trailing comment or uses single quotes (e.g. tauri = "2" # pin became "2#pin"). The version value is now kept as-is and the comment is preserved.
  • e4630258e (#16114) Fix the CLI's working directory being left changed to the config directory when the Tauri configuration fails to parse, for example when tauri dev reloads an invalid config.
  • 1b91b7b7b (#16102) tauri info now logs a warning when it cannot check the latest crate version on crates.io instead of silently ignoring the failure, and no longer panics if crates.io returns a version it cannot parse.
  • 1b91b7b7b (#16102) tauri info now lists every locked version of a Rust crate when Cargo.lock contains more than one, and no longer panics when the crates.io response cannot be parsed.
  • 6507d0b8b (#16124) tauri dev now reports an error instead of panicking when the beforeDevCommand cannot be spawned or the devUrl host cannot be resolved, and no longer risks stopping the beforeDevCommand process tree twice when Ctrl+C and the app exit race.
  • c1ea96ad6 (#16110) Fix tauri dev not reacting to the app exiting when a process spawned by the app kept its stderr open, and stop keeping the whole app stderr output in memory. Also fix command output capture that could return empty output when the command finished before its output was read.
  • d61fbdc3e (#16109) Fix Cargo.toml feature injection and the v1 migration only updating either [dependencies] or [target.'cfg(..)'.dependencies], whichever came first in the file. Both the main and all target-specific dependency tables are now updated.
  • 5d995ed35 (#16017) Normalize gen/android/gradlew CRLF line endings to LF on all host platforms, not only Unix. A gradlew checked out with CRLF broke sh ./gradlew on Windows hosts using Git Bash. The rewrite only runs when a CRLF is actually present. A failure to rewrite aborts on Unix, where the script is executed directly; on Windows the CLI invokes gradlew.bat, so failures there only warn.
  • 6d943c420 (#16065) Fix the tauri capability new command description, which said "Create a new permission file", and the --skip-stapling help text on tauri build and tauri bundle, whose first line described the opposite of what the flag does.
  • b8be924d3 (#16106) tauri init no longer panics when the app name, window title, frontend dist, dev URL or before dev/build commands contain quotes or backslashes (e.g. -D ..\dist or vite --host "0.0.0.0"); the values are now JSON-escaped in the generated tauri.conf.json.
  • b9b32a259 (#16108) Fix PRODUCT_BUNDLE_IDENTIFIER in the iOS Xcode project being set to the raw identifier (with underscores) instead of the sanitized iOS bundle identifier used by the Xcode project template and the export options provisioning profiles.
  • 4f51a2f06 (#16115) Fix tauri ios run --features being ignored, and tauri ios dev --release still building the app in debug mode.
  • 59e077457 (#16075) tauri ios build for a simulator target no longer fails with "failed to rename app: Directory not empty" when the output .app from a previous build exists.
  • fe1aa30d2 (#16113) Quote the Tauri CLI path and the Xcode variables in the iOS "Build Rust Code" build phase, fixing builds when Xcode or the CLI is installed in a path containing spaces (requires regenerating the Xcode project with tauri ios init). Also fixes CXXFLAGS not being set for iOS targets in tauri ios xcode-script.
  • aa0a801c3 (#16116) Fix Java version detection for the Android Java/Gradle compatibility warning when JAVA_HOME is not set: the java binary on PATH is now resolved through symlinks (e.g. Linux alternatives and Homebrew), and on macOS the /usr/bin/java stub falls back to /usr/libexec/java_home.
  • 1aafaa4e3 (#16103) When rewriting a localhost devUrl to the network address for mobile development, the query string and fragment are now preserved, and the IPv6 loopback ([::1]) and unspecified ([::]) addresses are now treated as localhost.
  • 022932dd5 (#16123) Fix iOS Xcode project synchronization corrupting project.pbxproj when several build settings were added to the same configuration, when an added setting was changed again, or when a multi-line setting was overwritten. Product names, signing identities and other values written to the project are now properly escaped.
  • a4099d819 (#16098) tauri permission add (and tauri add) no longer overwrites an existing capabilities/desktop.json or capabilities/mobile.json when adding a desktop-only or mobile-only plugin permission and no platform-restricted capability exists; the new capability now gets an unused file name and identifier (e.g. desktop-2.json). An explicitly passed capability is now used even if its platforms do not match the plugin, with a warning, instead of being silently ignored.
  • e49d1b474 (#16100) tauri permission rm <plugin>:* and tauri remove no longer strip unrelated permissions whose identifier merely contains the plugin name (e.g. tauri remove os removing positioner:default). Local permission files are now looked up in the Tauri directory, like tauri permission new, and an unparsable permission file is skipped with a warning instead of aborting the command.
  • efa82f5ed (#16125) Fix plugin scaffolding for names like my-plugin: the default Android package ID now uses a snake_case segment (com.plugin.my_plugin) and user-provided IDs are validated, iOS Xcode folders use the same kebab-case name as the project file, and the plugin ios init/plugin android init code snippets now match the generated bindings and the setup(|app, api| ..) API. plugin init into a non-empty directory no longer creates a permissions folder after skipping the template.
  • db6804d80 (#16126) Fix --release being added to the cargo command when a custom profile is passed as --profile=<name>, which made cargo reject the build.
  • 8310461f6 (#16104) Fix tauri init and tauri info detecting SvelteKit projects as plain Svelte; tauri init suggested the wrong dev server URL and frontend dist directory.
  • eaf96690d (#15804) On Linux, do not bundle xdg-open and xdg-utils in the AppImage anymore. This rarely worked and usually requires host system support anyway.
  • 2b7c1f8b6 (#16003) Fix tauri add / tauri remove installing npm plugin packages into src-tauri instead of the frontend directory.
  • c735ba32b (#15241) Fix broken child window icons in Task Manager, you'll need to re-run tauri icon to generate the fixed icons
  • adf5acf6f (#15651) Fix MSI bundling when an external binary filename starts with a digit.
  • 11012a13f (#15681) Fix WiX bundler doesn't respect the resource's target file name.
  • 59e077457 (#16075) Detect pnpm from npm_config_user_agent when generating the mobile projects. pnpm's native binary (pnpm 11+) runs package scripts without setting PNPM_PACKAGE_NAME, and when installed through corepack the binary is named pnpm-native, so tauri android init recorded pnpm-native as the command for Gradle to run and the Android build failed with "A problem occurred starting process 'command 'pnpm-native''".
  • 6a298ee12 (#15713) Fix tauri info reporting the Rust-only plugins (localhost, persisted-scope and single-instance) as missing their @tauri-apps/plugin-* JavaScript package, which is never published for those plugins.
  • 33b3ea582 The bundled vswhere.exe is now written to a new, uniquely named temporary file on each use and removed afterwards, instead of running any existing %TEMP%\vswhere.exe.

What's Changed

Security fixes

  • 98918df64 (#16112) tauri add no longer installs the npm package tauri-plugin-<name>-api for community plugins. npm and crates.io are separate namespaces, so that package may be unowned or squatted; the CLI now asks you to install the plugin's JavaScript bindings yourself. tauri remove only removes the plugin's JS package when package.json lists it, and a failure there no longer skips the capability cleanup.
  • cc9d522c6 (#16095) The built-in dev server now rejects requests whose Host header is not the address it serves on, which blocks DNS rebinding attacks, and rejects cross-site Origins on its reload WebSocket. The index.html fallback now goes through the same path scope check as other files, and the reload WebSocket no longer closes when the client sends a message.
  • dacddfe9f (#16094) The CLI no longer writes its default ignore rules to shared files in the system temporary directory (.gitignore and .tauri/.gitignore) and reads them back, which let other local users change which files the project lookup and the dev watcher skip. The rules are now applied in memory. TAURI_CLI_WATCHER_IGNORE_FILENAME is now consistently treated as an ignore file name looked up in each directory, as documented.
  • fdd56da19 (#16099) Secure the local server that tauri android|ios dev|build uses to pass options to the Android Studio and Xcode build scripts: requests now need a random per-session token, WebSocket connections from web pages (with an Origin header) are rejected, and variables whose name contains TOKEN, PASSWORD, SECRET or CREDENTIAL are no longer sent. The connection details are now written with owner-only permissions to gen/<android|apple>/.tauri/cli-options-server.json (instead of the shared temp directory) and removed when the command exits. The IDE build scripts now report a clear error when the Tauri CLI command is not running.
  • ff7cd8d86 (#16118) tauri signer generate --write-keys now creates the private key with owner-only permissions (0600) on Unix and refuses to overwrite either the private or the public key file without --force. Updater signing now rejects file names containing tabs or newlines (which would corrupt the signature's trusted comment) and assumes an empty password instead of prompting when no password is given and stdin is not a terminal. tauri signer reports errors instead of panicking.
  • 51aa20388 (#16119) On Windows, package manager commands (npm, pnpm, yarn, bun, deno, node) are now executed directly instead of through cmd /c, so arguments such as @tauri-apps/plugin-fs@>=2 are escaped properly and can no longer be interpreted as shell redirections or command separators.

Dependencies

  • Upgraded to tauri-utils@2.10.0

  • Upgraded to tauri-bundler@2.10.0

  • Upgraded to tauri-macos-sign@2.4.0

  • e2e585ad1 (#15828) On Android, fix missing consumer-rules.pro file in the template.

    IMPORTANT: For plugin authors, update your build.gradle.kts file to remove the

        buildTypes {
            release {
                isMinifyEnabled = false
                proguardFiles(
                    getDefaultProguardFile("proguard-android-optimize.txt"),
                    "proguard-rules.pro"
                )
            }
        }

    section and rename your proguard-rules.pro to consumer-rules.pro to match the consumerProguardFiles("consumer-rules.pro") in the template.

  • e2e585ad1 (#15828) On Android, updated the template to use Gradle v9.6.1 (com.android.tools.build:gradle v9.3.1) and Kotlin v2.2. Use tauri android init to apply the change.

  • 9e9a54dea (#15890) Update the generated iOS Xcode project to build with Xcode 27. The scenes lifecycle is not enabled by default: to opt in, add the UIApplicationSceneManifest key to your src-tauri/Info.ios.plist.

  • b6660a041 (#15954) Update typescript to v7 in tauri plugin init template. Also fixes the default rootDir in the template tsconfig.json

  • 9e9a54dea (#15890) Update cargo-mobile2 and change the default minimum iOS version to 15.0 to support Xcode 27.

Cargo Publish

Updating crates.io index
   Packaging tauri-cli v2.12.0 (/home/runner/work/tauri/tauri/crates/tauri-cli)
    Updating crates.io index
    Packaged 276 files, 2.9MiB (1.9MiB compressed)
   Verifying tauri-cli v2.12.0 (/home/runner/work/tauri/tauri/crates/tauri-cli)
 Downloading crates ...
  Downloaded bytecount v0.6.8
  Downloaded arrayref v0.3.9
  Downloaded compact_str v0.9.1
  Downloaded async-trait v0.1.88
  Downloaded css-color v0.2.8
  Downloaded castaway v0.2.3
  Downloaded dialoguer v0.12.0
  Downloaded console v0.16.4
  Downloaded cow-utils v0.1.3
  Downloaded cargo-mobile2 v0.22.5
  Downloaded elf v0.8.0
  Downloaded fontconfig-parser v0.5.7
  Downloaded deunicode v1.6.0
  Downloaded base64 v0.13.1
  Downloaded fancy-regex v0.19.0
  Downloaded axum v0.8.9
  Downloaded axum-core v0.5.6
  Downloaded ctrlc v3.4.5
  Downloaded oxc_data_structures v0.110.0
  Downloaded core_maths v0.1.0
  Downloaded dragonbox_ecma v0.1.12
  Downloaded data-url v0.3.1
  Downloaded colored v2.2.0
  Downloaded english-numbers v0.3.3
  Downloaded euclid v0.22.14
  Downloaded fontdb v0.23.0
  Downloaded colored v3.1.1
  Downloaded fraction v0.15.3
  Downloaded itertools v0.15.0
  Downloaded borrow-or-share v0.2.4
  Downloaded email_address v0.2.9
  Downloaded globset v0.4.20
  Downloaded ignore v0.4.33
  Downloaded java-properties v2.0.0
  Downloaded jsonschema-regex v0.49.9
  Downloaded matchit v0.8.4
  Downloaded notify-debouncer-full v0.7.0
  Downloaded jsonrpsee v0.26.0
  Downloaded path_abs v0.5.1
  Downloaded duct v1.1.1
  Downloaded nom v8.0.0
  Downloaded file-id v0.2.3
  Downloaded jsonrpsee-ws-client v0.26.0
  Downloaded roxmltree v0.21.1
  Downloaded home v0.5.9
  Downloaded rtoolbox v0.0.2
  Downloaded oxc_parser v0.110.0
  Downloaded pin-project-internal v1.1.8
  Downloaded strict-num v0.1.1
  Downloaded terminal_size v0.4.4
  Downloaded jsonrpsee-client-transport v0.26.0
  Downloaded tokio-tungstenite v0.29.0
  Downloaded serde-value v0.7.0
  Downloaded encoding_rs v0.8.35
  Downloaded inotify-sys v0.1.5
  Downloaded phf_macros v0.14.0
  Downloaded tiny-skia-path v0.12.0
  Downloaded fluent-uri v0.4.1
  Downloaded neli v0.6.4
  Downloaded oxc_allocator v0.110.0
  Downloaded oxc_index v4.1.0
  Downloaded unicode-id-start v1.3.1
  Downloaded clap_complete v4.5.42
  Downloaded owo-colors v4.1.0
  Downloaded value-bag-serde1 v1.12.0
  Downloaded slotmap v1.0.7
  Downloaded unicode-general-category v1.1.0
  Downloaded unicode-vo v0.1.0
  Downloaded salsa20 v0.10.2
  Downloaded serde_fmt v1.0.3
  Downloaded unicode-script v0.5.7
  Downloaded tauri-icns v0.1.0
  Downloaded tungstenite v0.29.0
  Downloaded value-bag-sval2 v1.12.0
  Downloaded futures-timer v3.0.3
  Downloaded httpdate v1.0.3
  Downloaded resvg v0.47.0
  Downloaded tokio-stream v0.1.17
  Downloaded unicode-segmentation v1.12.0
  Downloaded common-path v1.0.0
  Downloaded ct-codecs v1.1.7
  Downloaded signal-hook v0.3.18
  Downloaded std_prelude v0.2.12
  Downloaded strum v0.28.0
  Downloaded unicode-bidi v0.3.18
  Downloaded include_dir v0.7.4
  Downloaded kurbo v0.13.1
  Downloaded tiny-skia v0.12.0
  Downloaded unicode-ccc v0.4.0
  Downloaded usvg v0.47.0
  Downloaded soketto v0.8.1
  Downloaded tauri-bundler v2.10.0
  Downloaded value-bag v1.12.0
  Downloaded inotify v0.11.0
  Downloaded oxc_diagnostics v0.110.0
  Downloaded vlq v0.5.1
  Downloaded textwrap v0.16.2
  Downloaded toml_edit v0.25.4+spec-1.1.0
  Downloaded notify v8.2.0
  Downloaded pbkdf2 v0.12.2
  Downloaded sval_json v2.13.2
  Downloaded tracing-attributes v0.1.28
  Downloaded oxc-miette v2.7.1
  Downloaded uuid-simd v0.8.0
  Downloaded sval_fmt v2.13.2
  Downloaded svgtypes v0.16.1
  Downloaded neli-proc-macros v0.1.3
  Downloaded sval_nested v2.13.2
  Downloaded vsimd v0.8.0
  Downloaded unicode-properties v0.1.3
  Downloaded roxmltree v0.20.0
  Downloaded unicode-bidi-mirroring v0.4.0
  Downloaded freedesktop_entry_parser v2.0.1
  Downloaded jsonschema v0.49.9
  Downloaded polycool v0.4.0
  Downloaded magic_string v0.3.4
  Downloaded float-cmp v0.9.0
  Downloaded jsonrpsee-server v0.26.0
  Downloaded sval_dynamic v2.13.2
  Downloaded minisign v0.9.1
  Downloaded notify-types v2.0.0
  Downloaded seq-macro v0.3.6
  Downloaded include_dir_macros v0.7.4
  Downloaded oxc_estree v0.110.0
  Downloaded shared_thread v0.2.0
  Downloaded os_info v3.9.2
  Downloaded referencing v0.49.9
  Downloaded simplecss v0.2.2
  Downloaded phf_shared v0.14.0
  Downloaded nonmax v0.5.5
  Downloaded oxc_span v0.110.0
  Downloaded serde_path_to_error v0.1.16
  Downloaded jsonschema-value v0.49.9
  Downloaded oxc_syntax v0.110.0
  Downloaded pico-args v0.5.0
  Downloaded rpassword v7.5.4
  Downloaded scrypt v0.11.0
  Downloaded sublime_fuzzy v0.7.0
  Downloaded json5 v0.4.1
  Downloaded oxc-miette-derive v2.7.1
  Downloaded sigchld v0.2.4
  Downloaded sval v2.13.2
  Downloaded sval_ref v2.13.2
  Downloaded smawk v0.3.2
  Downloaded xmlwriter v0.1.0
  Downloaded oxc_ecmascript v0.110.0
  Downloaded imagesize v0.14.0
  Downloaded oxc_ast_macros v0.110.0
  Downloaded num-cmp v0.1.0
  Downloaded outref v0.5.1
  Downloaded oxc_regular_expression v0.110.0
  Downloaded ordered-float v2.10.1
  Downloaded nix v0.29.0
  Downloaded shared_child v1.1.1
  Downloaded jsonrpsee-core v0.26.0
  Downloaded route-recognizer v0.3.1
  Downloaded micromap v0.3.0
  Downloaded oxc_ast v0.110.0
  Downloaded pin-project v1.1.8
  Downloaded stfu8 v0.2.7
  Downloaded phf_generator v0.14.0
  Downloaded unicode-linebreak v0.1.5
  Downloaded sval_serde v2.13.2
  Downloaded local-ip-address v0.6.3
  Downloaded rustybuzz v0.20.1
  Downloaded phf v0.14.0
  Downloaded jsonrpsee-types v0.26.0
  Downloaded sval_buffer v2.13.2
  Downloaded ttf-parser v0.25.1
  Downloaded strum_macros v0.28.0
   Compiling libc v0.2.189
   Compiling zeroize v1.8.1
   Compiling value-bag v1.12.0
   Compiling serde_core v1.0.228
   Compiling generic-array v0.14.7
   Compiling log v0.4.29
   Compiling smallvec v1.15.2
   Compiling block-buffer v0.10.4
   Compiling allocator-api2 v0.2.21
   Compiling jobserver v0.1.32
   Compiling hashbrown v0.16.1
   Compiling cc v1.2.51
   Compiling indexmap v2.11.4
   Compiling getrandom v0.2.15
   Compiling rand_core v0.6.4
   Compiling crypto-common v0.1.6
   Compiling digest v0.10.7
   Compiling inout v0.1.3
   Compiling serde_json v1.0.145
   Compiling serde v1.0.228
   Compiling cipher v0.4.4
   Compiling yoke v0.8.1
   Compiling rustix v1.0.7
   Compiling futures-core v0.3.31
   Compiling futures-io v0.3.31
   Compiling zerovec v0.11.5
   Compiling displaydoc v0.2.5
   Compiling getrandom v0.3.4
   Compiling der v0.7.9
   Compiling hmac v0.12.1
   Compiling mio v1.0.3
   Compiling spki v0.7.3
   Compiling parking_lot_core v0.9.10
   Compiling futures-channel v0.3.31
   Compiling parking_lot v0.12.3
   Compiling pkcs8 v0.10.2
   Compiling tinystr v0.8.2
   Compiling num-bigint v0.4.6
   Compiling phf_macros v0.13.1
   Compiling socket2 v0.5.8
   Compiling aho-corasick v1.1.3
   Compiling tokio-macros v2.5.0
   Compiling icu_locale_core v2.1.1
   Compiling tokio v1.45.1
   Compiling regex-automata v0.4.18
   Compiling phf v0.13.1
   Compiling zerotrie v0.2.3
   Compiling potential_utf v0.1.4
   Compiling futures-task v0.3.31
   Compiling futures-util v0.3.31
   Compiling icu_collections v2.1.1
   Compiling icu_provider v2.1.1
   Compiling rand_chacha v0.3.1
   Compiling signature v2.2.0
   Compiling sha1 v0.10.6
   Compiling tracing-attributes v0.1.28
   Compiling rand v0.8.6
   Compiling tracing v0.1.41
   Compiling num-rational v0.4.2
   Compiling sha2 v0.10.8
   Compiling ff v0.13.0
   Compiling sec1 v0.7.3
   Compiling group v0.13.0
   Compiling icu_properties v2.1.2
   Compiling icu_normalizer v2.1.1
   Compiling tokio-util v0.7.13
   Compiling terminal_size v0.4.4
   Compiling rand_core v0.9.3
   Compiling hkdf v0.12.4
   Compiling darling_core v0.20.10
   Compiling crypto-bigint v0.5.5
   Compiling rustversion v1.0.19
   Compiling unicode-linebreak v0.1.5
   Compiling bytemuck v1.25.0
   Compiling owo-colors v4.1.0
   Compiling smawk v0.3.2
   Compiling idna_adapter v1.2.1
   Compiling textwrap v0.16.2
   Compiling rand_chacha v0.9.0
   Compiling elliptic-curve v0.13.8
   Compiling regex v1.11.1
   Compiling rfc6979 v0.4.0
   Compiling ring v0.17.14
   Compiling idna v1.1.0
   Compiling pest v2.7.15
   Compiling darling_macro v0.20.10
   Compiling rand v0.9.4
   Compiling darling v0.20.10
   Compiling string_cache_codegen v0.6.1
   Compiling rustls-pki-types v1.13.2
   Compiling oxc-miette-derive v2.7.1
   Compiling sync_wrapper v1.0.2
   Compiling unicode-segmentation v1.12.0
   Compiling syn v1.0.109
   Compiling web_atoms v0.2.3
   Compiling oxc-miette v2.7.1
   Compiling castaway v0.2.3
   Compiling pest_meta v2.7.15
   Compiling derive_builder_core v0.20.2
   Compiling ecdsa v0.16.9
   Compiling http-body-util v0.1.2
   Compiling zstd-sys v2.0.13+zstd.1.5.6
   Compiling ctr v0.9.2
   Compiling aead v0.5.2
   Compiling universal-hash v0.5.1
   Compiling oxc_data_structures v0.110.0
   Compiling oxc_ast_macros v0.110.0
   Compiling oxc_allocator v0.110.0
   Compiling toml_edit v0.22.24
   Compiling polyval v0.6.2
   Compiling compact_str v0.9.1
   Compiling derive_builder_macro v0.20.2
   Compiling pest_generator v2.7.15
   Compiling string_cache v0.9.0
   Compiling tower v0.5.2
   Compiling url v2.5.8
   Compiling primeorder v0.13.6
   Compiling darling_core v0.23.0
   Compiling aes v0.8.4
   Compiling as-slice v0.2.1
   Compiling equator-macro v0.4.2
   Compiling pin-project-internal v1.1.8
   Compiling signal-hook v0.3.18
   Compiling cow-utils v0.1.3
   Compiling dragonbox_ecma v0.1.12
   Compiling oxc_estree v0.110.0
   Compiling uuid v1.11.0
   Compiling h2 v0.4.17
   Compiling oxc_span v0.110.0
   Compiling rustls v0.23.45
   Compiling darling_macro v0.23.0
   Compiling curve25519-dalek v4.1.3
   Compiling pin-project v1.1.8
   Compiling equator v0.4.2
   Compiling aligned v0.4.3
   Compiling num v0.4.3
   Compiling pest_derive v2.7.15
   Compiling rustls-webpki v0.103.15
   Compiling proc-macro-crate v3.2.0
   Compiling derive_builder v0.20.2
   Compiling num-bigint-dig v0.8.6
   Compiling ghash v0.5.1
   Compiling tokio-stream v0.1.17
   Compiling toml_parser v1.0.9+spec-1.1.0
   Compiling futures v0.3.31
   Compiling lzma-sys v0.1.20
   Compiling bzip2-sys v0.1.11+1.0.8
   Compiling jsonrpsee-types v0.26.0
   Compiling serde_spanned v1.0.4
   Compiling toml_datetime v1.0.0+spec-1.1.0
   Compiling signal-hook-registry v1.4.2
   Compiling os_pipe v1.2.3
   Compiling core_maths v0.1.0
   Compiling dbl v0.3.2
   Compiling profiling-procmacros v1.0.16
   Compiling cssparser-macros v0.7.0
   Compiling async-trait v0.1.88
   Compiling num-derive v0.4.2
   Compiling derive_more-impl v2.0.1
   Compiling arg_enum_proc_macro v0.3.4
   Compiling slotmap v1.0.7
   Compiling ahash v0.8.11
   Compiling float-cmp v0.9.0
   Compiling nonmax v0.5.5
   Compiling futures-timer v3.0.3
   Compiling unicode-id-start v1.3.1
   Compiling httpdate v1.0.3
   Compiling ref-cast v1.0.23
   Compiling toml_writer v1.0.6+spec-1.1.0
   Compiling av-scenechange v0.14.1
   Compiling hyper v1.8.1
   Compiling oxc_index v4.1.0
   Compiling jsonrpsee-core v0.26.0
   Compiling strict-num v0.1.1
   Compiling derive_more v2.0.1
   Compiling rustls-native-certs v0.8.3
   Compiling derive_more-impl v1.0.0
   Compiling cssparser v0.37.0
   Compiling profiling v1.0.16
   Compiling cmac v0.7.2
   Compiling ttf-parser v0.25.1
   Compiling soketto v0.8.1
   Compiling zstd-safe v7.2.1
   Compiling markup5ever v0.39.0
   Compiling aes-gcm v0.10.3
   Compiling num_enum_derive v0.7.3
   Compiling aligned-vec v0.6.4
   Compiling darling v0.23.0
   Compiling oxc_diagnostics v0.110.0
   Compiling av1-grain v0.2.3
   Compiling rgb v0.8.53
   Compiling ed25519 v2.2.3
   Compiling polycool v0.4.0
   Compiling pkcs1 v0.7.5
   Compiling password-hash v0.5.0
   Compiling blake2 v0.10.6
   Compiling serde_derive_internals v0.29.1
   Compiling ref-cast-impl v1.0.23
   Compiling roxmltree v0.20.0
   Compiling arrayref v0.3.9
   Compiling tinyvec_macros v0.1.1
   Compiling cfg_aliases v0.2.1
   Compiling sha3 v0.10.8
   Compiling schemars_derive v0.8.22
   Compiling nix v0.29.0
   Compiling fontconfig-parser v0.5.7
   Compiling cfb v0.14.0
   Compiling rustls-platform-verifier v0.6.2
   Compiling tinyvec v1.8.1
   Compiling tiny-skia-path v0.12.0
   Compiling rav1e v0.8.1
   Compiling argon2 v0.5.3
   Compiling selectors v0.38.0
   Compiling rsa v0.9.10
   Compiling kurbo v0.13.1
   Compiling ed25519-dalek v2.1.1
   Compiling oxc_regular_expression v0.110.0
   Compiling oxc_syntax v0.110.0
   Compiling num_enum v0.7.3
   Compiling erased-serde v0.4.9
   Compiling serde_with_macros v3.21.0
   Compiling html5ever v0.39.0
   Compiling sigchld v0.2.4
   Compiling eax v0.5.0
   Compiling derive_more v1.0.0
   Compiling hyper-util v0.1.19
   Compiling toml v1.0.6+spec-1.1.0
   Compiling dsa v0.6.3
   Compiling x25519-dalek v2.0.1
   Compiling aes-kw v0.2.1
   Compiling p384 v0.13.0
   Compiling p521 v0.13.3
   Compiling p256 v0.13.2
   Compiling ocb3 v0.1.0
   Compiling k256 v0.13.4
   Compiling webpki-roots v1.0.5
   Compiling sha1-checked v0.10.0
   Compiling ureq-proto v0.5.3
   Compiling jsonptr v0.7.1
   Compiling cfb-mode v0.8.2
   Compiling twofish v0.7.1
   Compiling idea v0.5.1
   Compiling blowfish v0.9.1
   Compiling cast5 v0.11.1
   Compiling des v0.8.1
   Compiling camellia v0.1.0
   Compiling md-5 v0.10.6
   Compiling ripemd v0.1.3
   Compiling socks v0.3.4
   Compiling inotify-sys v0.1.5
   Compiling memmap2 v0.9.11
   Compiling phf_shared v0.14.0
   Compiling block-padding v0.3.3
   Compiling serialize-to-javascript-impl v0.1.2
   Compiling unicode-script v0.5.7
   Compiling unicode-general-category v1.1.0
   Compiling unicode-ccc v0.4.0
   Compiling borrow-or-share v0.2.4
   Compiling unicode-properties v0.1.3
   Compiling either v1.13.0
   Compiling unicode-bidi-mirroring v0.4.0
   Compiling clap_builder v4.5.26
   Compiling pgp v0.14.2
   Compiling neli-proc-macros v0.1.3
   Compiling rustybuzz v0.20.1
   Compiling fluent-uri v0.4.1
   Compiling exr v1.74.0
   Compiling dirs-sys v0.5.0
   Compiling zopfli v0.8.1
   Compiling schemars v0.8.22
   Compiling serialize-to-javascript v0.1.2
   Compiling tempfile v3.23.0
   Compiling which v8.0.0
   Compiling phf_generator v0.14.0
   Compiling plist v1.10.0
   Compiling fontdb v0.23.0
   Compiling ureq v3.1.4
   Compiling inotify v0.11.0
   Compiling json-patch v4.2.0
   Compiling ravif v0.13.0
   Compiling dom_query v0.28.0
   Compiling serde_with v3.21.0
   Compiling enum-primitive-derive v0.3.0
   Compiling shared_child v1.1.1
   Compiling xz2 v0.1.7
   Compiling zstd v0.13.2
   Compiling bzip2 v0.4.4
   Compiling serde-untagged v0.1.6
   Compiling oxc_ast v0.110.0
   Compiling svgtypes v0.16.1
   Compiling handlebars v6.3.0
   Compiling infer v0.22.0
   Compiling getrandom v0.4.3
   Compiling tungstenite v0.29.0
   Compiling json5 v0.4.1
   Compiling fraction v0.15.3
   Compiling enum-display-derive v0.1.1
   Compiling hashbrown v0.17.1
   Compiling globset v0.4.20
   Compiling urlpattern v0.6.0
   Compiling strum_macros v0.28.0
   Compiling clap_derive v4.5.24
   Compiling qoi v0.4.1
   Compiling xattr v1.6.1
   Compiling pbkdf2 v0.12.2
   Compiling salsa20 v0.10.2
   Compiling rtoolbox v0.0.2
   Compiling filetime v0.2.25
   Compiling simplecss v0.2.2
   Compiling nom v8.0.0
   Compiling roxmltree v0.21.1
   Compiling encoding_rs v0.8.35
   Compiling xmlwriter v0.1.0
   Compiling cargo-mobile2 v0.22.5
   Compiling route-recognizer v0.3.1
   Compiling outref v0.5.1
   Compiling num-cmp v0.1.0
   Compiling shared_thread v0.2.0
   Compiling vsimd v0.8.0
   Compiling pico-args v0.5.0
   Compiling imagesize v0.14.0
   Compiling notify-types v2.0.0
   Compiling micromap v0.3.0
   Compiling unicode-vo v0.1.0
   Compiling data-url v0.3.1
   Compiling bytecount v0.6.8
   Compiling unicode-bidi v0.3.18
   Compiling std_prelude v0.2.12
   Compiling stfu8 v0.2.7
   Compiling tauri-utils v2.10.0
   Compiling path_abs v0.5.1
   Compiling usvg v0.47.0
   Compiling freedesktop_entry_parser v2.0.1
   Compiling rpm v0.16.0
   Compiling axum-core v0.5.6
   Compiling jsonschema-value v0.49.9
   Compiling zip v8.0.0
   Compiling referencing v0.49.9
   Compiling notify v8.2.0
   Compiling uuid-simd v0.8.0
   Compiling java-properties v2.0.0
   Compiling png v0.17.16
   Compiling duct v1.1.1
   Compiling jsonrpsee-server v0.26.0
   Compiling clap v4.5.26
   Compiling strum v0.28.0
   Compiling tar v0.4.46
   Compiling rpassword v7.5.4
   Compiling scrypt v0.11.0
   Compiling image v0.25.10
   Compiling ignore v0.4.33
   Compiling oxc_ecmascript v0.110.0
   Compiling tokio-tungstenite v0.29.0
   Compiling phf_macros v0.14.0
   Compiling dirs v7.0.0
   Compiling neli v0.6.4
   Compiling tiny-skia v0.12.0
   Compiling jsonrpsee-client-transport v0.26.0
   Compiling fancy-regex v0.19.0
   Compiling env_filter v0.1.3
   Compiling serde_urlencoded v0.7.1
   Compiling console v0.16.4
   Compiling colored v2.2.0
   Compiling jsonschema-regex v0.49.9
   Compiling serde_path_to_error v0.1.16
   Compiling email_address v0.2.9
   Compiling ordered-float v2.10.1
   Compiling include_dir_macros v0.7.4
   Compiling english-numbers v0.3.3
   Compiling ct-codecs v1.1.7
   Compiling base64 v0.13.1
   Compiling matchit v0.8.4
   Compiling tauri-cli v2.12.0 (/home/runner/work/tauri/tauri/target/package/tauri-cli-2.12.0)
   Compiling home v0.5.9
   Compiling deunicode v1.6.0
   Compiling vlq v0.5.1
   Compiling file-id v0.2.3
   Compiling seq-macro v0.3.6
   Compiling notify-debouncer-full v0.7.0
   Compiling oxc_parser v0.110.0
   Compiling env_logger v0.11.6
   Compiling magic_string v0.3.4
   Compiling tauri-bundler v2.10.0
   Compiling axum v0.8.9
   Compiling dialoguer v0.12.0
   Compiling minisign v0.9.1
   Compiling include_dir v0.7.4
   Compiling phf v0.14.0
   Compiling serde-value v0.7.0
   Compiling jsonschema v0.49.9
   Compiling jsonrpsee-ws-client v0.26.0
   Compiling rand v0.10.2
   Compiling local-ip-address v0.6.3
   Compiling resvg v0.47.0
   Compiling ctrlc v3.4.5
   Compiling jsonrpsee v0.26.0
   Compiling clap_complete v4.5.42
   Compiling tauri-icns v0.1.0
   Compiling toml_edit v0.25.4+spec-1.1.0
   Compiling itertools v0.15.0
   Compiling os_info v3.9.2
   Compiling common-path v1.0.0
   Compiling elf v0.8.0
   Compiling css-color v0.2.8
   Compiling sublime_fuzzy v0.7.0
   Compiling colored v3.1.1
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 49s
   Uploading tauri-cli v2.12.0 (/home/runner/work/tauri/tauri/crates/tauri-cli)
    Uploaded tauri-cli v2.12.0 to registry `crates-io`
note: waiting for tauri-cli v2.12.0 to be available at registry `crates-io`
help: you may press ctrl-c to skip waiting; the crate should be available shortly
   Published tauri-cli v2.12.0 at registry `crates-io`

Don't miss a new tauri release

NewReleases is sending notifications on new releases.