File tree Expand file tree Collapse file tree
packages/cli/fragments/base/src-tauri Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ " create-tauri-app " : " patch"
3+ " create-tauri-app-js " : " patch"
4+ ---
5+
6+ Add ` shell-open ` cargo feature to match the allowlist in the generated project.
Original file line number Diff line number Diff line change @@ -11,17 +11,17 @@ rust-version = "1.57"
1111# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212
1313[build-dependencies ]
14- tauri-build = {version = " 1.2" , features = [] }
14+ tauri-build = { version = " 1.2" , features = [] }
1515
1616[dependencies ]
1717serde_json = " 1.0"
1818serde = { version = " 1.0" , features = [" derive" ] }
19- tauri = {version = " 1.2" , features = [] }
19+ tauri = { version = " 1.2" , features = [" shell-open " ] }
2020
2121[features ]
2222# by default Tauri runs in production mode
2323# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
24- default = [ " custom-protocol" ]
24+ default = [" custom-protocol" ]
2525# this feature is used used for production builds where `devPath` points to the filesystem
2626# DO NOT remove this
27- custom-protocol = [ " tauri/custom-protocol" ]
27+ custom-protocol = [" tauri/custom-protocol" ]
You can’t perform that action at this time.
0 commit comments