compliant with new APIs

This commit is contained in:
DecDuck
2024-10-09 00:37:27 +11:00
parent 556898fc13
commit 8f6f184739
13 changed files with 234 additions and 139 deletions

20
src-tauri/Cargo.lock generated
View File

@ -931,7 +931,9 @@ version = "0.1.0"
dependencies = [
"ciborium",
"directories",
"hex",
"log",
"openssl",
"os_info",
"rayon",
"reqwest",
@ -945,6 +947,7 @@ dependencies = [
"tauri-plugin-shell",
"tauri-plugin-single-instance",
"url",
"uuid",
"webbrowser",
"zstd",
]
@ -3203,9 +3206,9 @@ dependencies = [
[[package]]
name = "rustls"
version = "0.23.13"
version = "0.23.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8"
checksum = "415d9944693cb90382053259f89fbb077ea730ad7273047ec63b19bc9b160ba8"
dependencies = [
"once_cell",
"rustls-pki-types",
@ -4613,7 +4616,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
dependencies = [
"getrandom 0.2.15",
"rand 0.8.5",
"serde",
"uuid-macro-internal",
]
[[package]]
name = "uuid-macro-internal"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee1cd046f83ea2c4e920d6ee9f7c3537ef928d75dce5d84a87c2c5d6b3999a3a"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.79",
]
[[package]]