remove plugin
This commit is contained in:
13
src-tauri/Cargo.lock
generated
13
src-tauri/Cargo.lock
generated
@@ -2522,7 +2522,6 @@ dependencies = [
|
||||
"sha2",
|
||||
"tauri",
|
||||
"tauri-build",
|
||||
"tauri-plugin-store",
|
||||
"tauri-plugin-window-state",
|
||||
]
|
||||
|
||||
@@ -2729,18 +2728,6 @@ dependencies = [
|
||||
"tauri-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tauri-plugin-store"
|
||||
version = "0.0.0"
|
||||
source = "git+https://github.com/tauri-apps/tauri-plugin-store?branch=dev#9bd993aa67766596638bbfd91e79a1bf8f632014"
|
||||
dependencies = [
|
||||
"log",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"tauri",
|
||||
"thiserror",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tauri-plugin-window-state"
|
||||
version = "0.1.0"
|
||||
|
@@ -7,7 +7,7 @@ license = "MIT"
|
||||
repository = "https://github.com/Fractal-Tess/Svelte-Tauri"
|
||||
default-run = "svelte-tauri"
|
||||
edition = "2021"
|
||||
rust-version = "1.57"
|
||||
rust-version = "1.65"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@@ -18,7 +18,6 @@ tauri-build = { version = "1.2.1", features = [] }
|
||||
serde_json = "1.0"
|
||||
sha2 = "0.10.6"
|
||||
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/tauri-plugin-window-state", branch = "dev" }
|
||||
tauri-plugin-store = { git = "https://github.com/tauri-apps/tauri-plugin-store", branch="dev" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
tauri = { version = "1.2.2", features = ["api-all", "devtools"] }
|
||||
|
||||
|
@@ -8,7 +8,6 @@ use tauri::RunEvent;
|
||||
|
||||
fn main() {
|
||||
let app = tauri::Builder::default()
|
||||
.plugin(tauri_plugin_store::PluginBuilder::default().build())
|
||||
.plugin(tauri_plugin_window_state::Builder::default().build())
|
||||
.invoke_handler(tauri::generate_handler![called_from_js, hash256sum])
|
||||
.build(tauri::generate_context!())
|
||||
|
Reference in New Issue
Block a user