🔧 update cargo version

This commit is contained in:
Tw93
2024-12-26 16:44:03 +08:00
parent 991f718fba
commit 2d951e2d90
2 changed files with 8 additions and 9 deletions

8
src-tauri/Cargo.lock generated
View File

@@ -3512,9 +3512,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.133"
version = "1.0.134"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
dependencies = [
"itoa 1.0.14",
"memchr",
@@ -4454,9 +4454,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.41.1"
version = "1.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
dependencies = [
"backtrace",
"bytes",

View File

@@ -18,17 +18,16 @@ crate-type = ["staticlib", "cdylib", "lib"]
tauri-build = { version = "2.0.3", features = [] }
[dependencies]
serde_json = "1.0.133"
serde_json = "1.0.134"
serde = { version = "1.0.216", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tokio = { version = "1.42.0", features = ["full"] }
tauri = { version = "2.1.1", features = ["tray-icon", "image-ico", "image-png", "macos-proxy"] }
tauri-plugin-window-state = "2.2.0"
tauri-plugin-oauth = "2"
tauri-plugin-oauth = "2.0.0"
tauri-plugin-http = "2.2.0"
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
tauri-plugin-global-shortcut = { version = "2.2.0" }
tauri-plugin-shell = "2.2.0"
tauri-plugin-single-instance = "2"
tauri-plugin-single-instance = "2.2.0"
tauri-plugin-notification = "2.2.0"
[features]