Upgraded to Rust 1.80.0 (#47)

This commit is contained in:
Thorsten Sommer 2024-07-26 12:21:14 +02:00 committed by GitHub
parent 79892eb829
commit 426f223a84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 645 additions and 544 deletions

View File

@ -3,7 +3,7 @@
166 166
8.0.107 (commit 1bdaef7265) 8.0.107 (commit 1bdaef7265)
8.0.7 (commit 2aade6beb0) 8.0.7 (commit 2aade6beb0)
1.79.0 (commit 129f3b996) 1.80.0 (commit 051478957)
7.4.0 7.4.0
1.6.1 1.7.1
bd7eecdc80c, release 79892eb8292, dev debug

1177
runtime/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -9,13 +9,13 @@ authors = ["Thorsten Sommer"]
tauri-build = { version = "1.5", features = [] } tauri-build = { version = "1.5", features = [] }
[dependencies] [dependencies]
tauri = { version = "1.6", features = [ "updater", "http-all", "shell-sidecar", "path-all", "shell-open"] } tauri = { version = "1.7.1", features = [ "updater", "http-all", "shell-sidecar", "path-all", "shell-open"] }
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
keyring = "2" keyring = "2"
arboard = "3.4.0" arboard = "3.4.0"
tokio = "1.37.0" tokio = "1.39"
flexi_logger = "0.28" flexi_logger = "0.28"
log = "0.4" log = "0.4"
once_cell = "1.19.0" once_cell = "1.19.0"

View File

@ -292,7 +292,7 @@ enum ServerEvent {
} }
pub fn is_dev() -> bool { pub fn is_dev() -> bool {
cfg!(dev) cfg!(debug_assertions)
} }
pub fn is_prod() -> bool { pub fn is_prod() -> bool {