Skip to content

Commit

Permalink
fix build error at BinChengZhao/delay-timer#50
Browse files Browse the repository at this point in the history
  • Loading branch information
taikulawo committed Feb 12, 2024
1 parent 7c37618 commit e1e508e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 32 additions & 6 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,18 @@ serde_yaml = "0.9"
auto-launch = "0.5"
once_cell = "1.14.0"
port_scanner = "0.1.5"
delay_timer = "0.11.1"
delay_timer = "0.11.5"
parking_lot = "0.12.0"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["json","rustls-tls"] }
tauri = { version = "1.2.4", features = ["global-shortcut-all", "process-all", "shell-all", "system-tray", "window-all"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
tauri = { version = "1.2.4", features = [
"global-shortcut-all",
"process-all",
"shell-all",
"system-tray",
"window-all",
] }
window-vibrancy = { version = "0.3.0" }
window-shadows = { version = "0.2.0" }
wry = { version = "0.24.3" }
Expand All @@ -47,13 +53,33 @@ wry = { version = "0.24.3" }
runas = "1.1.0"
deelevate = "0.2.0"
winreg = { version = "0.50", features = ["transactions"] }
windows-sys = { version = "0.48", features = ["Win32_System_LibraryLoader", "Win32_System_SystemInformation"] }
windows-sys = { version = "0.48", features = [
"Win32_System_LibraryLoader",
"Win32_System_SystemInformation",
] }

[target.'cfg(windows)'.dependencies.tauri]
features = ["global-shortcut-all", "icon-png", "process-all", "shell-all", "system-tray", "updater", "window-all"]
features = [
"global-shortcut-all",
"icon-png",
"process-all",
"shell-all",
"system-tray",
"updater",
"window-all",
]
version = "1.2.4"
[target.'cfg(linux)'.dependencies.tauri]
features = ["global-shortcut-all", "process-all", "shell-all", "system-tray", "updater", "window-all", "native-tls-vendored", "reqwest-native-tls-vendored"]
features = [
"global-shortcut-all",
"process-all",
"shell-all",
"system-tray",
"updater",
"window-all",
"native-tls-vendored",
"reqwest-native-tls-vendored",
]
version = "1.2.4"

[features]
Expand Down

0 comments on commit e1e508e

Please sign in to comment.