diff --git a/Cargo.lock b/Cargo.lock index bd07fe31..5dee643e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4247,7 +4247,7 @@ dependencies = [ [[package]] name = "tauri" version = "2.0.0-alpha.6" -source = "git+http://github.com/tauri-apps/tauri?branch=next#f0570d9feee05792cc720d26ef32da5eaed7f797" +source = "git+http://github.com/tauri-apps/tauri?branch=next#f436cf860963fcee0dd32aa06f22484741f5c530" dependencies = [ "anyhow", "bytes 1.4.0", @@ -4298,7 +4298,7 @@ dependencies = [ [[package]] name = "tauri-build" version = "2.0.0-alpha.3" -source = "git+http://github.com/tauri-apps/tauri?branch=next#f0570d9feee05792cc720d26ef32da5eaed7f797" +source = "git+http://github.com/tauri-apps/tauri?branch=next#f436cf860963fcee0dd32aa06f22484741f5c530" dependencies = [ "anyhow", "cargo_toml", @@ -4317,7 +4317,7 @@ dependencies = [ [[package]] name = "tauri-codegen" version = "2.0.0-alpha.3" -source = "git+http://github.com/tauri-apps/tauri?branch=next#f0570d9feee05792cc720d26ef32da5eaed7f797" +source = "git+http://github.com/tauri-apps/tauri?branch=next#f436cf860963fcee0dd32aa06f22484741f5c530" dependencies = [ "base64 0.21.0", "brotli", @@ -4342,7 +4342,7 @@ dependencies = [ [[package]] name = "tauri-macros" version = "2.0.0-alpha.3" -source = "git+http://github.com/tauri-apps/tauri?branch=next#f0570d9feee05792cc720d26ef32da5eaed7f797" +source = "git+http://github.com/tauri-apps/tauri?branch=next#f436cf860963fcee0dd32aa06f22484741f5c530" dependencies = [ "heck", "proc-macro2", @@ -4563,7 +4563,7 @@ dependencies = [ [[package]] name = "tauri-runtime" version = "0.13.0-alpha.3" -source = "git+http://github.com/tauri-apps/tauri?branch=next#f0570d9feee05792cc720d26ef32da5eaed7f797" +source = "git+http://github.com/tauri-apps/tauri?branch=next#f436cf860963fcee0dd32aa06f22484741f5c530" dependencies = [ "gtk", "http", @@ -4584,7 +4584,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" version = "0.13.0-alpha.3" -source = "git+http://github.com/tauri-apps/tauri?branch=next#f0570d9feee05792cc720d26ef32da5eaed7f797" +source = "git+http://github.com/tauri-apps/tauri?branch=next#f436cf860963fcee0dd32aa06f22484741f5c530" dependencies = [ "cocoa", "gtk", @@ -4604,7 +4604,7 @@ dependencies = [ [[package]] name = "tauri-utils" version = "2.0.0-alpha.3" -source = "git+http://github.com/tauri-apps/tauri?branch=next#f0570d9feee05792cc720d26ef32da5eaed7f797" +source = "git+http://github.com/tauri-apps/tauri?branch=next#f436cf860963fcee0dd32aa06f22484741f5c530" dependencies = [ "brotli", "ctor", diff --git a/plugins/log/src/lib.rs b/plugins/log/src/lib.rs index 746b5fc1..6af66c40 100644 --- a/plugins/log/src/lib.rs +++ b/plugins/log/src/lib.rs @@ -16,7 +16,6 @@ use std::{ path::{Path, PathBuf}, }; use tauri::{ - path::PathExt, plugin::{self, TauriPlugin}, Manager, Runtime, }; diff --git a/plugins/persisted-scope/src/lib.rs b/plugins/persisted-scope/src/lib.rs index 0c97e558..c7fbc433 100644 --- a/plugins/persisted-scope/src/lib.rs +++ b/plugins/persisted-scope/src/lib.rs @@ -4,7 +4,6 @@ use serde::{Deserialize, Serialize}; use tauri::{ - path::PathExt, plugin::{Builder, TauriPlugin}, FsScopeEvent, Manager, Runtime, }; diff --git a/plugins/sql/src/plugin.rs b/plugins/sql/src/plugin.rs index 4fd604d7..de501ea3 100644 --- a/plugins/sql/src/plugin.rs +++ b/plugins/sql/src/plugin.rs @@ -14,7 +14,6 @@ use sqlx::{ }; use tauri::{ command, - path::PathExt, plugin::{Builder as PluginBuilder, TauriPlugin}, AppHandle, Manager, RunEvent, Runtime, State, }; diff --git a/plugins/store/src/store.rs b/plugins/store/src/store.rs index cfd92719..c9746b45 100644 --- a/plugins/store/src/store.rs +++ b/plugins/store/src/store.rs @@ -10,7 +10,7 @@ use std::{ io::Write, path::PathBuf, }; -use tauri::{path::PathExt, AppHandle, Runtime}; +use tauri::{AppHandle, Manager, Runtime}; type SerializeFn = fn(&HashMap) -> Result, Box>; type DeserializeFn = fn(&[u8]) -> Result, Box>; diff --git a/plugins/window-state/src/lib.rs b/plugins/window-state/src/lib.rs index 0bf739eb..b7f34cb1 100644 --- a/plugins/window-state/src/lib.rs +++ b/plugins/window-state/src/lib.rs @@ -5,7 +5,6 @@ use bitflags::bitflags; use serde::{Deserialize, Serialize}; use tauri::{ - path::PathExt, plugin::{Builder as PluginBuilder, TauriPlugin}, LogicalSize, Manager, Monitor, PhysicalPosition, PhysicalSize, RunEvent, Runtime, Window, WindowEvent,