From 914abb28d91f8061acf0eb0b213ac1b5318efe45 Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Sat, 28 Feb 2026 10:05:25 +0300 Subject: [PATCH] README: add cargo install tauri-cli step --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1f4b3bd18..bd75b8c3b 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,14 @@ bun run dev | `bun run test:unit` | Unit tests | | `bun run tauri dev` | Desktop app (requires Rust) | -## Desktop Builds +## Desktop App -Requires [Rust](https://rustup.rs/) and platform-specific prerequisites ([Tauri v2 guide](https://v2.tauri.app/start/prerequisites/)). +Requires [Rust](https://rustup.rs/), the Tauri CLI, and platform-specific prerequisites ([Tauri v2 guide](https://v2.tauri.app/start/prerequisites/)). ```sh -bun run tauri build # Current platform +cargo install tauri-cli --version "^2" +bun run tauri dev # Dev mode with hot reload +bun run tauri build # Production build bun run tauri build --target universal-apple-darwin # macOS universal ```