git tray-icon

This commit is contained in:
rustdesk 2023-06-05 22:25:03 +08:00
parent 3e24186542
commit e6d562be19
2 changed files with 10 additions and 11 deletions

15
Cargo.lock generated
View File

@ -3565,9 +3565,9 @@ dependencies = [
[[package]] [[package]]
name = "muda" name = "muda"
version = "0.4.5" version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a3ef954ff22d2646c21ae64171b76d6e1202d214c6d3867305489d04a06db6a" checksum = "c3c820db003e601413e835a33b10cf51452b6415ef34ff1d862401826431c675"
dependencies = [ dependencies = [
"cocoa", "cocoa",
"crossbeam-channel", "crossbeam-channel",
@ -3580,7 +3580,7 @@ dependencies = [
"once_cell", "once_cell",
"png", "png",
"thiserror", "thiserror",
"windows-sys 0.45.0", "windows-sys 0.48.0",
] ]
[[package]] [[package]]
@ -5046,7 +5046,7 @@ dependencies = [
"whoami", "whoami",
"winapi 0.3.9", "winapi 0.3.9",
"windows-service", "windows-service",
"winreg 0.10.1", "winreg 0.11.0",
"winres", "winres",
"wol-rs", "wol-rs",
"zip", "zip",
@ -6099,9 +6099,8 @@ dependencies = [
[[package]] [[package]]
name = "tray-icon" name = "tray-icon"
version = "0.4.4" version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/tauri-apps/tray-icon#16330c278904c63a8f9ba98978604fc8e76d825d"
checksum = "405009de7f59e6dafff7afc04e1bff017d5e1531359bd05a1c52375b6f8b3716"
dependencies = [ dependencies = [
"cocoa", "cocoa",
"core-graphics", "core-graphics",
@ -6113,7 +6112,7 @@ dependencies = [
"once_cell", "once_cell",
"png", "png",
"thiserror", "thiserror",
"windows-sys 0.45.0", "windows-sys 0.48.0",
] ]
[[package]] [[package]]

View File

@ -73,7 +73,7 @@ chrono = "0.4"
cidr-utils = "0.5" cidr-utils = "0.5"
libloading = "0.8" libloading = "0.8"
fon = "0.6" fon = "0.6"
zip = "0.6.5" zip = "0.6"
[target.'cfg(not(any(target_os = "android", target_os = "linux")))'.dependencies] [target.'cfg(not(any(target_os = "android", target_os = "linux")))'.dependencies]
cpal = "0.15" cpal = "0.15"
@ -92,7 +92,7 @@ system_shutdown = "4.0"
[target.'cfg(target_os = "windows")'.dependencies] [target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winuser", "wincrypt", "shellscalingapi"] } winapi = { version = "0.3", features = ["winuser", "wincrypt", "shellscalingapi"] }
winreg = "0.10" winreg = "0.11"
windows-service = "0.6" windows-service = "0.6"
virtual_display = { path = "libs/virtual_display", optional = true } virtual_display = { path = "libs/virtual_display", optional = true }
impersonate_system = { git = "https://github.com/21pages/impersonate-system" } impersonate_system = { git = "https://github.com/21pages/impersonate-system" }
@ -111,7 +111,7 @@ fruitbasket = "0.10"
objc_id = "0.1" objc_id = "0.1"
[target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies] [target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies]
tray-icon = "0.4" tray-icon = { git = "https://github.com/tauri-apps/tray-icon" }
tao = { git = "https://github.com/rustdesk-org/tao", branch = "muda" } tao = { git = "https://github.com/rustdesk-org/tao", branch = "muda" }
image = "0.24" image = "0.24"