File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11use std:: path:: PathBuf ;
22
33pub struct Cli2 < ' a , R : tauri:: Runtime , M : tauri:: Manager < R > > {
4- manager : & ' a M ,
4+ _manager : & ' a M ,
55 _runtime : std:: marker:: PhantomData < fn ( ) -> R > ,
66}
77
@@ -165,7 +165,7 @@ impl<R: tauri::Runtime, T: tauri::Manager<R>> Cli2PluginExt<R> for T {
165165 Self : Sized ,
166166 {
167167 Cli2 {
168- manager : self ,
168+ _manager : self ,
169169 _runtime : std:: marker:: PhantomData ,
170170 }
171171 }
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ fn is_symlink_launch() -> bool {
8888}
8989
9090#[ cfg( not( debug_assertions) ) ]
91- fn resolve_sidecar_for_symlink_launch ( name : & str ) -> Result < PathBuf , crate :: Error > {
91+ fn resolve_sidecar_for_symlink_launch ( name : & str ) -> Result < std :: path :: PathBuf , crate :: Error > {
9292 let exe_path = std:: env:: current_exe ( ) . map_err ( |e| {
9393 crate :: Error :: SidecarCreationFailed ( format ! ( "failed to get current exe: {}" , e) )
9494 } ) ?;
You can’t perform that action at this time.
0 commit comments