Updating Dependencies
このコンテンツはまだ日本語訳がありません。
Update npm Packages
If you are using the tauri
package:
npm install @tauri-apps/cli@latest @tauri-apps/api@latest
yarn up @tauri-apps/cli @tauri-apps/api
pnpm update @tauri-apps/cli @tauri-apps/api --latest
You can also detect what the latest version of Tauri is on the command line, using:
npm outdated @tauri-apps/cli
yarn outdated @tauri-apps/cli
pnpm outdated @tauri-apps/cli
Update Cargo Packages
You can check for outdated packages with cargo outdated
or on the crates.io pages: tauri / tauri-build.
Go to src-tauri/Cargo.toml
and change tauri
and tauri-build
to
[build-dependencies]tauri-build = "%version%"
[dependencies]tauri = { version = "%version%" }
where %version%
is the corresponding version number from above.
Then do the following:
cd src-tauricargo update
Alternatively, you can run the cargo upgrade
command provided by cargo-edit which does all of this automatically.
© 2025 Tauri Contributors. CC-BY / MIT