fix: enforce only one instance of the app
All checks were successful
FanslySync Build & Test / FanslySync Test Runner (push) Successful in 11m51s

This commit is contained in:
Sticks
2025-04-23 20:20:39 -04:00
parent f4565ab580
commit d4d9d2ebce
5 changed files with 28 additions and 2 deletions

16
src-tauri/Cargo.lock generated
View File

@ -108,6 +108,7 @@ dependencies = [
"tauri-plugin-log",
"tauri-plugin-notification",
"tauri-plugin-os",
"tauri-plugin-single-instance",
"tauri-plugin-updater",
"thiserror 2.0.12",
"tokio",
@ -4846,6 +4847,21 @@ dependencies = [
"thiserror 2.0.12",
]
[[package]]
name = "tauri-plugin-single-instance"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1320af4d866a7fb5f5721d299d14d0dd9e4e6bc0359ff3e263124a2bf6814efa"
dependencies = [
"serde",
"serde_json",
"tauri",
"thiserror 2.0.12",
"tracing",
"windows-sys 0.59.0",
"zbus",
]
[[package]]
name = "tauri-plugin-updater"
version = "2.7.0"