Adding tauri_winres library as a dependency

Run this command in a terminal, in your project's directory:

cargo add --build tauri-winres

to add tauri_winres as a build-time dependency. To add it as a run-time dependency, run:

cargo add tauri-winres

To add it manually, edit your project's Cargo.toml file and add to the [build-dependencies] or [dependencies] section:

tauri-winres = "0.3.6"

The tauri_winres library will be automatically available globally. Read the tauri_winres library documentation.

Back to the crate overview.