From d0536da3d7c912fa331e9f1732230721e1adb8ab Mon Sep 17 00:00:00 2001 From: Julian Cuni Date: Sun, 21 Jun 2026 12:21:49 +0200 Subject: [PATCH] =?UTF-8?q?feat(desktop):=20Tauri=20v2=20kiosk=20shell=20?= =?UTF-8?q?=E2=80=94=20maximized=20window,=20prod=20right-click=20block,?= =?UTF-8?q?=20auto-update=20+=20code-signing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add apps/desktop, a thin Tauri v2 shell wrapping the SAME @parking/web SPA so the desktop and browser UIs never drift: dev loads the Vite dev server (HMR), prod bundles the web app's dist/. No business logic in the shell (device/auth/ ledger stay in @parking/server); deny-by-default capabilities. apps/web (single UI source of truth): - lib/origin.ts: centralize the backend origin (API_BASE/apiUrl/wsUrl from VITE_API_BASE); no-op in the browser, lets the desktop build target Fastify. - lib/kiosk.ts: block the right-click context menu in PROD only (dev keeps it + devtools). - lib/desktop-updater.ts: prompt-on-update auto-update (no-op in browser/offline) → downloadAndInstall + relaunch; i18n update.* keys (sq+en). - .env.production: VITE_API_BASE wired to the Fastify origin for the bundle. Desktop: - window starts maximized (not fullscreen — operator keeps OS access). - auto-update via tauri-plugin-updater + -process; self-hosted endpoint is a PLACEHOLDER to fill in. Updater keypair: pubkey embedded in tauri.conf.json; private key + password kept OUTSIDE the repo (~/.parking-updater-keys) and as TAURI_SIGNING_* build secrets. - Turbo build is a no-op; the real signed bundle is `pnpm --filter @parking/desktop bundle` (verified → .deb/.rpm/.AppImage + .sig signatures). Verified: cargo check clean; turbo run build lint 14/14 green; i18n parity holds; no key/sig/bundle artifacts in the repo. Wiki (security + desktop analysis recorded alongside): - new concepts/tpm.md (TPM 2.0: how it works, sealed-LUKS auto-unlock + non- extractable signing key, limits — live-root, bus-sniff — TPM-vs-ATECC608 by platform). - new decisions/desktop-shell-tauri.md (Tauri v2 over Electron; best-case Ubuntu 26.04 LTS, worst-case Windows+WSL → kiosk browser; full as-built). - pull-the-disk attack trace on append-only-event-chain; ATECC608 not-in-a-PC caveat; cross-links from disk-os-hardening / threat-model. - open-questions #11 (appliance WebKitGTK), #12 (TPM hardening impl), #13 (startup verifyChain self-check); index/overview/log/standing-decisions. Claude-Session: https://claude.ai/code/session_01Xcm6ikLgGoCxxHrxtjkk5V --- .gitignore | 2 + apps/desktop/.env.example | 10 + apps/desktop/.gitignore | 3 + apps/desktop/README.md | 42 + apps/desktop/package.json | 21 + apps/desktop/src-tauri/Cargo.lock | 4899 +++++++++++++++++ apps/desktop/src-tauri/Cargo.toml | 28 + apps/desktop/src-tauri/build.rs | 3 + .../src-tauri/capabilities/default.json | 11 + apps/desktop/src-tauri/icons/128x128.png | Bin 0 -> 953 bytes apps/desktop/src-tauri/icons/128x128@2x.png | Bin 0 -> 1262 bytes apps/desktop/src-tauri/icons/32x32.png | Bin 0 -> 552 bytes apps/desktop/src-tauri/icons/64x64.png | Bin 0 -> 745 bytes .../src-tauri/icons/Square107x107Logo.png | Bin 0 -> 891 bytes .../src-tauri/icons/Square142x142Logo.png | Bin 0 -> 1016 bytes .../src-tauri/icons/Square150x150Logo.png | Bin 0 -> 997 bytes .../src-tauri/icons/Square284x284Logo.png | Bin 0 -> 1583 bytes .../src-tauri/icons/Square30x30Logo.png | Bin 0 -> 562 bytes .../src-tauri/icons/Square310x310Logo.png | Bin 0 -> 1511 bytes .../src-tauri/icons/Square44x44Logo.png | Bin 0 -> 643 bytes .../src-tauri/icons/Square71x71Logo.png | Bin 0 -> 748 bytes .../src-tauri/icons/Square89x89Logo.png | Bin 0 -> 838 bytes apps/desktop/src-tauri/icons/StoreLogo.png | Bin 0 -> 706 bytes apps/desktop/src-tauri/icons/icon.icns | Bin 0 -> 19162 bytes apps/desktop/src-tauri/icons/icon.ico | Bin 0 -> 4459 bytes apps/desktop/src-tauri/icons/icon.png | Bin 0 -> 1857 bytes apps/desktop/src-tauri/src/lib.rs | 21 + apps/desktop/src-tauri/src/main.rs | 6 + apps/desktop/src-tauri/tauri.conf.json | 50 + apps/desktop/turbo.json | 10 + apps/web/.env.production | 11 + apps/web/package.json | 2 + apps/web/src/api.ts | 3 +- apps/web/src/lib/desktop-updater.ts | 51 + apps/web/src/lib/i18n/en.ts | 4 + apps/web/src/lib/i18n/sq.ts | 4 + apps/web/src/lib/kiosk.ts | 16 + apps/web/src/lib/origin.ts | 30 + apps/web/src/lib/use-live-feed.ts | 8 +- apps/web/src/main.tsx | 12 + pnpm-lock.yaml | 156 + wiki/concepts/append-only-event-chain.md | 19 +- wiki/concepts/disk-os-hardening.md | 8 +- wiki/concepts/threat-model.md | 4 +- wiki/concepts/tpm.md | 95 + wiki/decisions/desktop-shell-tauri.md | 164 + wiki/decisions/open-questions.md | 39 +- wiki/decisions/standing-decisions.md | 7 +- wiki/entities/atecc608.md | 8 + wiki/index.md | 6 +- wiki/log.md | 56 + wiki/overview.md | 5 +- 52 files changed, 5792 insertions(+), 22 deletions(-) create mode 100644 apps/desktop/.env.example create mode 100644 apps/desktop/.gitignore create mode 100644 apps/desktop/README.md create mode 100644 apps/desktop/package.json create mode 100644 apps/desktop/src-tauri/Cargo.lock create mode 100644 apps/desktop/src-tauri/Cargo.toml create mode 100644 apps/desktop/src-tauri/build.rs create mode 100644 apps/desktop/src-tauri/capabilities/default.json create mode 100644 apps/desktop/src-tauri/icons/128x128.png create mode 100644 apps/desktop/src-tauri/icons/128x128@2x.png create mode 100644 apps/desktop/src-tauri/icons/32x32.png create mode 100644 apps/desktop/src-tauri/icons/64x64.png create mode 100644 apps/desktop/src-tauri/icons/Square107x107Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square142x142Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square150x150Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square284x284Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square30x30Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square310x310Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square44x44Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square71x71Logo.png create mode 100644 apps/desktop/src-tauri/icons/Square89x89Logo.png create mode 100644 apps/desktop/src-tauri/icons/StoreLogo.png create mode 100644 apps/desktop/src-tauri/icons/icon.icns create mode 100644 apps/desktop/src-tauri/icons/icon.ico create mode 100644 apps/desktop/src-tauri/icons/icon.png create mode 100644 apps/desktop/src-tauri/src/lib.rs create mode 100644 apps/desktop/src-tauri/src/main.rs create mode 100644 apps/desktop/src-tauri/tauri.conf.json create mode 100644 apps/desktop/turbo.json create mode 100644 apps/web/.env.production create mode 100644 apps/web/src/lib/desktop-updater.ts create mode 100644 apps/web/src/lib/kiosk.ts create mode 100644 apps/web/src/lib/origin.ts create mode 100644 wiki/concepts/tpm.md create mode 100644 wiki/decisions/desktop-shell-tauri.md diff --git a/.gitignore b/.gitignore index f2a466c..06e8e70 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,8 @@ dist/ .env .env.* !.env.example +# Committed (non-secret): the desktop/prod build's backend origin — see apps/web/.env.production +!.env.production # Editor/OS .DS_Store diff --git a/apps/desktop/.env.example b/apps/desktop/.env.example new file mode 100644 index 0000000..7fb740c --- /dev/null +++ b/apps/desktop/.env.example @@ -0,0 +1,10 @@ +# Desktop (Tauri) build — the @parking/web SPA needs to know where Fastify is. +# +# In a BROWSER (dev via the Vite proxy, or prod where Fastify serves the SPA), +# leave VITE_API_BASE UNSET — requests stay relative/same-origin. +# +# For the DESKTOP build, the bundled SPA loads from tauri://localhost and has no +# proxy, so point it at the appliance's Fastify origin. This is read at WEB build +# time, so export it before `pnpm --filter @parking/desktop build` (or put it in +# apps/web/.env.production). +VITE_API_BASE=http://127.0.0.1:3000 diff --git a/apps/desktop/.gitignore b/apps/desktop/.gitignore new file mode 100644 index 0000000..ab104a9 --- /dev/null +++ b/apps/desktop/.gitignore @@ -0,0 +1,3 @@ +# Rust / Tauri build artifacts +src-tauri/target/ +src-tauri/gen/ diff --git a/apps/desktop/README.md b/apps/desktop/README.md new file mode 100644 index 0000000..1ef748e --- /dev/null +++ b/apps/desktop/README.md @@ -0,0 +1,42 @@ +# @parking/desktop — Tauri v2 kiosk shell + +A **thin native desktop window** over the `@parking/web` SPA. It contains **no UI and no business +logic** of its own: the window renders the *same* web app the browser does, so the desktop and the +browser stay identical and never drift. Device/auth/ledger logic stays in `@parking/server`. See +`wiki/decisions/desktop-shell-tauri.md`. + +## How the "same look & functionality" guarantee works + +| | Source of the UI | +| --- | --- | +| **Dev** (`tauri dev`) | the window loads `http://localhost:5173` — the **`@parking/web` Vite dev server**. Edit a component in `apps/web` → HMR updates the desktop window live. | +| **Prod** (`tauri build`) | the window bundles `apps/web`'s built `dist/`. `beforeBuildCommand` rebuilds the SPA first. | + +There is only one UI codebase (`apps/web`); this package just wraps it. + +## Backend connection + +The SPA talks to Fastify over HTTP/WS. In a browser that's same-origin (relative `/api`). In the +desktop build the bundled assets load from `tauri://localhost`, so set **`VITE_API_BASE`** (read at +web build time — see `.env.example`) to the appliance's Fastify origin, e.g. +`http://127.0.0.1:3000`. The CSP `connect-src` in `tauri.conf.json` is already allowed for that +origin, and the backend must include the Tauri origin in `WS_ALLOWED_ORIGINS` for the live feed. + +## Commands + +```bash +pnpm --filter @parking/desktop dev # native window over the web dev server (HMR) +pnpm --filter @parking/desktop bundle # build the SPA + bundle the desktop app (.deb/.rpm/.AppImage) +``` + +> `build` is a **no-op** in this package so `turbo run build` stays fast — the real desktop bundle +> (compiles Rust, minutes long) is the explicit `bundle` script above. + +Requires the Rust toolchain and (on Linux) WebKitGTK 4.1 + libsoup-3 dev libraries. Under WSL2 the +window needs a display (WSLg or an X server). + +## Not here (deliberately) + +Kiosk lockdown (fullscreen/no-decorations), auto-update, code signing, and launching Fastify from +the shell are out of scope for the scaffold — on the appliance Fastify runs as its own service and +this shell connects to it. diff --git a/apps/desktop/package.json b/apps/desktop/package.json new file mode 100644 index 0000000..018e067 --- /dev/null +++ b/apps/desktop/package.json @@ -0,0 +1,21 @@ +{ + "name": "@parking/desktop", + "version": "0.0.0", + "private": true, + "//": "Tauri v2 desktop shell — a THIN native window over the @parking/web SPA. No business logic lives here (device/auth/ledger stay in @parking/server); see wiki/decisions/desktop-shell-tauri.md. Dev loads the web dev server (HMR); build bundles the web app's dist/, so the desktop UI and the browser UI are the SAME codebase and never drift.", + "type": "module", + "scripts": { + "dev": "tauri dev", + "build": "echo 'no-op in the Turbo graph — the real desktop bundle is a deliberate `pnpm --filter @parking/desktop bundle` (compiles Rust + packages installers, minutes long)'", + "bundle": "tauri build", + "tauri": "tauri", + "lint": "echo 'no JS lint (Tauri shell; Rust checked via cargo)'" + }, + "devDependencies": { + "@tauri-apps/cli": "^2.9.1" + }, + "dependencies": { + "@tauri-apps/plugin-process": "^2.3.1", + "@tauri-apps/plugin-updater": "^2.10.1" + } +} diff --git a/apps/desktop/src-tauri/Cargo.lock b/apps/desktop/src-tauri/Cargo.lock new file mode 100644 index 0000000..297a220 --- /dev/null +++ b/apps/desktop/src-tauri/Cargo.lock @@ -0,0 +1,4899 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" +dependencies = [ + "derive_arbitrary", +] + +[[package]] +name = "atk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" +dependencies = [ + "atk-sys", + "glib", + "libc", +] + +[[package]] +name = "atk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bit-set" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8" +dependencies = [ + "serde_core", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + +[[package]] +name = "brotli" +version = "8.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bs58" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "bumpalo" +version = "3.20.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" + +[[package]] +name = "bytemuck" +version = "1.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593" +dependencies = [ + "serde", +] + +[[package]] +name = "cairo-rs" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" +dependencies = [ + "bitflags 2.13.0", + "cairo-sys-rs", + "glib", + "libc", + "once_cell", + "thiserror 1.0.69", +] + +[[package]] +name = "cairo-sys-rs" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "camino" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ce8d3bd5823c7504d3f579f13e7b2f3da252fcb938c594d5680ee508bf846f" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.18", +] + +[[package]] +name = "cargo_toml" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" +dependencies = [ + "serde", + "toml 0.9.12+spec-1.1.0", +] + +[[package]] +name = "cc" +version = "1.2.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cfb" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" +dependencies = [ + "byteorder", + "fnv", + "uuid", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "chrono" +version = "0.4.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" +dependencies = [ + "iana-time-zone", + "num-traits", + "serde", + "windows-link 0.2.1", +] + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "cookie" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" +dependencies = [ + "time", + "version_check", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core-graphics" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97" +dependencies = [ + "bitflags 2.13.0", + "core-foundation", + "core-graphics-types", + "foreign-types", + "libc", +] + +[[package]] +name = "core-graphics-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" +dependencies = [ + "bitflags 2.13.0", + "core-foundation", + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "cssparser" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn 2.0.118", +] + +[[package]] +name = "ctor" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98" +dependencies = [ + "ctor-proc-macro", + "dtor", +] + +[[package]] +name = "ctor-proc-macro" +version = "0.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" + +[[package]] +name = "darling" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" +dependencies = [ + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.118", +] + +[[package]] +name = "darling_macro" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "dbus" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b942602992bb7acfd1f51c49811c58a610ef9181b6e66f3e519d79b540a3bf73" +dependencies = [ + "libc", + "libdbus-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "serde_core", +] + +[[package]] +name = "derive_arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "derive_more" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" +dependencies = [ + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.118", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", +] + +[[package]] +name = "dispatch2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" +dependencies = [ + "bitflags 2.13.0", + "block2", + "libc", + "objc2", +] + +[[package]] +name = "displaydoc" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "dlopen2" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" +dependencies = [ + "dlopen2_derive", + "libc", + "once_cell", + "winapi", +] + +[[package]] +name = "dlopen2_derive" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "dom_query" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "521e380c0c8afb8d9a1e83a1822ee03556fc3e3e7dbc1fd30be14e37f9cb3f89" +dependencies = [ + "bit-set", + "cssparser", + "foldhash", + "html5ever", + "precomputed-hash", + "selectors", + "tendril", +] + +[[package]] +name = "dpi" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" +dependencies = [ + "serde", +] + +[[package]] +name = "dtoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "dtor" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4" +dependencies = [ + "dtor-proc-macro", +] + +[[package]] +name = "dtor-proc-macro" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + +[[package]] +name = "embed-resource" +version = "3.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31a88c8d26de40ed18fe748c547845aa39de1db3afd958f8cb91579f3644bcb" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml 1.1.2+spec-1.1.0", + "vswhom", + "winreg", +] + +[[package]] +name = "embed_plist" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "erased-serde" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" +dependencies = [ + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "fastrand" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "field-offset" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" +dependencies = [ + "memoffset", + "rustc_version", +] + +[[package]] +name = "filetime" +version = "0.2.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759" +dependencies = [ + "cfg-if", + "libc", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "foreign-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" +dependencies = [ + "foreign-types-macros", + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "foreign-types-shared" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-executor" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-macro" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "gdk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" +dependencies = [ + "cairo-rs", + "gdk-pixbuf", + "gdk-sys", + "gio", + "glib", + "libc", + "pango", +] + +[[package]] +name = "gdk-pixbuf" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" +dependencies = [ + "gdk-pixbuf-sys", + "gio", + "glib", + "libc", + "once_cell", +] + +[[package]] +name = "gdk-pixbuf-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gdk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkwayland-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" +dependencies = [ + "gdk-sys", + "glib-sys", + "gobject-sys", + "libc", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkx11" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" +dependencies = [ + "gdk", + "gdkx11-sys", + "gio", + "glib", + "libc", + "x11", +] + +[[package]] +name = "gdkx11-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" +dependencies = [ + "gdk-sys", + "glib-sys", + "libc", + "system-deps", + "x11", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi 5.3.0", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", +] + +[[package]] +name = "gio" +version = "0.18.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "gio-sys", + "glib", + "libc", + "once_cell", + "pin-project-lite", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "gio-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", + "winapi", +] + +[[package]] +name = "glib" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" +dependencies = [ + "bitflags 2.13.0", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys", + "glib-macros", + "glib-sys", + "gobject-sys", + "libc", + "memchr", + "once_cell", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "glib-macros" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" +dependencies = [ + "heck 0.4.1", + "proc-macro-crate 2.0.2", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "glib-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" +dependencies = [ + "libc", + "system-deps", +] + +[[package]] +name = "glob" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" + +[[package]] +name = "gobject-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gtk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" +dependencies = [ + "atk", + "cairo-rs", + "field-offset", + "futures-channel", + "gdk", + "gdk-pixbuf", + "gio", + "glib", + "gtk-sys", + "gtk3-macros", + "libc", + "pango", + "pkg-config", +] + +[[package]] +name = "gtk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" +dependencies = [ + "atk-sys", + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "gtk3-macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "html5ever" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1054432bae2f14e0061e33d23402fbaa67a921d319d56adc6bcf887ddad1cbc2" +dependencies = [ + "log", + "markup5ever", +] + +[[package]] +name = "http" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "tokio", + "tokio-rustls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ico" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371" +dependencies = [ + "byteorder", + "png 0.17.16", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", + "serde", + "serde_core", +] + +[[package]] +name = "infer" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" +dependencies = [ + "cfb", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "javascriptcore-rs" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" +dependencies = [ + "bitflags 1.3.2", + "glib", + "javascriptcore-rs-sys", +] + +[[package]] +name = "javascriptcore-rs-sys" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "jni" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" +dependencies = [ + "cesu8", + "cfg-if", + "combine", + "jni-sys 0.3.1", + "log", + "thiserror 1.0.69", + "walkdir", + "windows-sys 0.45.0", +] + +[[package]] +name = "jni" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" +dependencies = [ + "cfg-if", + "combine", + "jni-macros", + "jni-sys 0.4.1", + "log", + "simd_cesu8", + "thiserror 2.0.18", + "walkdir", + "windows-link 0.2.1", +] + +[[package]] +name = "jni-macros" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" +dependencies = [ + "proc-macro2", + "quote", + "rustc_version", + "simd_cesu8", + "syn 2.0.118", +] + +[[package]] +name = "jni-sys" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" +dependencies = [ + "jni-sys 0.4.1", +] + +[[package]] +name = "jni-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn 2.0.118", +] + +[[package]] +name = "js-sys" +version = "0.3.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31" +dependencies = [ + "cfg-if", + "futures-util", + "wasm-bindgen", +] + +[[package]] +name = "json-patch" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" +dependencies = [ + "jsonptr", + "serde", + "serde_json", + "thiserror 1.0.69", +] + +[[package]] +name = "jsonptr" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "keyboard-types" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" +dependencies = [ + "bitflags 2.13.0", + "serde", + "unicode-segmentation", +] + +[[package]] +name = "libappindicator" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" +dependencies = [ + "glib", + "gtk", + "gtk-sys", + "libappindicator-sys", + "log", +] + +[[package]] +name = "libappindicator-sys" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" +dependencies = [ + "gtk-sys", + "libloading", + "once_cell", +] + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "libdbus-sys" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043" +dependencies = [ + "pkg-config", +] + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + +[[package]] +name = "libredox" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3" +dependencies = [ + "libc", +] + +[[package]] +name = "linux-raw-sys" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" + +[[package]] +name = "markup5ever" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8983d30f2915feeaaab2d6babdd6bc7e9ed1a00b66b5e6d74df19aa9c0e91862" +dependencies = [ + "log", + "tendril", + "web_atoms", +] + +[[package]] +name = "memchr" +version = "2.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4" + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "minisign-verify" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22f9645cb765ea72b8111f36c522475d2daa0d22c957a9826437e97534bc4e9e" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "muda" +version = "0.19.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1dd04e60bc0b07438a6771710ee1698f98f6ebbc7f89b61264af1563b8aeb878" +dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "once_cell", + "png 0.18.1", + "serde", + "thiserror 2.0.18", + "windows-sys 0.61.2", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.13.0", + "jni-sys 0.3.1", + "log", + "ndk-sys", + "num_enum", + "raw-window-handle", + "thiserror 1.0.69", +] + +[[package]] +name = "ndk-sys" +version = "0.6.0+11769913" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" +dependencies = [ + "jni-sys 0.3.1", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "num-conv" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_enum" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "objc2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" +dependencies = [ + "objc2-encode", + "objc2-exception-helper", +] + +[[package]] +name = "objc2-app-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" +dependencies = [ + "bitflags 2.13.0", + "block2", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-cloud-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" +dependencies = [ + "bitflags 2.13.0", + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-data" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa" +dependencies = [ + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" +dependencies = [ + "bitflags 2.13.0", + "dispatch2", + "objc2", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" +dependencies = [ + "bitflags 2.13.0", + "dispatch2", + "objc2", + "objc2-core-foundation", + "objc2-io-surface", +] + +[[package]] +name = "objc2-core-image" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006" +dependencies = [ + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-location" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009" +dependencies = [ + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-text" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" +dependencies = [ + "bitflags 2.13.0", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-exception-helper" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" +dependencies = [ + "cc", +] + +[[package]] +name = "objc2-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" +dependencies = [ + "bitflags 2.13.0", + "block2", + "libc", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" +dependencies = [ + "bitflags 2.13.0", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-osa-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0" +dependencies = [ + "bitflags 2.13.0", + "objc2", + "objc2-app-kit", + "objc2-foundation", +] + +[[package]] +name = "objc2-quartz-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" +dependencies = [ + "bitflags 2.13.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-ui-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" +dependencies = [ + "bitflags 2.13.0", + "block2", + "objc2", + "objc2-cloud-kit", + "objc2-core-data", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-core-image", + "objc2-core-location", + "objc2-core-text", + "objc2-foundation", + "objc2-quartz-core", + "objc2-user-notifications", +] + +[[package]] +name = "objc2-user-notifications" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e" +dependencies = [ + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-web-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" +dependencies = [ + "bitflags 2.13.0", + "block2", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "osakit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b" +dependencies = [ + "objc2", + "objc2-foundation", + "objc2-osa-kit", + "serde", + "serde_json", + "thiserror 2.0.18", +] + +[[package]] +name = "pango" +version = "0.18.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" +dependencies = [ + "gio", + "glib", + "libc", + "once_cell", + "pango-sys", +] + +[[package]] +name = "pango-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "parking-desktop" +version = "0.0.0" +dependencies = [ + "serde_json", + "tauri", + "tauri-build", + "tauri-plugin-process", + "tauri-plugin-updater", +] + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link 0.2.1", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "phf" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" +dependencies = [ + "phf_macros", + "phf_shared", + "serde", +] + +[[package]] +name = "phf_codegen" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1" +dependencies = [ + "phf_generator", + "phf_shared", +] + +[[package]] +name = "phf_generator" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" +dependencies = [ + "fastrand", + "phf_shared", +] + +[[package]] +name = "phf_macros" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "phf_shared" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" +dependencies = [ + "siphasher", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pkg-config" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" + +[[package]] +name = "plist" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1" +dependencies = [ + "base64 0.22.1", + "indexmap 2.14.0", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "png" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" +dependencies = [ + "bitflags 2.13.0", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" +dependencies = [ + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit 0.25.12+spec-1.1.0", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-xml" +version = "0.39.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "raw-window-handle" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.13.0", +] + +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.18", +] + +[[package]] +name = "ref-cast" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "regex" +version = "1.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" + +[[package]] +name = "reqwest" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "rustls", + "rustls-pki-types", + "rustls-platform-verifier", + "serde", + "serde_json", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustc-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +dependencies = [ + "bitflags 2.13.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls" +version = "0.23.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b" +dependencies = [ + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-native-certs" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" +dependencies = [ + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-pki-types" +version = "1.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9" +dependencies = [ + "zeroize", +] + +[[package]] +name = "rustls-platform-verifier" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0" +dependencies = [ + "core-foundation", + "core-foundation-sys", + "jni 0.22.4", + "log", + "once_cell", + "rustls", + "rustls-native-certs", + "rustls-platform-verifier-android", + "rustls-webpki", + "security-framework", + "security-framework-sys", + "webpki-root-certs", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls-platform-verifier-android" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" + +[[package]] +name = "rustls-webpki" +version = "0.103.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "schemars" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +dependencies = [ + "dyn-clone", + "indexmap 1.9.3", + "schemars_derive", + "serde", + "serde_json", + "url", + "uuid", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars_derive" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.118", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags 2.13.0", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "selectors" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c" +dependencies = [ + "bitflags 2.13.0", + "cssparser", + "derive_more", + "log", + "new_debug_unreachable", + "phf", + "phf_codegen", + "precomputed-hash", + "rustc-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" +dependencies = [ + "serde", + "serde_core", +] + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde-untagged" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" +dependencies = [ + "erased-serde", + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "serde_derive_internals" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "serde_json" +version = "1.0.150" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_repr" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_spanned" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_with" +version = "3.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c" +dependencies = [ + "base64 0.22.1", + "bs58", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.14.0", + "schemars 0.9.0", + "schemars 1.2.1", + "serde_core", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "serialize-to-javascript" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5" +dependencies = [ + "serde", + "serde_json", + "serialize-to-javascript-impl", +] + +[[package]] +name = "serialize-to-javascript-impl" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "servo_arc" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "simd-adler32" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" + +[[package]] +name = "simd_cesu8" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33" +dependencies = [ + "rustc_version", + "simdutf8", +] + +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + +[[package]] +name = "siphasher" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" + +[[package]] +name = "socket2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "softbuffer" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3" +dependencies = [ + "bytemuck", + "js-sys", + "ndk", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "objc2-quartz-core", + "raw-window-handle", + "redox_syscall", + "tracing", + "wasm-bindgen", + "web-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "soup3" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" +dependencies = [ + "futures-channel", + "gio", + "glib", + "libc", + "soup3-sys", +] + +[[package]] +name = "soup3-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "string_cache" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared", + "precomputed-hash", +] + +[[package]] +name = "string_cache_codegen" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2", + "quote", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "swift-rs" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" +dependencies = [ + "base64 0.21.7", + "serde", + "serde_json", +] + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "system-deps" +version = "6.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" +dependencies = [ + "cfg-expr", + "heck 0.5.0", + "pkg-config", + "toml 0.8.2", + "version-compare", +] + +[[package]] +name = "tao" +version = "0.35.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1c93047acf68669466a34690ac58cca7010bd1b201e1ec86f1fd0a75d3dd4a9" +dependencies = [ + "bitflags 2.13.0", + "block2", + "core-foundation", + "core-graphics", + "crossbeam-channel", + "dbus", + "dispatch2", + "dlopen2", + "dpi", + "gdkwayland-sys", + "gdkx11-sys", + "gtk", + "jni 0.21.1", + "libc", + "log", + "ndk", + "ndk-sys", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "objc2-ui-kit", + "once_cell", + "parking_lot", + "percent-encoding", + "raw-window-handle", + "tao-macros", + "unicode-segmentation", + "url", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "tao-macros" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "tar" +version = "0.4.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840" +dependencies = [ + "filetime", + "libc", + "xattr", +] + +[[package]] +name = "target-lexicon" +version = "0.12.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + +[[package]] +name = "tauri" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2616f96cb644bf2c5c456d9de4d5d5100e592d7424c74d8b55c5cb96e359e93" +dependencies = [ + "anyhow", + "bytes", + "cookie", + "dirs", + "dunce", + "embed_plist", + "getrandom 0.3.4", + "glob", + "gtk", + "heck 0.5.0", + "http", + "jni 0.21.1", + "libc", + "log", + "mime", + "muda", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "percent-encoding", + "plist", + "raw-window-handle", + "reqwest", + "serde", + "serde_json", + "serde_repr", + "serialize-to-javascript", + "swift-rs", + "tauri-build", + "tauri-macros", + "tauri-runtime", + "tauri-runtime-wry", + "tauri-utils", + "thiserror 2.0.18", + "tokio", + "tray-icon", + "url", + "webkit2gtk", + "webview2-com", + "window-vibrancy", + "windows", +] + +[[package]] +name = "tauri-build" +version = "2.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc9ce40b16101cb6ea63d3e221567affd1c3a9205f95d7bc574941a10636b632" +dependencies = [ + "anyhow", + "cargo_toml", + "dirs", + "glob", + "heck 0.5.0", + "json-patch", + "schemars 0.8.22", + "semver", + "serde", + "serde_json", + "tauri-utils", + "tauri-winres", + "walkdir", +] + +[[package]] +name = "tauri-codegen" +version = "2.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08279169ff42f8fc45a1dbc9dcae888893ba95288142e5880c59b93a26d2cfc5" +dependencies = [ + "base64 0.22.1", + "brotli", + "ico", + "json-patch", + "plist", + "png 0.17.16", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", + "syn 2.0.118", + "tauri-utils", + "thiserror 2.0.18", + "time", + "url", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-macros" +version = "2.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8b394794f399a421811d06966343e7933fcae92d59f5180b9388d1174497a45" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.118", + "tauri-codegen", + "tauri-utils", +] + +[[package]] +name = "tauri-plugin" +version = "2.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74be5dd4bed9afbd145e5716b5fa2ec28cbc29c34ffa61c258c9273d896c8020" +dependencies = [ + "anyhow", + "glob", + "plist", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri-utils", + "walkdir", +] + +[[package]] +name = "tauri-plugin-process" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d55511a7bf6cd70c8767b02c97bf8134fa434daf3926cfc1be0a0f94132d165a" +dependencies = [ + "tauri", + "tauri-plugin", +] + +[[package]] +name = "tauri-plugin-updater" +version = "2.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "806d9dac662c2e4594ff03c647a552f2c9bd544e7d0f683ec58f872f952ce4af" +dependencies = [ + "base64 0.22.1", + "dirs", + "flate2", + "futures-util", + "http", + "infer", + "log", + "minisign-verify", + "osakit", + "percent-encoding", + "reqwest", + "rustls", + "semver", + "serde", + "serde_json", + "tar", + "tauri", + "tauri-plugin", + "tempfile", + "thiserror 2.0.18", + "time", + "tokio", + "url", + "windows-sys 0.60.2", + "zip", +] + +[[package]] +name = "tauri-runtime" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0b4bc95aed361b0019067d189a1174a603d460d0f6c72606512d59fc9c12ec8" +dependencies = [ + "cookie", + "dpi", + "gtk", + "http", + "jni 0.21.1", + "objc2", + "objc2-ui-kit", + "objc2-web-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webview2-com", + "windows", +] + +[[package]] +name = "tauri-runtime-wry" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe41e015bf8fc4d6477ff4926a0ef769dc64ff34c7b0038b6f7cacae892acb5c" +dependencies = [ + "gtk", + "http", + "jni 0.21.1", + "log", + "objc2", + "objc2-app-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "softbuffer", + "tao", + "tauri-runtime", + "tauri-utils", + "url", + "webkit2gtk", + "webview2-com", + "windows", + "wry", +] + +[[package]] +name = "tauri-utils" +version = "2.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e176a18e67764923c4f1ce66f25ae4abe5f688384d5eb1a0fa6c77f3d90f887" +dependencies = [ + "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dom_query", + "dunce", + "glob", + "http", + "infer", + "json-patch", + "log", + "memchr", + "phf", + "plist", + "proc-macro2", + "quote", + "regex", + "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", + "thiserror 2.0.18", + "toml 1.1.2+spec-1.1.0", + "url", + "urlpattern", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-winres" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc65d45c68858bfe420dd29e834b5d15dbecf8a07a8a16cf4d532c7b1f69d4b6" +dependencies = [ + "dunce", + "embed-resource", + "toml 1.1.2+spec-1.1.0", +] + +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.4.3", + "once_cell", + "rustix", + "windows-sys 0.61.2", +] + +[[package]] +name = "tendril" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24" +dependencies = [ + "new_debug_unreachable", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "time" +version = "0.3.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469" +dependencies = [ + "deranged", + "num-conv", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" + +[[package]] +name = "time-macros" +version = "0.2.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71c652a3727a9cbb9a02f707f530b618ce00d0ccd762009c8c23bd191df3c17d" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.52.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "socket2", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" +dependencies = [ + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "toml" +version = "0.9.12+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" +dependencies = [ + "indexmap 2.14.0", + "serde_core", + "serde_spanned 1.1.1", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 0.7.15", +] + +[[package]] +name = "toml" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee" +dependencies = [ + "indexmap 2.14.0", + "serde_core", + "serde_spanned 1.1.1", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 1.0.3", +] + +[[package]] +name = "toml_datetime" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_datetime" +version = "0.7.5+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.14.0", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +dependencies = [ + "indexmap 2.14.0", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.25.12+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7" +dependencies = [ + "indexmap 2.14.0", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "winnow 1.0.3", +] + +[[package]] +name = "toml_parser" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" +dependencies = [ + "winnow 1.0.3", +] + +[[package]] +name = "toml_writer" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db" + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags 2.13.0", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tray-icon" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65ba1e5f6b9ef9fd87e21b9c6f351554dbd717960089168fcfdef854686961dc" +dependencies = [ + "crossbeam-channel", + "dirs", + "libappindicator", + "muda", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "once_cell", + "png 0.18.1", + "serde", + "thiserror 2.0.18", + "windows-sys 0.61.2", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + +[[package]] +name = "typenum" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" + +[[package]] +name = "unic-char-property" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" +dependencies = [ + "unic-char-range", +] + +[[package]] +name = "unic-char-range" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" + +[[package]] +name = "unic-common" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" + +[[package]] +name = "unic-ucd-ident" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" +dependencies = [ + "unic-char-property", + "unic-char-range", + "unic-ucd-version", +] + +[[package]] +name = "unic-ucd-version" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" +dependencies = [ + "unic-common", +] + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-segmentation" +version = "1.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", + "serde_derive", +] + +[[package]] +name = "urlpattern" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" +dependencies = [ + "regex", + "serde", + "unic-ucd-ident", + "url", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.23.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7" +dependencies = [ + "getrandom 0.4.3", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "version-compare" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "vswhom" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" +dependencies = [ + "libc", + "vswhom-sys", +] + +[[package]] +name = "vswhom-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.4+wasi-0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.118", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-streams" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web_atoms" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "075474b12bcb3d2e3d4546580e9de478eeeead668a1761e2a8860c836b7ef297" +dependencies = [ + "phf", + "phf_codegen", + "string_cache", + "string_cache_codegen", +] + +[[package]] +name = "webkit2gtk" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793" +dependencies = [ + "bitflags 1.3.2", + "cairo-rs", + "gdk", + "gdk-sys", + "gio", + "gio-sys", + "glib", + "glib-sys", + "gobject-sys", + "gtk", + "gtk-sys", + "javascriptcore-rs", + "libc", + "once_cell", + "soup3", + "webkit2gtk-sys", +] + +[[package]] +name = "webkit2gtk-sys" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5" +dependencies = [ + "bitflags 1.3.2", + "cairo-sys-rs", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "gtk-sys", + "javascriptcore-rs-sys", + "libc", + "pkg-config", + "soup3-sys", + "system-deps", +] + +[[package]] +name = "webpki-root-certs" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "webview2-com" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a" +dependencies = [ + "webview2-com-macros", + "webview2-com-sys", + "windows", + "windows-core 0.61.2", + "windows-implement", + "windows-interface", +] + +[[package]] +name = "webview2-com-macros" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "webview2-com-sys" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c" +dependencies = [ + "thiserror 2.0.18", + "windows", + "windows-core 0.61.2", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "window-vibrancy" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" +dependencies = [ + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "raw-window-handle", + "windows-sys 0.59.0", + "windows-version", +] + +[[package]] +name = "windows" +version = "0.61.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +dependencies = [ + "windows-collections", + "windows-core 0.61.2", + "windows-future", + "windows-link 0.1.3", + "windows-numerics", +] + +[[package]] +name = "windows-collections" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" +dependencies = [ + "windows-core 0.61.2", +] + +[[package]] +name = "windows-core" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", +] + +[[package]] +name = "windows-future" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "windows-link" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-numerics" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", +] + +[[package]] +name = "windows-result" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-strings" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows-threading" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-version" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.7.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" + +[[package]] +name = "winnow" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" +dependencies = [ + "cfg-if", + "windows-sys 0.59.0", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "wry" +version = "0.55.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "186f9871daa55fd9c016578b810d149de58367113db7fb72b462d2323ce19514" +dependencies = [ + "base64 0.22.1", + "block2", + "cookie", + "crossbeam-channel", + "dirs", + "dom_query", + "dpi", + "dunce", + "gdkx11", + "gtk", + "http", + "javascriptcore-rs", + "jni 0.21.1", + "libc", + "ndk", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "sha2", + "soup3", + "tao-macros", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webkit2gtk-sys", + "webview2-com", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "x11" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "x11-dl" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" +dependencies = [ + "libc", + "once_cell", + "pkg-config", +] + +[[package]] +name = "xattr" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" +dependencies = [ + "libc", + "rustix", +] + +[[package]] +name = "yoke" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", + "synstructure", +] + +[[package]] +name = "zerofrom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.118", +] + +[[package]] +name = "zip" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1" +dependencies = [ + "arbitrary", + "crc32fast", + "indexmap 2.14.0", + "memchr", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml new file mode 100644 index 0000000..ad8145a --- /dev/null +++ b/apps/desktop/src-tauri/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "parking-desktop" +version = "0.0.0" +description = "Parking System — desktop kiosk shell" +edition = "2021" +rust-version = "1.77" + +# Thin Tauri v2 shell. Deliberately holds NO business logic — it loads the +# @parking/web SPA and lets it talk to the local Fastify server. Device/auth/ +# ledger stay server-side. See wiki/decisions/desktop-shell-tauri.md. + +[lib] +name = "parking_desktop_lib" +crate-type = ["staticlib", "cdylib", "rlib"] + +[build-dependencies] +tauri-build = { version = "2", features = [] } + +[dependencies] +tauri = { version = "2", features = [] } +serde_json = "1" +# Auto-update: prompt the operator, download a signed update, relaunch. +tauri-plugin-updater = "2" +tauri-plugin-process = "2" + +[features] +# Used by `tauri dev`/CLI for hot-reload of the Rust side. +custom-protocol = ["tauri/custom-protocol"] diff --git a/apps/desktop/src-tauri/build.rs b/apps/desktop/src-tauri/build.rs new file mode 100644 index 0000000..d860e1e --- /dev/null +++ b/apps/desktop/src-tauri/build.rs @@ -0,0 +1,3 @@ +fn main() { + tauri_build::build() +} diff --git a/apps/desktop/src-tauri/capabilities/default.json b/apps/desktop/src-tauri/capabilities/default.json new file mode 100644 index 0000000..afb8be5 --- /dev/null +++ b/apps/desktop/src-tauri/capabilities/default.json @@ -0,0 +1,11 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Minimal capability set for the kiosk shell. The window only needs to render the SPA; it is granted NOTHING that touches the filesystem, shell, or devices — those stay server-side. Add a named permission here only when a concrete need arises (deny-by-default). See wiki/decisions/desktop-shell-tauri.md.", + "windows": ["main"], + "permissions": [ + "core:default", + "updater:default", + "process:default" + ] +} diff --git a/apps/desktop/src-tauri/icons/128x128.png b/apps/desktop/src-tauri/icons/128x128.png new file mode 100644 index 0000000000000000000000000000000000000000..1b335cfbf1084af01f865749a4f1f20b387d7069 GIT binary patch literal 953 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7xzrU~ceqaSW-r^>*&YJYhqLhWhw9 z)7Yj4s0i?^DS5~!5m6z)c5I(O56>PhX8r>~VQeZBG`2KNdUEdAzxPZ|Zwr=NUHMo$ zzr=HyhGqS?yMO=vy?ySPvA#i+&TiF^ zsyD1w&sxpevA;g5RIPyXMeX&DM9bdA^gHcO)*{vQH%ll`Q9j-gyUGG+7p|X|bVP{IwWifLu5oL!rbH63H z+wHfU=D)u0Yw;?%)%R`ZpIUs~|LfiB`y>Rrq!@i(EG=YN;V*v6!IP!q{^p|pEM*dm zM*Dsnf0R?W!y+NQj`5hPw!Ifi4$?$;NE%biMI z`Au!tJ_n(v8ta0udPlEM@Seri_nBdP6T|lTcdxs7Pw&V!iQZ`$tvZQ|(ac=7CT@GT z!I_G%?+OP}ITa5iD*%H62zxvl=45eiS$NXSw3kWn|H^F#=3P|?xMgub^j3WEWtG}# zMockpes28ef4_F(=7J^NEOEKDT`!qJ3`6gxXgFGCKJ?piG5K+Q&Cj?scRh{7C#VFP zuG73RKdYxn(7{Zc^~#Le2?}QazWC`eJ=wcz#fDPGOQO?X^euZ(634b>`!E7?6vCD!#f%bu^lchz$D+(SKLi3eKNiat1huU?&d<$m32 z?gd*JcFlD@TPn_eOX*CG-RGO4Rkzk|G5WsX)0=&|M?|te?r7ECwC%rz9^>o3_4Q_l zr8llUH7!+Fj%7k4>wNW@xw8EX*FR`593dmYKM<;8POjxUcWx&SD3daHy85}Sb4q9e E0DW6x=>Px# literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/128x128@2x.png b/apps/desktop/src-tauri/icons/128x128@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..1fdc764c5ed3c38d88aea821a16cfd98728324f7 GIT binary patch literal 1262 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|GzJEit)4E9Ar-gY-gPXxWx(JN z$Z6eekXzgvw@CaXWA(%srRN?-hYv}FZkoGovg>8Z9G%0}+zYggj{TaHsI~ofdo9-i z-z-@s0R{(O-^UhdCI`<-kn-W={sG_SKut7VM% zBHmzOEAd~n_y3QFpB+&G10!5GzU}1x<}bpaXFBcH+g`QZYMczlXaA*kul}-+KXFyf zHUG!!Y6w766f#UbN{Yb*&bcv`kPj{H|!1HFP@PzUyWgo;eu0K z3jF{6EtUShcXchRLGIjnF^n7xpLtd#K0DuRZ?^l@dd47&-um^C@eDIQiZ__phS>hQ z+`eBN!&SKAuc3gqn(1F<-{Wo3q4^0j?nt;Wa2UViw78R^{C-=s*_}0Y{s%sle>*v^ zf$4xwvex+}sq_Cn{Mz=8TVO2%OT*`|%c%xat=~+Uos;wNoWo%+2M(YhTjq(LO^Y?bi9D#;xi65!Y^qc?x{FrI6bNdF(7g^Ii zQu&Ymsj-qd{#b>DsX+93StR3=gZKBB95%Y%`S+(61LKZWZx6IhuG(?z?oPH3tt%Ps zJmH+Xj9uLVpWARc9Mdbrh+qo>OnuT*|J9x2*VOyp_Wu1unL3t)*h-yaYW7T(zx!j?{xefz*y=0Kr?4IfdVb?y;`=YZ&Wj#+w~yD* z&-)X14C9pV8qNPpEOzl6;7WM=p5fQ^yt&^@)-eh+d=+QRjrq>)A<)28$B8Sc5MK%q go%*mC`5FVdQ&MBb@0OF{EEC2ui literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/32x32.png b/apps/desktop/src-tauri/icons/32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..6434ad4a437765eb3f981b828d7135a1bf327d91 GIT binary patch literal 552 zcmV+@0@wYCP)>NhFY{qNEK~l!71NGx8VthA0)El0H>R3OW!S6p27c5y9AS!FRhm znb~s`NWh$h?+}q!TFJ7keQ)N?d%L#jQp$M1W%0mkM&OYUAOmA2JD7E}15bf~0EY{Q zkb5CvDuOfUNfI~sJ_H0X3_YH1tRj8gMY!~l&~1k*L6)j%KEYt?JNmL|-j40WSOSIw zOF+9qVCCH_xF16x5jkZ4qlr|_UVvoV=WTrZu!G*0V1s2zr@pAJm{Gf=x1J!6lcb20N zIaF&c()S&l0ymWdWC_$Nw|2nHQIw!D0xv$k0q6eDAnN3c{vmUv|8*F-MgpC+u2f8; zv?=YX4&Wky)CJGlaXy&29s(zyzQXm3axnkOjo6KjMYh`m%_U%-HUT;CaB~mY!I{j$ zEg_?})Fe!kJL7nA0_w)a7Hp?IirSk2H~^?if~dC-0z#E8oY{NeKOi7FvkNg`n42ab zfa>d(T(QyjdNGk{hJad0{oMO}g#0jzj}x__JI${r;XRhQ^N)#!TjsAl$!Nir-QWf# qNEYms&hS*gCmX_94$KJDw0;5icF&~#05@|00000At51AqBezY)}DGM ziz=$!)wXe*&2}uUlxz~M=NtQ<@z}BBoiV{ZZWiu&QveD;0Vn_kpa2wr0#E=7AV$MP zy{0|_2%Vyml0d)=dj^2*wg}ly9@RTd&vLVQwC5}h01bjWpTqW>$MF2~Yj78(+*^g= z47vPWz}L5jP)-YZzbuF-BY>*T+1&?#qYQ9G(*UiBt~EBA_^}4eDO?_)ZUoRRT!qcQ z7oF*46u`xWSnnb69(GW09@T*%c&ZOExQTf{=(IbVcZ(AIl`xIWL$i88O#&cz(u^&9 z`}76Qj($S+C=VW{#_+}>xA$Qm_TKNy>zE;Lt(l-dFQGgwWE8Xlm|lYa<3c1ES}Gij z<47T)%Qq!BCKzrcj1moXEkG?o$X3%(7eiQux3(mSKf{D;ij+}+{(5jl$PzEGRRf$a zC6_?NfdJt7eCgro$CvQr-HU~)QwyjdlA~u6$@f>1Qm5yCBE=L z;Yu+T(uKjWND^i5k_i3Nf?k}W$bjVK z?&Jp~WMecGEHF3!Z|)Mx{g_3J-T}a>P{CVYHxEeg%8#o!{5fL(0AQ3qOjHLX%*57v znJc}aij(RL(OM2j$O!mV)Eh|E!6qEC2v!=9;%Hlc!ysuMpa2wr0#E=7KmjNK1)u;F bz=pIdIxGGVEv8$!00000NkvXXu0mjfu^dT1 literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/Square107x107Logo.png b/apps/desktop/src-tauri/icons/Square107x107Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..da109f666272994e871c8807d148e48d8f99e203 GIT binary patch literal 891 zcmeAS@N?(olHy`uVBq!ia0vp^*&xip1|$pi*YGefFgtm=IEGZ*dOK%hp0J@rL;Y_( z-yKX#MLj$^nvO7W_Xl)#&h1oBOnS^(!5DV0Wg|B;GY>~wlYm0ht!19?-W~tedT5Ht zb(3>X_xW3yItQ!%%liHQ?R~$^y*{i`j$XnF+!I=L9K;m3BO8F!CI%pt!U&{JFafCv ztUyXJd*TeXt<$zePW%7q)&eh!zfpQUXX&;j>6QBLPA`j&eR(%>`k(Oh%GBQW ztl3MGcAM=no49QKio*-!!%jI0%1yqp^lezwuZs&f>~CAA|K$ArCGy_MQxf)k$Nu*` ziF^WdqkXf8)pmvB?n_VX(ujGyEZn+yruONH+Id*++fKlOB~ zuEhBiyw~>UIw==3`L+KxXBDaH)TE;+JMXA@#(c7ww0^za4uPoE9-H{|=4*dim}9$3 z*L>bR(YL?1G|n@PFQ)rZRS+0e)&o1s@C~c!GZ}j^Gvl4aUCZ+*FYSkK~R|MI@iXSV!VV)8exd~Hha zzAw?br&FXOw`@ErzmRkJ)6%x=-Nj4OkM6vF*SyB^@zHHO%^&^R&lH{W>SSwOErez( e)+FqGT)rUWhlJLTSz*9T#o+1c=d#Wzp$P!UpPOR< literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/Square142x142Logo.png b/apps/desktop/src-tauri/icons/Square142x142Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..81f0131963657b7b431437a85243ed960f5a8a51 GIT binary patch literal 1016 zcmeAS@N?(olHy`uVBq!ia0vp^eIU%i1|*;VHQ-=iVBYWP;uunK>+Rj$MR!7E4m{ki zmp!}mz~qGu42KQw%;M2^bUn*_;UmW$7F%9_CwEt8Zr162j6xb7Z#reoc3*nvv3tp} zZAadC-Ot}6tZw}6$ffkmrJJAU?6rwrHep?4t}us8qjCXDA4}f>K?^4L2ObXy3J5m` zKj~jIRC?}QO}%HA|9UO?(=3`Q_>^1JV*9-XmCk1V*9yNq z+*|Q(wikRpKqH!+heu~ zx6N0X3nK2RHh(@XulV)Zb&C4c56qoE-Ga^MeS5Y1{n3xn;I(9+4DPSOTGDI`Lpw{u3Tkj`Rc#SQy&}= zc`sA`*!^tQ<^5k2dkw>;?yt`(XP#&Hm+{lf!!H*+x%kT5Znyk*y?gi1P4jrnlR0P4 zT=!$?1_vx>EBl$7mHs+-w~p&n#9`0Bf7UNQTPAbnb>Xt$>aCKs_kM~jSKqzrly#}y zZc#|2`zjQ$_{ltI*)#jTw#VPQZyeueG#g*gX}|nY{mET6znyCqR~0gzi}O8k`t@tu zACKC1{Q6j9t*HO@VN_mamhbjgHx}M;nRC2lkIj{We`n`cI^8?GLcII0t!j$N)lA-V zb-pK7AD=zJ{K0?Y$mbT%j1|v^PQ^%OASZwVLkN`kK=B4njhF(R8?T4e?3;Csci)cq z&-yoSZf?4~P*XfLB;DP%Ay4td>$=*h)0=v$_IzK(l+G_6tRwEarfz?id;DLqvy;DW zonHL*p=|iZ$}el;pU;?^s5LG9^p^MB_RC78bL*;)JYsv_74fHAeSQ9)n#P>74=nw* zA1Jj8z3P5d*S~V!^E2;PX}vAm1CKFK*ukRkxS9aO;hc~VJunfh4CoWEKuN=2<~R-s UZut|kj~IZ!)78&qol`;+0Cm*jm;e9( literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/Square150x150Logo.png b/apps/desktop/src-tauri/icons/Square150x150Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..864253b0e46653aa4aa48200cd82c4e6e05f54c2 GIT binary patch literal 997 zcmeAS@N?(olHy`uVBq!ia0vp^(?FPm4M^HB7CvHNU|!?t;uunK>+RjMdD5X04G-U+ z>7Tq~OJ~%C6-QQSCvbC@iHaY-y5OGE(M{HRExOz)6DHi!^Xm2zoU)|z?ZY{e-mbCB z+Bhb;= z>Fc+h((AsswB*P7nAWfJr+@Ih7klx_|HFCP_w0XLq`W55C3Jbj-$Kc7{rg|!`>Wz} zMZ0&aAF}$f?$fJSw|5b$x~1)HO0s1(fH0 zm>Bl+zuafvyhPtOFWO{6E1N5}?&_(KydAtc>3F){^WQg~{I1w45O(HC$XB7O?D2Ox z{rCOcWB+mM?VjSAc*~nxcJ7t9*Z-!a^u{T#qJ4eQ@wFo9@%4LbyG(kkW}N%AUR(QG z4Bt%6^x*aJ>yO#iq}|S$^|I`mO}yx|-q)wJ&5D?W5Y7*)*oTg`|JPjnC}#GKd1fW>C3V^r9$nv9zQyH-*Q9Q zdbf$@#W8E|+0@F`|NEdb>+#~mU!S%-|LL~%gm%t8$vkOcyRCNiL80@6eCY|KHoHtX*f$Y@fPVD}0Xq|CgcjD&zRI!*?BHW$_a){P`zo z$C7nZv-h-TSMGZA?d>a}-8)Xz?5xobTeCgzN)wJGkK_pKdE+R{AMW!?pJj6I${Yk{ OUj|QCKbLh*2~7ao>ezJv literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/Square284x284Logo.png b/apps/desktop/src-tauri/icons/Square284x284Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..cd856f5e5bf816afee269c20c5046d6677688370 GIT binary patch literal 1583 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 Y^V)B3k3I-V2c}{MPgg&ebxsLQ0L*P;%>V!Z literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/Square89x89Logo.png b/apps/desktop/src-tauri/icons/Square89x89Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..2cdfaa85ea199fe900ea8d2bf7ce374a1210ddb2 GIT binary patch literal 838 zcmeAS@N?(olHy`uVBq!ia0vp^ks!>$1|&ndJJvHWF!Or4IEGZ*dOOEITi8+J*!*&% zmu4^JR|kDa;9n&Eb=^Fc{WIeiy8G|_WouI{AmWn0=z`M9`r9Ta)8f+0!Zn&a%M;7h zXFqRjoxrx~^Xu8^^Jdru$a?7%!Fty#MPIp{ zZW*3+mgs{d?J_HpMp4qw^I0+8urKnsrI|f7_e89wx1u zu%vx=d;bI(o`-7d?q+@ap1fY&!tPgx|M~kru1jCoS$1TyX?gcHZOhG%*#26aFgd;> zV@B5Nx;r;Z6zgrBqTc;%vD~>qbnUrA92OFhVry&G7%4`D{)tVOT^;NcHzjuY@#Hgp z$8NsX`nI<+T{|jY*i%?~d*T$-Va`KfNy}uvANu_xb&+^IEm7GcHbRHdt=OIdekv z#?A-p6QwSBS?cqb$y{Qw-luAL)0yk@xlAiozrWQhr@b<8wpv;3mb+B(_Z2qtdCAW| z+VR~voa3-Cm0jfDb&uj@suF0YujYtiYG zd2^ELriHbssBPMMMB{R6y9!&vt_5K-o4zNNe)V0K{!%$6ueZ3!Lo{vk^!0}qE^ECa z&3PuQ_r9QRO8mjJjE|46a@PIQ?k*^G_#i6tuQNS=zo=p1+GmqLANyZtduaON?;FaL z|3_XoS(^1HnJeu=c1q&)V>_?z)#Xo1Pth$zX9z(MVYang|4q z&>7(L(V9`VB>x9Im6EnZf zi!G|o{#hyhP^Rl5%jV0T%FhEzxQ)8r?l|q2cd~40n{Cadl|^}H^bR>|hrha@bhmrE oQhQekzg#hPtD$Lh{fvJM`7apyw2t>C0rLlgr>mdKI;Vst0DISnZ~y=R literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/StoreLogo.png b/apps/desktop/src-tauri/icons/StoreLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..bb26cf930e8a2621dd842f541ec3ffedf38215e8 GIT binary patch literal 706 zcmV;z0zLhSP)W~#AufP~kT~-pap5I+G1Q0PB>?dVPyq)H2ytjRCD5e#@UDlM zwWH9cQR~DpPPMD}BT9TEVE4&w zJb3*SuAlH!u0cYxFa^H8`hek4530>(5mloRN>aE}>t}EVB4cXVU1W`)W zi(RoLUhF!*=Cd2MHB>8F9vb}B^vwE@RO&ojJ<_j8CDs^z`Hi#BedwmnymLVZDSPtP z^L@m3+TN=(eW|+C5eW;!vE6@rjGu=`Xf)!*bSnC?2_7E4KYYQRTB6&CYVLvO0ms%w8(!xlvnKsvIpb_(=xsYjff=Gsv81o1*1J9M7y z#sLW6^WedY`jj(^F z-e6jmrXwtd7NKxkvN;f65DjN8ef^|F^Gp@E$d4GcbyJHVjq~#C~PJfL! zHS3j9b9n`k|64aB3_ta7^5$Ds5N$Do^sa$2YNZg{SV1)1xbQ;Bdywj~)D_n-0Odzm zvj>m>5Bd{Y3`zq$yR~Vwc6CbSF(FT)zhfLPj#1V znaYJX6(&E17=J&_yVyE|`~xE^!gH%UX&U3md!_0SGb?Y#@$8#sWBynnzpm54{-3Nx osI~!EUpO!c3+q)ps{jB107*qoM6N<$f+_ew=>Px# literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/icon.icns b/apps/desktop/src-tauri/icons/icon.icns new file mode 100644 index 0000000000000000000000000000000000000000..b1de9f986e8712d361bc4dc04d29067ebec36044 GIT binary patch literal 19162 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 XDSNqMz;{89hPz`O7eLDY{H6XE+Y@Qv literal 0 HcmV?d00001 diff --git a/apps/desktop/src-tauri/icons/icon.png b/apps/desktop/src-tauri/icons/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e99d006d9b275330ca736000c5de9fe71dbc3a36 GIT binary patch literal 1857 zcmeAS@N?(olHy`uVBq!ia0y~yU;;9k7&zE~)R&4YzZe+UIXqn)Ln>~)z2V4vK!Jh9 zan^@N%_2Mr3`ZpnFm$cxSZ1=sSm@o>oimD}7#V&{&0t~>U|?tfYG+|!PykYl3=A9$ z3=TjR&}jTpBr0zJnhCMQ0mvd~IzlLmp<2RpfQ8g>K^Wk`K!!)RX)cyz zl$*6xnh~3$858IoV|!Ar<+bph%5X!(12oJPfZoIAMuJJnfnf$LEs$XVq4as65ad{b zj)2;XKaDp4y@2ysHS5JHVy`12EwWo7_i4PS#b{v z_JQyyg9FePq+2Y&poZP^kT7p}AEUWEm5t#8nTC&sJ_EjpAv<$A>|jhx6L#v=|Mm(path: string, init: RequestInit = {}): Promise const csrf = readCookie(CSRF_COOKIE); if (csrf) headers.set(CSRF_HEADER, csrf); } - const res = await fetch(path, { ...init, headers, credentials: "include" }); + const res = await fetch(apiUrl(path), { ...init, headers, credentials: "include" }); if (!res.ok) { const msg = (await res.json().catch(() => ({}))) as { error?: string; problems?: string[] }; const error = msg.error ?? `${path}: ${res.status}`; diff --git a/apps/web/src/lib/desktop-updater.ts b/apps/web/src/lib/desktop-updater.ts new file mode 100644 index 0000000..f738795 --- /dev/null +++ b/apps/web/src/lib/desktop-updater.ts @@ -0,0 +1,51 @@ +// Desktop auto-update — prompt-on-update flow. +// +// Runs ONLY inside the Tauri desktop shell; a plain browser has no updater, so +// this is a guarded no-op there. On launch it checks the configured update +// endpoint (tauri.conf.json → plugins.updater); if a signed newer version is +// available it asks the operator, then downloads + installs and relaunches. +// +// The plugins are imported dynamically so the browser build never bundles them +// and never tries to resolve the Tauri APIs. Offline-first: a failed check (no +// network — the appliance is usually offline) is swallowed; updates only happen +// when someone has brought the box online (e.g. a phone hotspot) on purpose. + +/** True when running inside the Tauri webview (not a normal browser). */ +function inTauri(): boolean { + return typeof window !== "undefined" && "__TAURI_INTERNALS__" in window; +} + +export interface UpdatePrompt { + /** Newer version string offered by the server. */ + version: string; + /** Release notes, if the server provided them. */ + notes?: string; +} + +/** + * Check for an update. If one is available, calls `confirm` (your UI) with the + * version/notes; when it resolves true, downloads + installs and relaunches. + * No-op (resolves silently) in the browser or when no update / offline. + */ +export async function checkForDesktopUpdate( + confirm: (info: UpdatePrompt) => Promise, +): Promise { + if (!inTauri()) return; + try { + const { check } = await import("@tauri-apps/plugin-updater"); + const update = await check(); + if (!update) return; // up to date + + const accepted = await confirm({ version: update.version, notes: update.body }); + if (!accepted) return; + + // Download + install the signed update (signature verified against the + // pubkey in tauri.conf.json), then relaunch into the new version. + await update.downloadAndInstall(); + const { relaunch } = await import("@tauri-apps/plugin-process"); + await relaunch(); + } catch { + // Offline / endpoint unreachable / no update server yet → ignore. The app + // keeps running on the current version; checking again next launch. + } +} diff --git a/apps/web/src/lib/i18n/en.ts b/apps/web/src/lib/i18n/en.ts index c78adcc..943f414 100644 --- a/apps/web/src/lib/i18n/en.ts +++ b/apps/web/src/lib/i18n/en.ts @@ -38,6 +38,10 @@ export const en: Catalog = { signIn: "Sign in", signingIn: "Signing in…", }, + update: { + available: "Update available", + prompt: "Version {{version}} is available. Install now and restart?", + }, nav: { booth: "Booth", shift: "Shift", diff --git a/apps/web/src/lib/i18n/sq.ts b/apps/web/src/lib/i18n/sq.ts index 7cfdead..244e34c 100644 --- a/apps/web/src/lib/i18n/sq.ts +++ b/apps/web/src/lib/i18n/sq.ts @@ -40,6 +40,10 @@ export const sq = { signIn: "Hyr", signingIn: "Duke hyrë…", }, + update: { + available: "Përditësim i disponueshëm", + prompt: "Versioni {{version}} është i disponueshëm. Ta instaloj tani dhe ta rinis?", + }, nav: { booth: "Kabina", shift: "Turni", diff --git a/apps/web/src/lib/kiosk.ts b/apps/web/src/lib/kiosk.ts new file mode 100644 index 0000000..ef36a74 --- /dev/null +++ b/apps/web/src/lib/kiosk.ts @@ -0,0 +1,16 @@ +// Kiosk affordances for the operator console. +// +// We do NOT lock the operator out of the OS (that's a deliberate decision — +// the desktop window starts maximized, not fullscreen). The one restriction is +// blocking the right-click context menu in PRODUCTION builds, so an operator +// can't reach "Inspect"/"Reload"/"Save as" on the live appliance. In DEV the +// context menu (and devtools) stay available for debugging. +// +// Applies to both the browser prod build and the Tauri desktop build, since both +// load this same SPA. import.meta.env.PROD is true for `vite build`, false for +// `vite` dev. + +export function installKioskGuards(): void { + if (!import.meta.env.PROD) return; // dev: keep right-click + devtools + window.addEventListener("contextmenu", (e) => e.preventDefault()); +} diff --git a/apps/web/src/lib/origin.ts b/apps/web/src/lib/origin.ts new file mode 100644 index 0000000..fd053ca --- /dev/null +++ b/apps/web/src/lib/origin.ts @@ -0,0 +1,30 @@ +// Where the SPA reaches the Fastify backend. +// +// In a browser (dev via the Vite proxy, or prod where Fastify serves the built +// SPA) this is EMPTY — requests stay relative (`/api/...`) and same-origin, so +// nothing changes. The Tauri desktop shell (apps/desktop) serves the bundled +// SPA from `tauri://localhost`, which has no backend and no proxy; there we set +// VITE_API_BASE to the appliance's Fastify origin (e.g. http://127.0.0.1:3000) +// at build time so /api and the live WS feed resolve to the real server. +// +// Keep this the SINGLE source for the backend origin — api.ts and the live-feed +// WebSocket both read it, so the web app and the desktop shell stay identical +// except for this one build-time value. + +/** Backend HTTP origin, no trailing slash. Empty string = same-origin/relative. */ +export const API_BASE: string = (import.meta.env.VITE_API_BASE ?? "").replace(/\/$/, ""); + +/** Resolve an API path to a full URL (or a relative path when API_BASE is empty). */ +export function apiUrl(path: string): string { + return API_BASE ? `${API_BASE}${path}` : path; +} + +/** Build the ws:// or wss:// URL for the backend's live feed. Uses API_BASE when + * set (Tauri), else the page origin (browser). */ +export function wsUrl(path: string): string { + if (API_BASE) { + return `${API_BASE.replace(/^http/, "ws")}${path}`; + } + const proto = window.location.protocol === "https:" ? "wss:" : "ws:"; + return `${proto}//${window.location.host}${path}`; +} diff --git a/apps/web/src/lib/use-live-feed.ts b/apps/web/src/lib/use-live-feed.ts index a39ad1f..c517766 100644 --- a/apps/web/src/lib/use-live-feed.ts +++ b/apps/web/src/lib/use-live-feed.ts @@ -3,6 +3,7 @@ import { useQueryClient } from "@tanstack/react-query"; import type { DeviceStatus, LedgerEvent, Occupancy } from "../api.js"; import { qk } from "./query.js"; import { useLiveStore } from "./live-store.js"; +import { wsUrl } from "./origin.js"; // Booth WebSocket client. Opens ONE socket to /api/ws and turns server pushes into // (a) live-store updates for the ticker/occupancy and (b) Query cache invalidations @@ -18,11 +19,6 @@ type WsMessage = | { kind: "printer-status"; event: unknown } | { kind: "device-status"; event: DeviceStatus }; -/** Build the ws:// or wss:// URL for the same origin the SPA is served from. */ -function wsUrl(): string { - const proto = window.location.protocol === "https:" ? "wss:" : "ws:"; - return `${proto}//${window.location.host}/api/ws`; -} export function useLiveFeed(): void { const qc = useQueryClient(); @@ -39,7 +35,7 @@ export function useLiveFeed(): void { const connect = () => { if (closedRef.current) return; setStatus(retryRef.current === 0 ? "connecting" : "connecting"); - const sock = new WebSocket(wsUrl()); + const sock = new WebSocket(wsUrl("/api/ws")); sockRef.current = sock; sock.onopen = () => { diff --git a/apps/web/src/main.tsx b/apps/web/src/main.tsx index d7113a8..36fd28a 100644 --- a/apps/web/src/main.tsx +++ b/apps/web/src/main.tsx @@ -5,11 +5,23 @@ import "./lib/i18n/index.js"; // initialize i18next before the app renders import { App } from "./App.js"; import { ErrorBoundary } from "./lib/ErrorBoundary.js"; import { installClientLogging } from "./lib/logger.js"; +import { installKioskGuards } from "./lib/kiosk.js"; +import { checkForDesktopUpdate } from "./lib/desktop-updater.js"; +import i18n from "./lib/i18n/index.js"; // Capture uncaught errors / rejections / console noise → backend log store, before // the app mounts so even an early crash is reported. See lib/logger.ts. installClientLogging(); +// Block the right-click context menu in prod builds (dev keeps it + devtools). +installKioskGuards(); + +// Desktop only: check for a signed update on launch and, if one exists, ask the +// operator before installing + relaunching. No-op in the browser / when offline. +void checkForDesktopUpdate(({ version }) => + Promise.resolve(window.confirm(i18n.t("update.prompt", { version }))), +); + const rootEl = document.getElementById("root"); if (!rootEl) throw new Error("root element not found"); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 326f692..22ade16 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,6 +18,19 @@ importers: specifier: 6.0.3 version: 6.0.3 + apps/desktop: + dependencies: + '@tauri-apps/plugin-process': + specifier: ^2.3.1 + version: 2.3.1 + '@tauri-apps/plugin-updater': + specifier: ^2.10.1 + version: 2.10.1 + devDependencies: + '@tauri-apps/cli': + specifier: ^2.9.1 + version: 2.11.3 + apps/server: dependencies: '@fastify/cookie': @@ -89,6 +102,12 @@ importers: '@tanstack/react-router': specifier: ^1.170.16 version: 1.170.16(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@tauri-apps/plugin-process': + specifier: ^2.3.1 + version: 2.3.1 + '@tauri-apps/plugin-updater': + specifier: ^2.10.1 + version: 2.10.1 i18next: specifier: ^26.3.1 version: 26.3.1(typescript@6.0.3) @@ -1261,6 +1280,86 @@ packages: '@tanstack/store@0.9.3': resolution: {integrity: sha512-8reSzl/qGWGGVKhBoxXPMWzATSbZLZFWhwBAFO9NAyp0TxzfBP0mIrGb8CP8KrQTmvzXlR/vFPPUrHTLBGyFyw==} + '@tauri-apps/api@2.11.1': + resolution: {integrity: sha512-M2FPuYND2m+wh5hfW9ZpSdxMPdEJovPBWwoHJmwUpysTYNHaOkVFN419m/K0LIgjb/7KU2vBgsUepJWugQCvAA==} + + '@tauri-apps/cli-darwin-arm64@2.11.3': + resolution: {integrity: sha512-BxpaM8bsCoXs3wd4WKYhas/G1gs7+r7B+e4WnyRk2GEoVOouJB1hoL6E6YLXZDXbYci6VFdrNnobQwd2uVL4ew==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@tauri-apps/cli-darwin-x64@2.11.3': + resolution: {integrity: sha512-DbZYuPB1ZEzcAHYeyCvo3ltzM27+aXwPloCrtexPnmgPgulYJm3TOq6aC4S+wPhSXteddg8zImtNkvx/gQzmwg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@tauri-apps/cli-linux-arm-gnueabihf@2.11.3': + resolution: {integrity: sha512-741NduqBmz1XkdU8yz3OI/kBZtqHbvxo9F9ytIeWYU69/Ba9dcZEbqOU++Dp0G/XU8vAI0TfTywEl+p+BbLvaA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@tauri-apps/cli-linux-arm64-gnu@2.11.3': + resolution: {integrity: sha512-RWAXT8pTqIczXcoic+LXlo6uEbAXGB0cgh6Pg7Y9xVnEbzryQ1JHtRGj9SxzrKSemBIDBH6Qc24kK2G69i8ofA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tauri-apps/cli-linux-arm64-musl@2.11.3': + resolution: {integrity: sha512-qomqYS+yAkd0gXMRmhguWXc7RfVN+XKKXaEwbf5QmKURwydLFOTldd6F8/WoZDSsBMrV8dpNxz0YneGLmobiSA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@tauri-apps/cli-linux-riscv64-gnu@2.11.3': + resolution: {integrity: sha512-jOCXbDqeDj5XcclsOBAaXjtTgwZCVg8zEZ+dbPUCoADOgljFgL0rOkYTc96vUYgOrYEfuHYihWMxIDGaD6GwJw==} + engines: {node: '>= 10'} + cpu: [riscv64] + os: [linux] + + '@tauri-apps/cli-linux-x64-gnu@2.11.3': + resolution: {integrity: sha512-+u3HO/F3gHwL48t9gWN/urqZvpaEJzBFmTaq5eSIhvy8TOvnhb+LgJr3Q3BG+5JxuBrCUjqtOEz6gMttdJFSBA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tauri-apps/cli-linux-x64-musl@2.11.3': + resolution: {integrity: sha512-spr5Jpr6KF/vehkLwJ0YmdGv8QwpWU+uw7J8bgijO0sox6ZCYsSNMbcsQjTqPi4xl+p0woIYpWXgChgHYpAc8g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@tauri-apps/cli-win32-arm64-msvc@2.11.3': + resolution: {integrity: sha512-abkoRQih5xBa3vz2spWaex0kP/MzVzVPQHom2f8jnCq46R/luOD6Uy85EMU9/bfzf6ZzdorWJsgO+OMX90Fx2w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@tauri-apps/cli-win32-ia32-msvc@2.11.3': + resolution: {integrity: sha512-Vy6AvzFm1G40hg3r+OYDB3jkuu7R4wnMzbQBKuun9v6Cgg8IierpLL7toMzrZKs/8NlG8Sg4x1iLFR52oknyHg==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@tauri-apps/cli-win32-x64-msvc@2.11.3': + resolution: {integrity: sha512-GlciF75GdbseajOyib2aCHwE3BXIqZ1liGKWLFRvCdN5wm8h8hFssEVKQ/6E+2jsMLg9v7LCTb983YFnn0QSww==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@tauri-apps/cli@2.11.3': + resolution: {integrity: sha512-EElQe8z8uD7Pi5++tJ/UfEwWuK08rd3oCDYdeIbJAb6pZRrxlqmoF5gh5H5YvzmUPhS4IRCaLSsQhvWkrfK+GQ==} + engines: {node: '>= 10'} + hasBin: true + + '@tauri-apps/plugin-process@2.3.1': + resolution: {integrity: sha512-nCa4fGVaDL/B9ai03VyPOjfAHRHSBz5v6F/ObsB73r/dA3MHHhZtldaDMIc0V/pnUw9ehzr2iEG+XkSEyC0JJA==} + + '@tauri-apps/plugin-updater@2.10.1': + resolution: {integrity: sha512-NFYMg+tWOZPJdzE/PpFj2qfqwAWwNS3kXrb1tm1gnBJ9mYzZ4WDRrwy8udzWoAnfGCHLuePNLY1WVCNHnh3eRA==} + '@turbo/darwin-64@2.9.18': resolution: {integrity: sha512-9f27peFu16ur8c0v9nUFUEyBnbKuuFsUTjHFWfmwGfzySBXbHwzU44QhZon6Mznz0cHsIr3984NQj/bVrnGSRw==} cpu: [x64] @@ -3167,6 +3266,63 @@ snapshots: '@tanstack/store@0.9.3': {} + '@tauri-apps/api@2.11.1': {} + + '@tauri-apps/cli-darwin-arm64@2.11.3': + optional: true + + '@tauri-apps/cli-darwin-x64@2.11.3': + optional: true + + '@tauri-apps/cli-linux-arm-gnueabihf@2.11.3': + optional: true + + '@tauri-apps/cli-linux-arm64-gnu@2.11.3': + optional: true + + '@tauri-apps/cli-linux-arm64-musl@2.11.3': + optional: true + + '@tauri-apps/cli-linux-riscv64-gnu@2.11.3': + optional: true + + '@tauri-apps/cli-linux-x64-gnu@2.11.3': + optional: true + + '@tauri-apps/cli-linux-x64-musl@2.11.3': + optional: true + + '@tauri-apps/cli-win32-arm64-msvc@2.11.3': + optional: true + + '@tauri-apps/cli-win32-ia32-msvc@2.11.3': + optional: true + + '@tauri-apps/cli-win32-x64-msvc@2.11.3': + optional: true + + '@tauri-apps/cli@2.11.3': + optionalDependencies: + '@tauri-apps/cli-darwin-arm64': 2.11.3 + '@tauri-apps/cli-darwin-x64': 2.11.3 + '@tauri-apps/cli-linux-arm-gnueabihf': 2.11.3 + '@tauri-apps/cli-linux-arm64-gnu': 2.11.3 + '@tauri-apps/cli-linux-arm64-musl': 2.11.3 + '@tauri-apps/cli-linux-riscv64-gnu': 2.11.3 + '@tauri-apps/cli-linux-x64-gnu': 2.11.3 + '@tauri-apps/cli-linux-x64-musl': 2.11.3 + '@tauri-apps/cli-win32-arm64-msvc': 2.11.3 + '@tauri-apps/cli-win32-ia32-msvc': 2.11.3 + '@tauri-apps/cli-win32-x64-msvc': 2.11.3 + + '@tauri-apps/plugin-process@2.3.1': + dependencies: + '@tauri-apps/api': 2.11.1 + + '@tauri-apps/plugin-updater@2.10.1': + dependencies: + '@tauri-apps/api': 2.11.1 + '@turbo/darwin-64@2.9.18': optional: true diff --git a/wiki/concepts/append-only-event-chain.md b/wiki/concepts/append-only-event-chain.md index 16e71a1..66e4df4 100644 --- a/wiki/concepts/append-only-event-chain.md +++ b/wiki/concepts/append-only-event-chain.md @@ -69,10 +69,21 @@ secure element is a new `Signer` impl with no `EventLog` change; each event stor so old events stay verifiable. > ⚠️ The software signer makes the chain **self-consistent + tamper-evident**, but **not -> unforgeable by someone who owns the host** — only the ATECC608's non-extractable key gives -> property (3) above. Until the chip is wired, the chain detects tampering by *outsiders* and -> *accidental* corruption, but an operator with the signing key + DB access could re-sign a -> forged chain. This is the central reason #6 matters. +> unforgeable by someone who owns the host** — only a non-extractable key in a secure element +> ([[atecc608]] on embedded, or the host **[[tpm|TPM]]** on a PC appliance) gives property (3) above. +> Until that is wired, the chain detects tampering by *outsiders* and *accidental* corruption, but an +> operator (or anyone who pulls the SSD and reads the `.env`) has the HMAC key and could **edit a row +> and re-sign the whole chain undetectably**. This is the central reason #6 matters. + +> **Pull-the-disk attack (traced 2026-06-21).** Removing the SSD, editing `parking.sqlite` on +> another machine, and rebooting: any blind edit/delete/reorder **breaks the chain** and +> `verifyChain()` pinpoints it (bad signature / index gap / prevHash mismatch / unknown keyId). **But +> two gaps:** (a) **nothing runs `verifyChain()` at startup today** — the tamper is *detectable but +> undetected* until something invokes verification (wire a boot-time self-check that at least logs/flags +> a signed alarm — fail-open on exit still governs; this is [[open-questions]] #13); and (b) with the +> *software* signer the key is on the same disk, so the attacker can re-sign and pass verification — +> only a secure-element key ([[tpm]]/[[atecc608]]) closes that. [[tpm|TPM-sealed]] LUKS additionally +> stops the disk **mounting** off-host at all. ### Business-layer event types (the ledger) diff --git a/wiki/concepts/disk-os-hardening.md b/wiki/concepts/disk-os-hardening.md index 78c1502..348ce22 100644 --- a/wiki/concepts/disk-os-hardening.md +++ b/wiki/concepts/disk-os-hardening.md @@ -2,7 +2,7 @@ type: concept tags: [parking, security, platform] sources: [parking-system-architecture] -updated: 2026-06-14 +updated: 2026-06-21 --- # Disk / OS Hardening @@ -18,6 +18,12 @@ Physical-access attacks on Windows are trivial (boot media + password-reset tool - **GRUB password + Secure Boot** — prevents boot-parameter tampering / unsigned loaders. - **No desktop environment** — single-purpose appliance. - **Key-based SSH only.** +- **[[tpm|TPM 2.0]]** _(recommended, 2026-06-21)_ — seals the LUKS key to the boot chain so the disk + **auto-unlocks only on an untampered boot**, making encryption-at-rest compatible with **unattended + reboot** (a booth must come back up after a power cut without a human typing a passphrase). Also a + candidate home for the non-extractable host event-signing key. Caveats (live-root limit, bus-sniff, + PCR brittleness, mandatory recovery passphrase + re-seal runbook) on [[tpm]]; implementation is + [[open-questions]] #12. With LUKS in place, **SQLCipher becomes optional** defence-in-depth rather than the critical layer. (The custom controller adds its own: ESP32 flash encryption + secure boot — see diff --git a/wiki/concepts/threat-model.md b/wiki/concepts/threat-model.md index 0c559ec..2d7fd3a 100644 --- a/wiki/concepts/threat-model.md +++ b/wiki/concepts/threat-model.md @@ -13,8 +13,8 @@ The **second foundational force** (with [[offline-first]]). The central insight ## The key reframing Early thinking focused on protecting the database **at rest** — SQLCipher, LUKS, BitLocker, -TPM-sealed keys. All of that defends against **an outsider who steals the machine or boots from -external media**. +[[tpm|TPM-sealed keys]]. All of that defends against **an outsider who steals the machine or boots +from external media**. That is the **wrong primary threat**. The most likely adversary is the **legitimate operator at the booth**. While the app runs, the database is decrypted in memory and the operator has full diff --git a/wiki/concepts/tpm.md b/wiki/concepts/tpm.md new file mode 100644 index 0000000..d553d0d --- /dev/null +++ b/wiki/concepts/tpm.md @@ -0,0 +1,95 @@ +--- +type: concept +tags: [parking, security, platform, hardware] +sources: [] +updated: 2026-06-21 +--- + +# TPM 2.0 (Trusted Platform Module) + +A small crypto chip on the host that provides two host-hardening primitives. Useful **defence-in- +depth** for the appliance, but — like all secure elements — it defends the **secondary** +([[threat-model|outsider-with-the-box]]) threat, **never** the operator-at-the-booth, and is **not** +a substitute for the system's real anti-fraud control ([[reconciliation]] over the +[[append-only-event-chain|signed chain]]). _(Analysis recorded 2026-06-21; implementation pending — +see [[open-questions]] #12.)_ + +> ⚠ **Naming:** it's **TPM** (Trusted Platform Module), often miswritten "TMP". + +## How it works — two primitives + +1. **Non-extractable keys.** A key generated *inside* the TPM never leaves it. No command at any + privilege level reads out the private key; you can only ask the TPM to *use* it (sign/decrypt). + So the key isn't a file an attacker can copy — the same property the [[atecc608]] gives, but with + hardware most PCs already have. +2. **Boot measurement + sealing (PCRs).** Each boot stage hashes the next (firmware → bootloader → + kernel) into tamper-evident registers (**PCRs**). A secret can be **sealed** so the TPM only + releases/uses it when the PCRs match a known-good boot state — tamper the boot chain → PCRs change + → the TPM refuses. + +## What it buys this appliance + +- **Sealed-LUKS auto-unlock for unattended reboot.** The headline win. LUKS ([[disk-os-hardening]]) + normally needs a human to type a passphrase at boot; a parking booth must reboot itself after a + power cut. `systemd-cryptenroll --tpm2-device` seals the LUKS key to the TPM + boot-chain PCRs, so + the disk auto-unlocks **only** on an untampered boot. This is what makes "encrypted disk" and + "unattended appliance" compatible. +- **Defeats the offline disk-tamper / re-sign attack.** If the host event-signing key lives in the + TPM (non-extractable), then pulling the SSD yields the *data* but **not** the signing key — so an + attacker cannot edit a row and re-sign the chain. `verifyChain()` then catches every edit. (With a + *software* signer the key sits in `.env` on the disk, so disk theft = key theft = forgeable; see + [[append-only-event-chain]] "Signer abstraction".) Sealed-LUKS goes further: the disk won't even + **mount** off-host, blocking the read step entirely. +- **Boot tamper-evidence** complementing the already-decided Secure Boot + GRUB password + ([[disk-os-hardening]]). + +## What it does NOT protect against (be honest about the limits) + +- **A rooted *running* host.** The TPM stops key *theft*, not key *use*. An attacker with admin/root + on the live appliance can still ask the TPM to sign — the chip signs for whoever the running OS + authorizes. So a TPM does **not** make a compromised host trustworthy. (A per-op TPM auth PIN/policy + raises this bar but a determined root can often capture it.) This is exactly why the load-bearing + control stays [[reconciliation]] against an **external** authority that assumes the box may lie. +- **Determined physical + BIOS access with tools.** Documented attacks exist: + - **Bus sniffing** — a *discrete* TPM talks to the CPU over an external LPC/SPI bus; researchers + have physically tapped it and captured secrets *as they're released* (e.g. the LUKS/BitLocker key + in transit) on PCR-only-sealed systems. A **firmware TPM (fTPM)** inside the CPU has no external + bus to sniff (but has had its own firmware bugs). + - **TPM 1.2 is broken** (SHA-1) — require **2.0** only. + - Vendor-specific firmware/reset/replay vulns have surfaced over the years. +- **The operator (primary threat).** While the app runs, the DB is decrypted in memory and the + operator acts *through* the authenticated app — encryption/sealing is irrelevant to "take the cash, + void the record" ([[threat-model]]). +- **Windows caveat.** On Windows the TPM serves BitLocker/Hello, not our Linux app; a Windows-admin + attacker inherits Windows' long history of BitLocker-TPM bypasses. Another reason the Windows + WSL + fallback ([[desktop-shell-tauri]]) is the weak deployment. + +## Verdict & guidance + +- **Recommended (not required)** on the **Ubuntu 26.04 LTS appliance** ([[desktop-shell-tauri|best + case]]): use it for **sealed-LUKS auto-unlock + a non-extractable host event-signing key**. It is a + **cost-raiser and theft-defeater, not an absolute vault.** +- **Prefer a firmware TPM (fTPM)** (Intel PTT / AMD fTPM — no external bus to sniff) and add a + **PIN/auth policy**, rather than PCR-only sealing. +- **Operational hazard:** sealing to boot-chain PCRs means a *legitimate* kernel / GRUB / BIOS update + also changes the PCRs and **locks you out** until re-sealed. Keep a **LUKS recovery passphrase** and + a **re-seal-on-update runbook** — mandatory, and a reason this stays "enhancement," not "baseline". +- **It complements, never replaces,** the [[append-only-event-chain|signed chain]] + + [[reconciliation]]. + +## TPM vs. ATECC608 — which secure element for the signing key + +Both can hold the non-extractable host event-signing key. Pick by platform: + +| | **TPM 2.0** | **[[atecc608]]** | +| --- | --- | --- | +| In a typical PC? | **Often yes** (discrete or fTPM) | **No** — an external I²C part you add/solder | +| Standard / integration | TCG standard, OS-integrated | Microchip part, app-integrated over I²C | +| Best fit here | **PC-based host appliance** (use what's there) | **Embedded / [[esp32-custom-controller|ESP32]]** controller | +| Tangled with the whole OS attack surface? | Yes (general-purpose) | Less so (single-purpose chip) | + +**Implication (refines the prior framing):** the wiki/[[bom]] treated the ATECC608 as *the* host +signing root, but for the **Ubuntu-PC appliance the TPM is the realistic host secure-element** (no +extra part to source), with the **ATECC608 reserved for the embedded controller** where there's no +TPM. Either delivers the tamper-*proof* property; see [[open-questions]] #6 (host secure-element by +platform) and #12 (TPM hardening implementation). diff --git a/wiki/decisions/desktop-shell-tauri.md b/wiki/decisions/desktop-shell-tauri.md new file mode 100644 index 0000000..fbacf82 --- /dev/null +++ b/wiki/decisions/desktop-shell-tauri.md @@ -0,0 +1,164 @@ +--- +type: decision +tags: [parking, decisions, desktop, frontend] +sources: [] +updated: 2026-06-21 +status: settled +--- + +# Desktop shell — Tauri v2 (chosen over Electron) + +The operator UI ([[react-vite-spa]]) needs to ship as a **desktop application** on the +appliance (kiosk-style), with a **mobile app possible later** but out of scope now. The choice +was **Tauri v2 vs. Electron**. **Decision: Tauri v2.** _(Settled with the user, 2026-06-21.)_ + +## The thin-shell architecture (why this choice is low-risk) + +The desktop shell is a **thin kiosk wrapper around the existing SPA**, nothing more. All +privileged logic — device drivers ([[device-adapter-pattern]]: reader/printer/relay/serial), +[[local-jwt-auth|auth]], the [[append-only-event-chain|signed ledger]], [[tariff]]/[[subscription]] +pricing — **stays in the [[fastify]] server** (settled with the user, 2026-06-21). The shell only +loads the SPA, which talks to the local Fastify server over localhost. Consequences: + +- **No device/serial logic is ported into the shell** (no Rust device code for Tauri; no Node + main-process drivers for Electron). The "logic lives in the server" invariant holds. +- If a WebView quirk ever bites, the **blast radius is presentation only** — the server and its + signed ledger are untouched. + +This is what neutralizes Tauri's main weakness (host-WebView fragmentation, below): the shell's +job is fullscreen chrome, autostart, and kiosk lockdown — not correctness-critical rendering of +financial truth. + +## Why Tauri v2 fits *this* project specifically + +- **Threat-model alignment ([[threat-model]]).** The primary adversary is the operator at the + booth. Tauri's **deny-by-default capability/permission model** means the renderer literally + cannot reach the filesystem, shell, or any native command unless we hand it a named, allowlisted + command. That is defense-in-depth that matches "don't trust the booth." Electron's equivalent + hardening (`contextIsolation`, `nodeIntegration:false`, `sandbox:true`, strict CSP) is **opt-in + and easy to misconfigure** into giving the renderer Node access — exactly what this threat model + can't afford. +- **Small footprint / smaller CVE surface.** Tauri uses the **OS WebView** (WebKitGTK on Linux) — + ~3–10 MB bundles, tens of MB RAM, and **no bundled Chromium** to patch. Electron ships and pins + its own Chromium (100+ MB, hundreds of MB RAM) and makes us **own Chromium's CVE treadmill** on a + long-lived appliance. On a [[disk-os-hardening|hardened]] single-purpose box maintained for + years, less to patch is a real operational win. +- **License.** Tauri is **MIT / Apache-2.0** — clears the hard MIT/Apache/BSD constraint + ([[technology-stack]]). (Electron is also MIT; not a differentiator.) +- **Rust core** is available if device access ever *did* move shell-side — but per the decision + above it does not, so this is latent upside, not a current cost. + +## What Electron would have bought (the rejected upside) + +- **Version-pinned bundled Chromium** → identical rendering everywhere regardless of host. The most + predictable option on a locked-down appliance image, and the reason this isn't a slam-dunk. +- Largest, most battle-tested kiosk/appliance ecosystem. +- Node in the main process → trivial code-sharing with the Fastify/Node device drivers — but we + explicitly **keep drivers in the server**, so this advantage doesn't apply here. + +Rejected because the heavy footprint, the Chromium CVE-patching obligation, and the opt-in (easy +to get wrong) security posture all cut against the appliance + threat-model constraints, while its +one real advantage (bundled Chromium) is only conditionally needed — see the open question. + +## Target deployment — best case vs. worst case + +The decision's risk collapses to **which OS the appliance actually runs** (user, 2026-06-21): + +- **Best case — Ubuntu 26.04 LTS desktop (the intended appliance).** Ships a **current, + distro-maintained WebKitGTK** (`webkit2gtk-4.1` / GTK4), patched by Canonical for the LTS + lifetime. This **closes** the WebView risk below — no ancient-WebView problem, no CVE-patching + burden on us. A native, hardened, single-purpose box that matches the [[disk-os-hardening]] + platform decision. **Tauri belongs here; the decision is unconditional in this world.** +- **Worst case — Windows 11 + WSL + Docker.** This is **not** a "use Electron instead" fallback — + it **contradicts the [[standing-decisions|standing platform decision]]** (explicitly *"a + dedicated, hardened Linux appliance, **not Windows/WSL**"*) and undermines + [[disk-os-hardening|Secure Boot / LUKS / tamper resistance]] against the booth operator + ([[threat-model]]). Moreover a **desktop GUI shell does not naturally live inside WSL/Docker** + (both are headless Linux). The realistic shape there is **no native shell at all**: run + [[fastify]] + the SPA in the WSL/Docker backend, and open the SPA in a **kiosk browser** on + Windows (`msedge`/`chrome --kiosk --app=http://localhost:PORT`). Electron is warranted **only** + if a self-contained installable Windows `.exe` (no system browser) is a hard requirement. + +The **thin-shell architecture makes the worst-case fallback cheap**: because all logic lives in +[[fastify]], dropping the shell for a kiosk browser costs only the native window wrapper, not any +functionality. + +| Deployment | Desktop shell | +| --- | --- | +| **Ubuntu 26.04 LTS** (best, intended) | **Tauri v2** — current WebKitGTK, native, hardened. Decision stands unconditionally. | +| **Windows 11 + WSL + Docker** (worst, conflicts with platform decision) | **No native shell — kiosk browser** at the local Fastify-served SPA. Electron only if a standalone Windows installer is required. | + +## The one thing to verify (procurement / image gate) + +Tauri's rendering correctness depends on the **WebKitGTK version that ships on the target +appliance OS image**. On a hardened/pinned image this can be old and cause rendering quirks — pin +it and test the built SPA against that **exact** WebView. **On the intended Ubuntu 26.04 LTS this +is effectively resolved** (current distro-maintained WebKitGTK); the concern only bites on an +unexpected image with an ancient/unavailable WebView, which would point to the kiosk-browser path +(or Electron) above. Tracked as an [[open-questions|open question]]. + +## Invariants this decision must preserve + +1. **Server owns all privileged logic.** The shell is presentation only; device/auth/ledger/pricing + stay in [[fastify]]. Don't let "convenient native access" pull driver logic into the shell. +2. **Deny-by-default native surface.** Expose Tauri commands one at a time, allowlisted; never open + a broad filesystem/shell capability to the renderer ([[threat-model]]). +3. **[[offline-first]].** The shell, its updater, and any WebView must work air-gapped; no decision + here may introduce a network dependency in core operation. +4. **Mobile later, not now.** A future mobile app is a separate target; don't pre-build for it. + +## As-built (scaffolded 2026-06-21) + +`apps/desktop` — a Tauri v2 shell, its own pnpm/Turbo package, wrapping the **same** `apps/web` +SPA so the desktop and browser UIs **cannot drift** (one UI codebase; requirement from the user): + +- **Dev:** `tauri dev` loads `http://localhost:5173` (the `@parking/web` Vite dev server) → + editing a component in `apps/web` updates the desktop window via HMR live. `beforeDevCommand` + starts the web dev server. +- **Prod:** `frontendDist: ../../web/dist` bundles the built SPA into the binary; + `beforeBuildCommand` rebuilds it first. +- **Backend origin:** the SPA used relative `/api` + a `window.location.host` WS URL — fine in a + browser, broken from `tauri://localhost`. Centralized into `apps/web/src/lib/origin.ts` + (`API_BASE`/`apiUrl`/`wsUrl`), read from **`VITE_API_BASE`** (empty in the browser = unchanged; + set to the Fastify origin for the desktop build). The `tauri.conf.json` CSP `connect-src` + whitelists `127.0.0.1:3000`/`localhost:3000` http+ws; the backend's `WS_ALLOWED_ORIGINS` must + include the Tauri origin. +- **Thin shell, enforced:** the Rust crate (`parking_desktop_lib::run`) registers **no commands**; + the capability set is `core:default` only — no fs/shell/device access to the renderer + (invariants 1–2). All logic stays in [[fastify]]. +- **Turbo:** `build` is a **no-op** (so `turbo run build` stays fast); the real bundle is a + deliberate `pnpm --filter @parking/desktop bundle` (the vision-shim pattern). +- **Verified:** `cargo check` + a full `tauri build` compiled the Rust/WebKitGTK/wry stack and + produced working `.deb`/`.rpm`/`.AppImage` bundles; `pnpm turbo run build lint` → 14/14 green + (was 12). All Linux prereqs present (Rust 1.93, WebKitGTK 4.1, libsoup-3, WSLg display). +### Window / kiosk, auto-update, env (added 2026-06-21) + +Per the user's choices — the operator **keeps OS access** (no fullscreen lockdown): + +- **Window:** starts **maximized** (`maximized: true`), not fullscreen, resizable. No OS-key + blocking, no always-on-top — the booth PC stays usable as a PC. +- **Right-click:** the context menu is blocked in **prod only** (`apps/web/src/lib/kiosk.ts`, + guarded on `import.meta.env.PROD`); dev keeps right-click + devtools. Applies to both the browser + prod build and the desktop build (same SPA). +- **`VITE_API_BASE` wired to the environment:** `apps/web/.env.production` (committed, non-secret, + allow-listed in `.gitignore`) sets `VITE_API_BASE=http://127.0.0.1:3000`, auto-loaded by + `vite build` (which the desktop bundle runs). So the desktop build targets Fastify with no manual + export; the browser-served-by-Fastify build should override to `""`. +- **Auto-update (prompt-on-update, self-hosted):** `tauri-plugin-updater` + `tauri-plugin-process`. + On launch the SPA checks the endpoint (`apps/web/src/lib/desktop-updater.ts`, no-op in browser / + offline), prompts the operator (i18n `update.prompt`), then `downloadAndInstall()` + `relaunch()`. + Accepts that the appliance may be **offline** day-to-day and brought online (phone hotspot) only + when an update is wanted — consistent with [[offline-first]] (no network dependency in *core* + operation; updates are out-of-band). Endpoint in `tauri.conf.json` is a **placeholder** + (`https://UPDATES.EXAMPLE.invalid/...`) to fill in once the self-hosted update URL exists; the + server must serve `latest.json` + the signed installer + its `.sig`. +- **Code-signing (updater):** an Ed25519 **updater keypair** was generated. The **public key is + embedded** in `tauri.conf.json` (`plugins.updater.pubkey`); the **private key + password live + OUTSIDE the repo** at `~/.parking-updater-keys/` (0600) and as the build-time secrets + `TAURI_SIGNING_PRIVATE_KEY` / `TAURI_SIGNING_PRIVATE_KEY_PASSWORD`. Losing them means no future + signed updates — back them up. **Verified:** a signed `pnpm --filter @parking/desktop bundle` + produced `.deb`/`.rpm`/`.AppImage` **plus their `.sig` updater signatures**; full `turbo run build + lint` 14/14 green. *(This is the **updater** signing — distinct from OS-installer signing for + Windows/macOS "unknown publisher", and from the [[atecc608]]/[[tpm]] **event** signing.)* +- **Still deferred:** the actual update-hosting URL, OS-level installer signing + (Windows/macOS publisher trust), and the Windows kiosk-browser fallback path. diff --git a/wiki/decisions/open-questions.md b/wiki/decisions/open-questions.md index a6cbc45..119c33a 100644 --- a/wiki/decisions/open-questions.md +++ b/wiki/decisions/open-questions.md @@ -2,14 +2,14 @@ type: decision tags: [parking, decisions, open] sources: [parking-system-architecture] -updated: 2026-06-15 +updated: 2026-06-21 status: open --- # Open Questions / Next Steps -**Not yet decided**, and they drive everything else — settle before procurement. (See -[[parking-system-architecture]] §10.) +**Not yet decided** (or decided-but-not-yet-built), and they drive everything else — settle before +procurement. (See [[parking-system-architecture]] §10.) 1. **Lane topology.** One host per lane, or one central host driving networked devices in each lane? Decides how many controllers, printers, UPSs, and [[sqlite]] instances exist, and the @@ -62,3 +62,36 @@ status: open reclaim deleted-blob pages without `VACUUM`. **Undecided:** pruning policy (age-based vs. total-size cap), VACUUM cadence, and how this interacts with the #5 backup strategy (blobs bloat every backup). Until decided, snapshots accumulate unbounded. See [[entry-exit-points]]. +11. **Appliance OS image → WebKitGTK version (Tauri dependency).** _(Raised by + [[desktop-shell-tauri]], 2026-06-21; narrowed same day.)_ The chosen + [[desktop-shell-tauri|Tauri v2 desktop shell]] renders through the **host's WebKitGTK**, not a + bundled browser. The risk reduces to which OS the appliance runs: + - **Best case — Ubuntu 26.04 LTS desktop (intended):** ships a current, distro-maintained + WebKitGTK → this question is **effectively resolved**; just confirm the built SPA renders on + the actual image and pin it. + - **Worst case — Windows 11 + WSL + Docker:** this **conflicts with the standing platform + decision** (Linux appliance, *not* Windows/WSL — see [[standing-decisions]], + [[disk-os-hardening]]) and a GUI shell doesn't live inside headless WSL/Docker. Fallback is + **no native shell — a kiosk browser** at the local [[fastify]]-served SPA (Electron only if a + standalone Windows installer is mandated). See [[desktop-shell-tauri]] for the decision table. + Close this once the appliance OS image is fixed and the SPA is verified against its WebView. + (Ties to #1 lane topology / image standardization.) +12. **TPM 2.0 hardening — implementation (to build).** _(Recorded 2026-06-21; analysis in [[tpm]].)_ + On the Ubuntu 26.04 LTS appliance, harden using the host **TPM**: (a) **sealed-LUKS auto-unlock** + (`systemd-cryptenroll --tpm2-device`) so the encrypted disk auto-unlocks only on an untampered + boot → unattended reboot after power loss; (b) optionally hold the **non-extractable host + event-signing key** in the TPM (a new `Signer` impl — no `EventLog` change; mirrors the + [[atecc608]] swap), defeating the offline pull-the-disk-and-re-sign attack. **Must include:** + require **TPM 2.0** (reject 1.2), **prefer fTPM** + a per-op **PIN/auth policy** (not PCR-only — + bus-sniff), a **LUKS recovery passphrase**, and a **re-seal-on-update runbook** (kernel/GRUB/BIOS + updates change the PCRs and lock the disk). TPM **complements, never replaces**, [[reconciliation]]; + it does nothing against a rooted live host or the operator. Moot in the Windows + WSL fallback. See + [[tpm]], [[disk-os-hardening]]; relates to #6 (host secure-element by platform) and #13. +13. **Startup chain-integrity self-check (to build).** _(Raised by the pull-the-disk trace, + 2026-06-21.)_ `verifyChain()` exists and pinpoints any tamper, but **nothing invokes it on + boot** — a tampered DB loads and serves normally (detectable but undetected). Wire a **startup + self-check** that runs `verifyChain()` and, on a break, **flags degraded state / writes a signed + `anomaly` + alarms** (surfaced to the booth footer / next reconciliation). Open: refuse-to-serve + vs. serve-degraded — lean **serve-degraded + loud alarm** (fail-open on exit still governs; + refusing to boot could strand a lane). Software-only, independent of the TPM/[[atecc608]] hardware. + See [[append-only-event-chain]]. diff --git a/wiki/decisions/standing-decisions.md b/wiki/decisions/standing-decisions.md index 9abde6c..0c3e995 100644 --- a/wiki/decisions/standing-decisions.md +++ b/wiki/decisions/standing-decisions.md @@ -2,7 +2,7 @@ type: decision tags: [parking, decisions] sources: [parking-system-architecture] -updated: 2026-06-14 +updated: 2026-06-21 status: settled --- @@ -20,6 +20,11 @@ The decisions treated as settled in the design notes. (See [[parking-system-arch [[vision-service]]. - **Platform:** a **dedicated, hardened Linux appliance** (LUKS + GRUB password + Secure Boot), **not Windows/WSL** — see [[disk-os-hardening]]. +- **Desktop shell:** the operator UI ships as a **[[desktop-shell-tauri|Tauri v2]]** kiosk wrapper + (chosen over Electron, 2026-06-21) — small footprint, no bundled Chromium to patch, and a + deny-by-default native surface that fits [[threat-model|the booth-operator threat model]]. The + shell stays **thin**: all privileged logic remains in [[fastify]]. One open dependency — the + appliance's WebKitGTK version (see [[open-questions]] #11). - **Integrity:** append-only, hash-chained, [[atecc608]]-signed event log ([[append-only-event-chain]]); **[[reconciliation]] is the anti-fraud control**; encryption protects only at-rest (see [[threat-model]]). diff --git a/wiki/entities/atecc608.md b/wiki/entities/atecc608.md index c079253..ed40c09 100644 --- a/wiki/entities/atecc608.md +++ b/wiki/entities/atecc608.md @@ -22,3 +22,11 @@ Two distinct uses: Confirming ATECC608 wiring/usage on both ends is [[open-questions]] #6. Listed in the [[bom]] on the host machine. + +> **Platform caveat (2026-06-21):** the ATECC608 is **not a PC component** — it's an external I²C +> secure element you add/solder, native to embedded boards (the [[esp32-custom-controller]]), not to +> an off-the-shelf host PC. For a **PC-based appliance** the realistic host secure-element for the +> non-extractable event-signing key is the **[[tpm|TPM 2.0]]** the machine likely already has; reserve +> the ATECC608 for the embedded controller. Both give the same non-extractable property — see [[tpm]] +> "TPM vs. ATECC608". So use #1 (host event signing) is **TPM on a PC, ATECC608 on embedded**; use #2 +> (controller command auth) stays ATECC608. diff --git a/wiki/index.md b/wiki/index.md index 6a37c10..be81505 100644 --- a/wiki/index.md +++ b/wiki/index.md @@ -1,13 +1,13 @@ --- type: overview tags: [parking, index] -updated: 2026-06-19 +updated: 2026-06-21 --- # Index Content catalog for the wiki. Start at [[overview]]. Maintained on every ingest. -Counts: 4 sources · 19 entities · 44 concepts · 6 decision records. +Counts: 4 sources · 19 entities · 45 concepts · 7 decision records. ## Overview & navigation - [[overview]] — the top-level synthesis and entry point. @@ -49,6 +49,7 @@ Counts: 4 sources · 19 entities · 44 concepts · 6 decision records. ## Concepts — foundational forces - [[offline-first]] — no network dependency in core operation; what it forces (and doesn't). - [[threat-model]] — the operator-at-the-booth reframing; why encryption defends the wrong threat. +- [[tpm]] — TPM 2.0 hardening: how it works, sealed-LUKS auto-unlock + non-extractable signing key; limits (live-root, bus-sniff) + TPM-vs-ATECC608 by platform; complements, not replaces, reconciliation. ## Concepts — integrity & anti-fraud - [[append-only-event-chain]] — append-only + hash chain + ATECC608 signing = unforgeable log. @@ -117,3 +118,4 @@ Counts: 4 sources · 19 entities · 44 concepts · 6 decision records. - [[vision-service]] — build a host-side ANPR + vehicle-verification service; replaces edge-LPR; scoped AGPL exception. - [[vision-service-packaging]] — the vision service lives in this monorepo (apps/vision/), separate process, wired into Turbo via a package.json shim; uv-managed Python. - [[event-streams-split]] — split the signed business ledger (ledger_events) from unsigned device telemetry (device_events). +- [[desktop-shell-tauri]] — ✅ Tauri v2 chosen over Electron for the desktop kiosk shell; thin wrapper, server keeps all logic. Best case Ubuntu 26.04 LTS (resolves WebKitGTK); worst case Windows+WSL → kiosk browser, no native shell. diff --git a/wiki/log.md b/wiki/log.md index f78c62e..2c05cbb 100644 --- a/wiki/log.md +++ b/wiki/log.md @@ -1173,3 +1173,59 @@ reserve checkbox (SiteSettings); booth pay modal shows an "OUT-OF-WINDOW" charge Verified on a copy of the live DB: qty 2 = 2× price; night-plan 19:30 entry → 30min/15,000 ALL owed, stamped + paid → gate clears, chain verifies; reserve toggle holds a qty-2 sub's 2 spots. Build+lint 12/12; 80 shared tests. Updated [[subscription]], [[capacity-occupancy]], [[tariff]]. + +## [2026-06-21] query | Desktop shell: Tauri v2 vs. Electron +Compared Tauri v2 and Electron for shipping the operator UI as a desktop app (mobile deferred). +Decision (with user): **Tauri v2** — small footprint, no bundled Chromium to patch, deny-by-default +native surface fitting the booth-operator threat model; MIT/Apache. Shell stays thin (device/auth/ +ledger/pricing remain in Fastify, per user). Filed [[desktop-shell-tauri]]; cross-linked from +[[standing-decisions]], [[overview]], [[index]]. Open dependency: appliance WebKitGTK version +([[open-questions]] #11) — flips to Electron if ancient/unavailable. + +## [2026-06-21] query | Desktop shell — target OS (best/worst case) +User specified deployment span: best = Ubuntu 26.04 LTS desktop, worst = Windows 11 + WSL + Docker. +Refined [[desktop-shell-tauri]] + [[open-questions]] #11: Ubuntu 26.04 LTS ships a current +distro-maintained WebKitGTK → effectively closes the WebView risk; Tauri unconditional there. The +Windows+WSL case is NOT an "Electron instead" fallback — it conflicts with the standing Linux- +appliance platform decision and can't host a GUI shell in headless WSL/Docker; fallback is a kiosk +browser at the local Fastify-served SPA (Electron only if a standalone Windows installer is +mandated). Thin-shell architecture makes that fallback cheap. + +## [2026-06-21] query | TPM 2.0 hardening — analysis + pull-the-disk attack trace +How a TPM works (non-extractable keys + PCR sealing) and its limits, recorded after tracing the +"pull the SSD, tamper parking.sqlite offline, reboot" attack against event-log.ts/signer.ts. +Findings: verifyChain() catches every blind tamper (bad sig / index gap / prevHash / unknown keyId) +but (a) nothing runs it at boot, and (b) the software HMAC key lives in .env on the same disk → +attacker can re-sign undetectably. Only a secure-element key (TPM on a PC, ATECC608 on embedded) +makes it tamper-PROOF; TPM-sealed LUKS additionally blocks off-host mount. TPM verdict: recommended +not required on the Ubuntu appliance (sealed-LUKS auto-unlock + non-extractable signing key); does +NOT defend a rooted live host or the operator; bus-sniff/PCR-brittleness caveats → prefer fTPM + PIN, +keep recovery passphrase + re-seal runbook; complements not replaces reconciliation. Also corrected: +ATECC608 is NOT in a PC (external I²C part) → on a PC appliance the TPM is the host secure-element, +ATECC608 reserved for the ESP32 controller. New page [[tpm]]; cross-linked [[disk-os-hardening]], +[[threat-model]], [[atecc608]], [[append-only-event-chain]]; open-questions #12 (TPM impl, to build), +#13 (startup verifyChain self-check, to build); index + counts updated. + +## [2026-06-21] build | apps/desktop — Tauri v2 kiosk shell scaffolded +Built the thin Tauri v2 shell per [[desktop-shell-tauri]]: new apps/desktop package wrapping the +SAME apps/web SPA (dev → localhost:5173 with HMR; prod → bundled web dist/), so desktop and browser +UIs can't drift (user requirement). Rust core holds no business logic; capabilities core:default +only (deny-by-default). One apps/web change: centralized the backend origin into lib/origin.ts +(API_BASE/apiUrl/wsUrl from VITE_API_BASE) — no-op in the browser, lets the Tauri build target the +Fastify origin. Turbo build is a no-op; real bundle = `pnpm --filter @parking/desktop bundle`. +VERIFIED: cargo check + full tauri build → working .deb/.rpm/.AppImage; turbo run build lint 14/14 +green; prereqs present (Rust 1.93, WebKitGTK 4.1, libsoup-3, WSLg). Filled the As-built section of +[[desktop-shell-tauri]]. Deferred: kiosk lockdown, auto-update, signing, Windows kiosk-browser path. + +## [2026-06-21] build | apps/desktop — window/right-click, auto-update, code-signing, env wiring +Per user choices on the Tauri shell: window starts MAXIMIZED (not fullscreen — operator keeps OS +access); right-click context menu blocked in PROD only (lib/kiosk.ts, dev keeps devtools). +VITE_API_BASE wired via apps/web/.env.production (committed non-secret, allow-listed in .gitignore; +auto-loaded by vite build → desktop bundle targets Fastify, no manual export). Auto-update built: +tauri-plugin-updater + -process, prompt-on-update flow (lib/desktop-updater.ts, no-op in browser/ +offline) → downloadAndInstall + relaunch; endpoint is a self-hosted PLACEHOLDER to fill in. Updater +keypair generated: pubkey embedded in tauri.conf.json; private key + password kept OUTSIDE the repo +(~/.parking-updater-keys, 0600) + as TAURI_SIGNING_* build secrets. VERIFIED: signed bundle → +.deb/.rpm/.AppImage + .sig updater signatures; turbo run build lint 14/14 green; no key material in +the repo. Updated As-built in [[desktop-shell-tauri]]. Deferred: real update URL, OS installer +signing, Windows kiosk-browser fallback. diff --git a/wiki/overview.md b/wiki/overview.md index 3ea092f..afa8f44 100644 --- a/wiki/overview.md +++ b/wiki/overview.md @@ -2,7 +2,7 @@ type: overview tags: [parking, overview, synthesis] sources: [parking-system-architecture] -updated: 2026-06-14 +updated: 2026-06-21 --- # Parking System — Overview @@ -23,7 +23,8 @@ deployed on-site at a parking facility. Two forces shape nearly every decision: - **Stack** ([[technology-stack]] / [[standing-decisions]]): [[turborepo]] · [[fastify]] · [[react-vite-spa]] · [[sqlite]] + [[drizzle-orm]] · [[local-jwt-auth]] — all open-licensed to - avoid lock-in (cf. rejected [[payload-cms]], [[refine]], [[logto-zitadel-oidc]]). + avoid lock-in (cf. rejected [[payload-cms]], [[refine]], [[logto-zitadel-oidc]]). The operator UI + ships as a thin **[[desktop-shell-tauri|Tauri v2]]** kiosk shell (chosen over Electron). - **Integrity** is the heart of it: an [[append-only-event-chain]] (hash-chained, [[atecc608]]- signed) plus external [[reconciliation]] — *that's* what remote sync really is. Encryption at rest ([[disk-os-hardening]]) defends a secondary threat.