This commit is contained in:
Gregory Schier
2025-01-26 13:13:45 -08:00
committed by GitHub
parent 82b1ad35ff
commit f678593903
99 changed files with 3492 additions and 1583 deletions

61
src-tauri/Cargo.lock generated
View File

@@ -712,7 +712,7 @@ dependencies = [
"semver",
"serde",
"serde_json",
"thiserror 2.0.7",
"thiserror 2.0.11",
]
[[package]]
@@ -5212,8 +5212,6 @@ dependencies = [
"serde_json",
"sha2",
"sqlx-core",
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
"syn 2.0.87",
"tempfile",
@@ -5252,7 +5250,6 @@ dependencies = [
"percent-encoding",
"rand 0.8.5",
"rsa",
"serde",
"sha1",
"sha2",
"smallvec",
@@ -5556,9 +5553,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]]
name = "tauri"
version = "2.2.0"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e2e3349fbb2be7af9fad1b43d61ac83ba55ab48d47fbe1b2732f0c8211610a9"
checksum = "78f6efc261c7905839b4914889a5b25df07f0ff89c63fb4afd6ff8c96af15e4d"
dependencies = [
"anyhow",
"bytes",
@@ -5594,7 +5591,7 @@ dependencies = [
"tauri-runtime",
"tauri-runtime-wry",
"tauri-utils",
"thiserror 2.0.7",
"thiserror 2.0.11",
"tokio",
"tray-icon",
"url",
@@ -5647,7 +5644,7 @@ dependencies = [
"sha2",
"syn 2.0.87",
"tauri-utils",
"thiserror 2.0.7",
"thiserror 2.0.11",
"time",
"url",
"uuid",
@@ -5697,7 +5694,7 @@ dependencies = [
"serde_json",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
]
[[package]]
@@ -5714,7 +5711,7 @@ dependencies = [
"tauri",
"tauri-plugin",
"tauri-plugin-fs",
"thiserror 2.0.7",
"thiserror 2.0.11",
"url",
]
@@ -5735,7 +5732,7 @@ dependencies = [
"tauri",
"tauri-plugin",
"tauri-utils",
"thiserror 2.0.7",
"thiserror 2.0.11",
"toml 0.8.19",
"url",
"uuid",
@@ -5759,7 +5756,7 @@ dependencies = [
"swift-rs",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
"time",
]
@@ -5779,7 +5776,7 @@ dependencies = [
"serde_json",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
"url",
"windows",
"zbus 5.3.0",
@@ -5800,7 +5797,7 @@ dependencies = [
"sys-locale",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
]
[[package]]
@@ -5820,7 +5817,7 @@ dependencies = [
"shared_child",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
"tokio",
]
@@ -5833,7 +5830,7 @@ dependencies = [
"serde",
"serde_json",
"tauri",
"thiserror 2.0.7",
"thiserror 2.0.11",
"tracing",
"windows-sys 0.59.0",
"zbus 5.3.0",
@@ -5861,7 +5858,7 @@ dependencies = [
"tauri",
"tauri-plugin",
"tempfile",
"thiserror 2.0.7",
"thiserror 2.0.11",
"time",
"tokio",
"url",
@@ -5881,7 +5878,7 @@ dependencies = [
"serde_json",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
]
[[package]]
@@ -5898,7 +5895,7 @@ dependencies = [
"serde",
"serde_json",
"tauri-utils",
"thiserror 2.0.7",
"thiserror 2.0.11",
"url",
"windows",
]
@@ -5958,7 +5955,7 @@ dependencies = [
"serde_json",
"serde_with",
"swift-rs",
"thiserror 2.0.7",
"thiserror 2.0.11",
"toml 0.8.19",
"url",
"urlpattern",
@@ -6026,11 +6023,11 @@ dependencies = [
[[package]]
name = "thiserror"
version = "2.0.7"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767"
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
dependencies = [
"thiserror-impl 2.0.7",
"thiserror-impl 2.0.11",
]
[[package]]
@@ -6046,9 +6043,9 @@ dependencies = [
[[package]]
name = "thiserror-impl"
version = "2.0.7"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36"
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
dependencies = [
"proc-macro2",
"quote",
@@ -6458,7 +6455,7 @@ dependencies = [
"log",
"rand 0.8.5",
"sha1",
"thiserror 2.0.7",
"thiserror 2.0.11",
"utf-8",
]
@@ -7406,7 +7403,7 @@ dependencies = [
"sha2",
"soup3",
"tao-macros",
"thiserror 2.0.7",
"thiserror 2.0.11",
"url",
"webkit2gtk",
"webkit2gtk-sys",
@@ -7497,6 +7494,7 @@ dependencies = [
"hex_color",
"http",
"log",
"md5",
"mime_guess",
"objc",
"openssl-sys",
@@ -7571,7 +7569,7 @@ dependencies = [
"serde_json",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
"ts-rs",
"yaak-models",
]
@@ -7592,7 +7590,7 @@ dependencies = [
"serde_json",
"sqlx",
"tauri",
"thiserror 1.0.63",
"thiserror 2.0.11",
"ts-rs",
]
@@ -7603,6 +7601,7 @@ dependencies = [
"dunce",
"futures-util",
"log",
"md5",
"path-slash",
"rand 0.8.5",
"regex",
@@ -7610,7 +7609,7 @@ dependencies = [
"serde_json",
"tauri",
"tauri-plugin-shell",
"thiserror 2.0.7",
"thiserror 2.0.11",
"tokio",
"tokio-tungstenite",
"ts-rs",
@@ -7639,7 +7638,7 @@ dependencies = [
"sha1",
"tauri",
"tauri-plugin",
"thiserror 2.0.7",
"thiserror 2.0.11",
"tokio",
"ts-rs",
"yaak-models",