fixed instant crash

This commit is contained in:
pandadev 2024-07-05 13:32:50 +02:00
parent 4954e374fe
commit db9cbfbfc4
No known key found for this signature in database
GPG key ID: C39629DACB8E762F
5 changed files with 36 additions and 6 deletions

25
src-tauri/Cargo.lock generated
View file

@ -1834,8 +1834,13 @@ dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"exr",
"gif",
"jpeg-decoder",
"num-traits",
"png",
"qoi",
"tiff",
]
[[package]]
@ -2014,6 +2019,9 @@ name = "jpeg-decoder"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
dependencies = [
"rayon",
]
[[package]]
name = "js-sys"
@ -3147,6 +3155,7 @@ dependencies = [
"tauri",
"tauri-build",
"tauri-plugin-autostart",
"tauri-plugin-clipboard-manager",
"tauri-plugin-global-shortcut",
"tauri-plugin-os",
"tauri-plugin-sql",
@ -4490,6 +4499,22 @@ dependencies = [
"thiserror",
]
[[package]]
name = "tauri-plugin-clipboard-manager"
version = "2.1.0-beta.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d111ff331a3ef150a02eab7d7e8350bb7f92495ee272d6f22179b2e03feb66"
dependencies = [
"arboard",
"image 0.24.9",
"log",
"serde",
"serde_json",
"tauri",
"tauri-plugin",
"thiserror",
]
[[package]]
name = "tauri-plugin-global-shortcut"
version = "2.0.0-beta.7"