File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed
Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " tauri " : patch
3+ ---
4+
5+ ** Breaking change:** Renamed the ` command ` Cargo feature to ` process-command-api ` .
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ http-api = [ "attohttpc" ]
129129shell-open-api = [ " open" , " regex" , " tauri-macros/shell-scope" ]
130130fs-extract-api = [ " zip" ]
131131reqwest-client = [ " reqwest" , " bytes" ]
132- command = [ " shared_child" , " os_pipe" , " memchr" ]
132+ process- command-api = [ " shared_child" , " os_pipe" , " memchr" ]
133133dialog = [ " rfd" ]
134134notification = [ " notify-rust" ]
135135cli = [ " clap" ]
@@ -195,8 +195,8 @@ process-relaunch-dangerous-allow-symlink-macos = [ "tauri-utils/process-relaunch
195195protocol-all = [ " protocol-asset" ]
196196protocol-asset = [ ]
197197shell-all = [ " shell-execute" , " shell-sidecar" , " shell-open" ]
198- shell-execute = [ " command" , " regex" , " tauri-macros/shell-scope" ]
199- shell-sidecar = [ " command" , " regex" , " tauri-macros/shell-scope" ]
198+ shell-execute = [ " process- command-api " , " regex" , " tauri-macros/shell-scope" ]
199+ shell-sidecar = [ " process- command-api " , " regex" , " tauri-macros/shell-scope" ]
200200shell-open = [ " shell-open-api" ]
201201window-all = [
202202 " window-create" ,
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ use crate::Env;
88
99use std:: path:: PathBuf ;
1010
11- #[ cfg( feature = "command" ) ]
12- #[ cfg_attr( doc_cfg, doc( cfg( feature = "command" ) ) ) ]
11+ #[ cfg( feature = "process- command-api " ) ]
12+ #[ cfg_attr( doc_cfg, doc( cfg( feature = "process- command-api " ) ) ) ]
1313mod command;
14- #[ cfg( feature = "command" ) ]
15- #[ cfg_attr( doc_cfg, doc( cfg( feature = "command" ) ) ) ]
14+ #[ cfg( feature = "process- command-api " ) ]
15+ #[ cfg_attr( doc_cfg, doc( cfg( feature = "process- command-api " ) ) ) ]
1616pub use command:: * ;
1717
1818/// Finds the current running binary's path.
You can’t perform that action at this time.
0 commit comments