1
0
Fork 0

Fix up rust issues

This commit is contained in:
Leon Grünewald 2024-09-08 13:28:04 +02:00
parent 33bea8292d
commit 82bf565ce3
3 changed files with 455 additions and 390 deletions

840
src-tauri/Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
tauri-build = { version = "1", features = [] }
[dependencies]
anyhow = { version = "1.0", features = [] }
@ -18,7 +18,7 @@ r621 = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "0.12"
tauri = { version = "1.5", features = ["shell-open"] }
tauri = { version = "1", features = ["shell-open"] }
thiserror = "1.0"
tokio = { version = "1.35", features = ["full"] }

View file

@ -1,4 +1,3 @@
#![feature(lazy_cell)]
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]