The latest built app is available at the website:

-
See Tauri's Docs to prepare for tauri app development.
-
Clone the repo and run:
npm install
- To build and run the app:
npm run tauri dev
CI=true npm run tauri build
npm run tauri build -- --debug
Tauri v2 build command for macOS app bundles
npm run tauri build -- --bundles app
The error you're encountering indicates that Tauri is trying to use Rust's Cargo build system, but it cannot find the necessary Rust setup to compile the project. This is likely because either Rust is not installed, or the environment isn’t configured properly for Tauri's Rust dependencies.
Tauri uses Rust, so ensure you have the Rust toolchain installed. You can install Rust using rustup
:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Since you are building for universal-apple-darwin, you will need to install the necessary Rust targets. Use:
rustup target add aarch64-apple-darwin x86_64-apple-darwin
npm run tauri build -- --debug
error[E0463]: can't find crate for `core`
|
= note: the `aarch64-apple-darwin` target may not be installed
= help: consider downloading the target with `rustup target add aarch64-apple-darwin`
For more information about this error, try `rustc --explain E0463`.
error: could not compile `cfg-if` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
failed to build aarch64-apple-darwin binary: failed to build app
Error [tauri_cli_node] failed to build aarch64-apple-darwin binary: failed to build app
In this case, update rustup to the latest version:
rustup update
https://discord.com/channels/616186924390023171/1096449326672248903/1096449326672248903