chore(rust/gui-client): remove unused version of tauri-winrt-notification (#6586)

We use a newer version directly, we don't need the one Tauri wraps.

Refs #6247
This commit is contained in:
Reactor Scram
2024-09-03 18:08:15 -05:00
committed by GitHub
parent 7178878184
commit 32bf1898d1
2 changed files with 4 additions and 3 deletions

4
rust/Cargo.lock generated
View File

@@ -3804,9 +3804,9 @@ dependencies = [
[[package]]
name = "notify-rust"
version = "4.11.0"
version = "4.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5312f837191c317644f313f7b2b39f9cb1496570c74f7c17152dd3961219551f"
checksum = "26a1d03b6305ecefdd9c6c60150179bb8d9f0cd4e64bbcad1e41419e7bf5e414"
dependencies = [
"log",
"mac-notification-sys",

View File

@@ -38,7 +38,6 @@ semver = { version = "1.0.22", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
subtle = "2.5.0"
tauri = { version = "1.7.1", features = [ "dialog", "icon-png", "notification", "shell-open-api", "system-tray" ] }
tauri-runtime = "0.14.2"
tauri-utils = "1.6.0"
thiserror = { version = "1.0", default-features = false }
@@ -64,10 +63,12 @@ features = [
[target.'cfg(target_os = "linux")'.dependencies]
dirs = "5.0.1"
nix = { version = "0.29.0", features = ["user"] }
tauri = { version = "1.7.1", features = [ "dialog", "icon-png", "notification", "shell-open-api", "system-tray" ] }
[target.'cfg(target_os = "macos")'.dependencies]
[target.'cfg(target_os = "windows")'.dependencies]
tauri = { version = "1.7.1", features = [ "dialog", "icon-png", "shell-open-api", "system-tray" ] }
tauri-winrt-notification = "0.5.0"
winreg = "0.52.0"
wintun = "0.4.0"