diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..64067ec
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+desktop/runtime-constraints.txt text eol=lf
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 13f799d..bf7f460 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,6 +6,22 @@ on:
- opened
- synchronize
- reopened
+ workflow_call:
+ inputs:
+ checkout_ref:
+ description: Exact commit to validate.
+ required: false
+ type: string
+ full:
+ description: Run every validation surface without PR path scoping.
+ required: false
+ default: false
+ type: boolean
+ skip_containers:
+ description: Skip container validation when a downstream release job builds and smokes the same images.
+ required: false
+ default: false
+ type: boolean
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -18,26 +34,47 @@ permissions:
jobs:
validate:
runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: ${{ fromJSON(inputs.full && '["3.11","3.12","3.13","3.14"]' || '["3.14"]') }}
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
+ ref: ${{ inputs.checkout_ref || github.sha }}
- name: Determine validation scope
id: scope
shell: bash
env:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
+ FORCE_FULL: ${{ inputs.full || false }}
+ SKIP_CONTAINERS: ${{ inputs.skip_containers || false }}
GH_TOKEN: ${{ github.token }}
PR_NUMBER: ${{ github.event.pull_request.number }}
run: |
+ if [[ "$FORCE_FULL" == "true" ]]; then
+ {
+ echo "run_suite=true"
+ if [[ "$SKIP_CONTAINERS" == "true" ]]; then
+ echo "run_container=false"
+ else
+ echo "run_container=true"
+ fi
+ echo "require_changelog=false"
+ echo "needs_python=true"
+ } >> "$GITHUB_OUTPUT"
+ exit 0
+ fi
+
changed_files="$(git diff --name-only "$BASE_SHA" HEAD)"
- if grep -Eq '^(\.github/workflows/ci\.yml$|src/|tests/|utils/|LICENSE$|MANIFEST\.in$|pyproject\.toml$)' <<< "$changed_files"; then
+ if grep -Eq '^(\.github/workflows/ci\.yml$|src/|tests/|utils/|LICENSE$|MANIFEST\.in$|pyproject\.toml$|uv\.lock$)' <<< "$changed_files"; then
run_suite=true
else
run_suite=false
fi
- if grep -Eq '^(\.dockerignore$|\.github/workflows/ci\.yml$|Dockerfile$|compose\.yaml$|pyproject\.toml$|src/vidxp/(requirements/.*\.txt|capabilities/[^/]+/requirements\.txt)$)' <<< "$changed_files"; then
+ if grep -Eq '^(\.dockerignore$|\.github/workflows/ci\.yml$|Dockerfile$|compose\.yaml$|pyproject\.toml$|uv\.lock$|src/vidxp/(requirements/.*\.txt|capabilities/[^/]+/requirements\.txt)$)' <<< "$changed_files"; then
run_container=true
else
run_container=false
@@ -67,7 +104,7 @@ jobs:
- uses: actions/setup-python@v7
if: steps.scope.outputs.needs_python == 'true'
with:
- python-version: "3.11"
+ python-version: ${{ matrix.python-version }}
cache: pip
- name: Install repository tooling
@@ -77,29 +114,39 @@ jobs:
python -m pip install -r utils/build-requirements.txt
- name: Require a changelog fragment
- if: steps.scope.outputs.require_changelog == 'true'
+ if: steps.scope.outputs.require_changelog == 'true' && matrix.python-version == '3.14'
run: towncrier check --compare-with "${{ github.event.pull_request.base.sha }}"
- name: Install test surface
if: steps.scope.outputs.run_suite == 'true'
- run: python -m pip install ".[scene,frontend,benchmarks]"
+ run: |
+ python -m pip install "uv==0.12.0"
+ uv sync \
+ --frozen \
+ --extra all \
+ --extra frontend \
+ --extra benchmarks \
+ --extra server \
+ --extra slm \
+ --extra test \
+ --no-dev
- name: Lint
- if: steps.scope.outputs.run_suite == 'true'
+ if: steps.scope.outputs.run_suite == 'true' && matrix.python-version == '3.14'
run: ruff check src tests
- name: Test
if: steps.scope.outputs.run_suite == 'true'
- run: python -m unittest discover -s tests -q
+ run: uv run --no-sync python -m unittest discover -s tests -q
env:
PYTHONPATH: src
- name: Build wheel and source distribution
- if: steps.scope.outputs.run_suite == 'true'
+ if: steps.scope.outputs.run_suite == 'true' && matrix.python-version == '3.14'
run: python -m build
- name: Verify minimal wheel
- if: steps.scope.outputs.run_suite == 'true'
+ if: steps.scope.outputs.run_suite == 'true' && matrix.python-version == '3.14'
shell: bash
run: |
python -m venv .wheel-smoke
@@ -111,38 +158,43 @@ jobs:
from subprocess import check_output
import vidxp
- from vidxp.capabilities.registry import capability_names
+ from vidxp.capabilities.registry import create_capability_registry
- assert capability_names() == ("dialogue", "scene", "actor")
+ assert create_capability_registry().names() == (
+ "dialogue", "scene", "actor"
+ )
help_text = check_output(
[".wheel-smoke/bin/vidxp", "--help"],
text=True,
)
- assert "benchmark" not in help_text
+ assert "benchmark" in help_text
+ benchmark_help = check_output(
+ [".wheel-smoke/bin/vidxp", "benchmark", "--help"],
+ text=True,
+ )
+ assert "official benchmark adapters" in benchmark_help
for module in (
"chromadb",
- "clip",
"cv2",
- "face_recognition",
+ "faster_whisper",
"sentence_transformers",
- "srt",
"streamlit",
"torch",
- "whisperx",
+ "transformers",
):
assert find_spec(module) is None, module
PY
- name: Validate Compose configuration
- if: steps.scope.outputs.run_container == 'true'
+ if: steps.scope.outputs.run_container == 'true' && matrix.python-version == '3.14'
run: docker compose config --quiet
- name: Build container
- if: steps.scope.outputs.run_container == 'true'
+ if: steps.scope.outputs.run_container == 'true' && matrix.python-version == '3.14'
run: docker build --tag vidxp:ci .
- name: Smoke container
- if: steps.scope.outputs.run_container == 'true'
+ if: steps.scope.outputs.run_container == 'true' && matrix.python-version == '3.14'
shell: bash
run: |
docker run --detach --name vidxp-ci \
@@ -150,8 +202,11 @@ jobs:
trap 'docker rm --force vidxp-ci >/dev/null 2>&1 || true' EXIT
docker exec vidxp-ci vidxp --version
+ docker exec vidxp-ci vidxp init --json
docker exec vidxp-ci python -c \
- 'import clip, face_recognition, whisperx'
+ 'import chromadb, cv2, faster_whisper, huggingface_hub, pooch, psutil, sentence_transformers, torch, transformers; assert psutil.virtual_memory().available > 0'
+ docker exec vidxp-ci python -c \
+ 'import importlib.metadata as m; assert not any(d.metadata["Name"].lower().startswith("nvidia-") for d in m.distributions())'
docker exec vidxp-ci sh -c \
'test ! -d "$HOME/.cache/huggingface" && test ! -d "$HOME/.cache/clip"'
@@ -167,3 +222,89 @@ jobs:
docker logs vidxp-ci
exit 1
+
+ provider-platform-smoke:
+ name: CPU providers (${{ matrix.os }})
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os: ${{ fromJSON(inputs.full && '["ubuntu-24.04","windows-2025","macos-15"]' || '["windows-2025"]') }}
+ steps:
+ - uses: actions/checkout@v7
+ with:
+ ref: ${{ inputs.checkout_ref || github.sha }}
+
+ - uses: actions/setup-python@v7
+ with:
+ python-version: "3.14"
+
+ - name: Install locked local-worker environment
+ run: |
+ python -m pip install "uv==0.12.0"
+ uv sync --frozen --extra local-worker --no-dev
+
+ - name: Verify provider contracts without model downloads
+ run: |
+ uv run --no-sync python -m unittest discover -s tests -p "test_models.py" -q
+ uv run --no-sync python -m unittest discover -s tests -p "test_indexing.py" -q
+ env:
+ PYTHONPATH: src
+ VIDXP_ALLOW_MODEL_DOWNLOADS: "false"
+
+ - name: Verify platform and CPU runtime
+ shell: bash
+ run: |
+ uv run --no-sync python - <<'PY'
+ from importlib import metadata
+ import platform
+ import chromadb
+ import cv2
+ import faster_whisper
+ import huggingface_hub
+ import pooch
+ import psutil
+ import sentence_transformers
+ import torch
+ import transformers
+
+ from vidxp.runtime import resolve_backends
+
+ assert hasattr(cv2, "FaceDetectorYN")
+ assert hasattr(cv2, "FaceRecognizerSF")
+ assert hasattr(faster_whisper, "WhisperModel")
+ assert hasattr(faster_whisper, "BatchedInferencePipeline")
+ assert hasattr(
+ sentence_transformers.SentenceTransformer,
+ "encode_query",
+ )
+ assert hasattr(
+ sentence_transformers.SentenceTransformer,
+ "encode_document",
+ )
+ assert hasattr(transformers, "AutoModel")
+ assert hasattr(transformers, "AutoProcessor")
+ assert hasattr(chromadb, "PersistentClient")
+ assert hasattr(huggingface_hub, "snapshot_download")
+ assert hasattr(pooch, "retrieve")
+ assert psutil.virtual_memory().available > 0
+ assert torch.version.cuda is None, torch.version.cuda
+ installed = {
+ distribution.metadata["Name"].lower().replace("_", "-")
+ for distribution in metadata.distributions()
+ if distribution.metadata.get("Name")
+ }
+ leaks = sorted(
+ name
+ for name in installed
+ if name in {"cuda-toolkit", "cuda-bindings", "triton"}
+ or name.startswith("nvidia-")
+ or name.startswith("pytorch-triton")
+ )
+ assert not leaks, leaks
+
+ profile = resolve_backends("cpu")
+ assert profile.torch_device == "cpu"
+ if platform.system() == "Darwin":
+ assert platform.machine() == "arm64"
+ PY
diff --git a/.github/workflows/desktop.yml b/.github/workflows/desktop.yml
new file mode 100644
index 0000000..94c0b6f
--- /dev/null
+++ b/.github/workflows/desktop.yml
@@ -0,0 +1,149 @@
+name: Desktop
+
+on:
+ workflow_call:
+ inputs:
+ checkout_ref:
+ description: Commit to build
+ required: true
+ type: string
+ workflow_dispatch:
+ inputs:
+ checkout_ref:
+ description: Commit, branch, or tag to build
+ required: false
+ default: ""
+ type: string
+ pull_request:
+ paths:
+ - "desktop/**"
+ - "src/vidxp/requirements/**"
+ - "src/vidxp/capabilities/*/requirements.txt"
+ - "pyproject.toml"
+ - "uv.lock"
+ - ".github/workflows/desktop.yml"
+
+permissions:
+ contents: read
+
+concurrency:
+ group: desktop-${{ github.event.pull_request.number || inputs.checkout_ref || github.ref }}
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
+
+jobs:
+ build:
+ name: ${{ matrix.target == 'windows' && 'Windows x86-64 NSIS' || matrix.target == 'macos' && 'macOS Apple Silicon DMG' || 'Linux x86-64 AppImage' }}
+ runs-on: ${{ matrix.target == 'windows' && 'windows-2025' || matrix.target == 'macos' && 'macos-15' || 'ubuntu-24.04' }}
+ strategy:
+ fail-fast: false
+ matrix:
+ target: ${{ fromJSON(github.event_name == 'pull_request' && '["windows"]' || '["windows","macos","linux"]') }}
+
+ steps:
+ - uses: actions/checkout@v7
+ with:
+ ref: ${{ inputs.checkout_ref || github.event.inputs.checkout_ref || github.sha }}
+
+ - name: Install Linux desktop build dependencies
+ if: runner.os == 'Linux'
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y --no-install-recommends \
+ build-essential \
+ file \
+ libayatana-appindicator3-dev \
+ librsvg2-dev \
+ libssl-dev \
+ libwebkit2gtk-4.1-dev \
+ libxdo-dev
+
+ - uses: actions/setup-node@v7
+ with:
+ node-version: "22"
+ cache: npm
+ cache-dependency-path: desktop/package-lock.json
+
+ - uses: astral-sh/setup-uv@v7
+ with:
+ version: "0.12.0"
+ enable-cache: false
+
+ - uses: dtolnay/rust-toolchain@1.85.0
+
+ - name: Restore Rust build cache
+ uses: actions/cache@v5
+ with:
+ path: |
+ ~/.cargo/registry
+ ~/.cargo/git
+ desktop/src-tauri/target
+ key: desktop-rust-${{ runner.os }}-${{ runner.arch }}-1.85.0-${{ hashFiles('desktop/src-tauri/Cargo.lock') }}
+ restore-keys: |
+ desktop-rust-${{ runner.os }}-${{ runner.arch }}-1.85.0-
+
+ - name: Install locked desktop tooling
+ run: npm ci
+ working-directory: desktop
+
+ - name: Verify the desktop runtime constraints
+ shell: bash
+ run: |
+ generated="$RUNNER_TEMP/runtime-constraints.txt"
+ uv export \
+ --frozen \
+ --extra local-worker \
+ --extra frontend \
+ --no-dev \
+ --no-emit-project \
+ --no-hashes \
+ --format requirements-txt \
+ --output-file "$generated"
+ git diff --no-index --ignore-matching-lines='^#' -- \
+ desktop/runtime-constraints.txt "$generated"
+
+ - name: Restore the pinned uv sidecar
+ id: uv-sidecar-cache
+ uses: actions/cache@v5
+ with:
+ path: desktop/src-tauri/binaries
+ key: desktop-uv-sidecar-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('desktop/sidecars.json') }}
+
+ - name: Fetch the pinned uv sidecar
+ if: steps.uv-sidecar-cache.outputs.cache-hit != 'true'
+ run: npm run ${{ matrix.target == 'windows' && 'sidecar:windows' || 'sidecar:unix' }}
+ working-directory: desktop
+
+ - name: Test the locked desktop crate
+ run: cargo test --release --locked --manifest-path desktop/src-tauri/Cargo.toml
+
+ - name: Build the unsigned desktop installer
+ run: npm run desktop:build
+ working-directory: desktop
+
+ - name: Verify the Windows app uses the GUI subsystem
+ if: runner.os == 'Windows'
+ shell: pwsh
+ run: |
+ $path = "desktop/src-tauri/target/release/vidxp-desktop.exe"
+ $stream = [System.IO.File]::OpenRead($path)
+ try {
+ $reader = [System.IO.BinaryReader]::new($stream)
+ $stream.Position = 0x3c
+ $peOffset = $reader.ReadInt32()
+ $stream.Position = $peOffset + 4 + 20 + 68
+ $subsystem = $reader.ReadUInt16()
+ if ($subsystem -ne 2) {
+ throw "Expected Windows GUI subsystem 2, found $subsystem."
+ }
+ } finally {
+ $stream.Dispose()
+ }
+
+ - name: Preserve the desktop installer
+ uses: actions/upload-artifact@v7
+ with:
+ name: ${{ matrix.target == 'windows' && 'vidxp-desktop-windows-x86_64' || matrix.target == 'macos' && 'vidxp-desktop-macos-aarch64' || 'vidxp-desktop-linux-x86_64' }}
+ path: ${{ matrix.target == 'windows' && 'desktop/src-tauri/target/release/bundle/nsis/*-setup.exe' || matrix.target == 'macos' && 'desktop/src-tauri/target/release/bundle/dmg/*.dmg' || 'desktop/src-tauri/target/release/bundle/appimage/*.AppImage' }}
+ if-no-files-found: error
+ compression-level: 0
+ retention-days: 14
diff --git a/.github/workflows/release-to-pypi.yml b/.github/workflows/release-to-pypi.yml
index 8eef5de..ff53181 100644
--- a/.github/workflows/release-to-pypi.yml
+++ b/.github/workflows/release-to-pypi.yml
@@ -30,7 +30,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v7
with:
- python-version: "3.11"
+ python-version: "3.14"
- name: Install dependencies
run: |
@@ -53,15 +53,6 @@ jobs:
.release-smoke/bin/python -m pip check
.release-smoke/bin/vidxp --version
- - name: Publish GitHub release
- if: steps.release.outputs.released == 'true'
- env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
- semantic-release publish --tag "${{ steps.release.outputs.tag }}"
- gh release edit "${{ steps.release.outputs.tag }}" \
- --notes-file .release-notes.md
-
- name: Preserve distribution
if: steps.release.outputs.released == 'true'
uses: actions/upload-artifact@v7
@@ -71,9 +62,29 @@ jobs:
if-no-files-found: error
retention-days: 7
- publish-pypi:
+ - name: Preserve release notes
+ if: steps.release.outputs.released == 'true'
+ uses: actions/upload-artifact@v7
+ with:
+ name: github-release-notes
+ path: .release-notes.md
+ if-no-files-found: error
+ retention-days: 7
+
+ validate-release:
if: needs.release.outputs.released == 'true'
needs: release
+ uses: ./.github/workflows/ci.yml
+ with:
+ checkout_ref: ${{ needs.release.outputs.commit_sha }}
+ full: true
+ skip_containers: true
+
+ publish-pypi:
+ if: needs.release.outputs.released == 'true'
+ needs:
+ - release
+ - validate-release
runs-on: ubuntu-latest
environment: pypi
permissions:
@@ -94,7 +105,9 @@ jobs:
if: >-
github.ref == 'refs/heads/main' &&
needs.release.outputs.released == 'true'
- needs: release
+ needs:
+ - release
+ - validate-release
runs-on: ubuntu-latest
permissions:
contents: read
@@ -134,6 +147,28 @@ jobs:
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
+ - name: Build stable control container
+ uses: docker/build-push-action@v7
+ with:
+ context: .
+ load: true
+ platforms: linux/amd64
+ push: false
+ target: control
+ tags: ghcr.io/${{ github.repository }}:${{ needs.release.outputs.version }}-control
+ labels: ${{ steps.metadata.outputs.labels }}
+
+ - name: Build stable worker container
+ uses: docker/build-push-action@v7
+ with:
+ context: .
+ load: true
+ platforms: linux/amd64
+ push: false
+ target: worker
+ tags: ghcr.io/${{ github.repository }}:${{ needs.release.outputs.version }}-worker
+ labels: ${{ steps.metadata.outputs.labels }}
+
- name: Smoke stable container
shell: bash
run: |
@@ -143,8 +178,11 @@ jobs:
trap 'docker rm --force vidxp-release >/dev/null 2>&1 || true' EXIT
docker exec vidxp-release vidxp --version
+ docker exec vidxp-release vidxp init --json
docker exec vidxp-release python -c \
- 'import clip, face_recognition, whisperx'
+ 'import chromadb, cv2, faster_whisper, huggingface_hub, pooch, psutil, sentence_transformers, torch, transformers; assert psutil.virtual_memory().available > 0'
+ docker exec vidxp-release python -c \
+ 'import importlib.metadata as m; assert not any(d.metadata["Name"].lower().startswith("nvidia-") for d in m.distributions())'
docker exec vidxp-release sh -c \
'test ! -d "$HOME/.cache/huggingface" && test ! -d "$HOME/.cache/clip"'
@@ -161,6 +199,21 @@ jobs:
docker logs vidxp-release
exit 1
+ - name: Smoke stable server containers
+ shell: bash
+ run: |
+ for target in control worker; do
+ image="ghcr.io/${{ github.repository }}:${{ needs.release.outputs.version }}-${target}"
+ docker run --rm "$image" vidxp --version
+ done
+ control="ghcr.io/${{ github.repository }}:${{ needs.release.outputs.version }}-control"
+ worker="ghcr.io/${{ github.repository }}:${{ needs.release.outputs.version }}-worker"
+ docker run --rm "$control" vidxp-api --help
+ docker run --rm "$control" vidxp-mcp --help
+ docker run --rm "$worker" vidxp init --json
+ docker run --rm "$worker" python -c \
+ 'import chromadb, cv2, faster_whisper, huggingface_hub, pooch, psutil, sentence_transformers, torch, transformers; assert psutil.virtual_memory().available > 0'
+
- name: Log in to GitHub Container Registry
uses: docker/login-action@v4
with:
@@ -175,8 +228,69 @@ jobs:
shell: bash
run: |
docker logout ghcr.io
- image="ghcr.io/${{ github.repository }}:${{ needs.release.outputs.version }}"
- if ! docker buildx imagetools inspect "$image"; then
- echo "::error::Make the GHCR package public, then rerun this failed job."
- exit 1
- fi
+ for suffix in "" "-control" "-worker"; do
+ image="ghcr.io/${{ github.repository }}:${{ needs.release.outputs.version }}${suffix}"
+ if ! docker buildx imagetools inspect "$image"; then
+ echo "::error::Make the GHCR package public, then rerun this failed job."
+ exit 1
+ fi
+ done
+
+ build-desktop:
+ if: needs.release.outputs.released == 'true'
+ needs:
+ - release
+ - validate-release
+ uses: ./.github/workflows/desktop.yml
+ with:
+ checkout_ref: ${{ needs.release.outputs.commit_sha }}
+
+ publish-github:
+ if: needs.release.outputs.released == 'true'
+ needs:
+ - release
+ - validate-release
+ - publish-pypi
+ - publish-container
+ - build-desktop
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write
+
+ steps:
+ - uses: actions/checkout@v7
+ with:
+ fetch-depth: 0
+ ref: ${{ needs.release.outputs.commit_sha }}
+
+ - name: Set up Python
+ uses: actions/setup-python@v7
+ with:
+ python-version: "3.14"
+
+ - name: Install release tooling
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install -r utils/build-requirements.txt
+
+ - uses: actions/download-artifact@v8
+ with:
+ name: github-release-notes
+ path: .
+
+ - uses: actions/download-artifact@v8
+ with:
+ pattern: vidxp-desktop-*
+ path: desktop-dist/
+ merge-multiple: true
+
+ - name: Publish GitHub release
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ semantic-release publish --tag "${{ needs.release.outputs.tag }}"
+ gh release edit "${{ needs.release.outputs.tag }}" \
+ --notes-file .release-notes.md
+ gh release upload "${{ needs.release.outputs.tag }}" \
+ desktop-dist/* \
+ --clobber
diff --git a/.github/workflows/release-to-test-pypi.yml b/.github/workflows/release-to-test-pypi.yml
index f9c55e6..803d784 100644
--- a/.github/workflows/release-to-test-pypi.yml
+++ b/.github/workflows/release-to-test-pypi.yml
@@ -13,6 +13,9 @@ on:
- "LICENSE"
- "MANIFEST.in"
- "utils/**"
+ - "desktop/**"
+ - "uv.lock"
+ - ".github/workflows/desktop.yml"
- ".github/workflows/release-to-test-pypi.yml"
permissions:
@@ -23,12 +26,21 @@ concurrency:
cancel-in-progress: false
jobs:
+ validate:
+ uses: ./.github/workflows/ci.yml
+ with:
+ checkout_ref: ${{ github.sha }}
+ full: true
+
prerelease:
+ needs: validate
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
+ commit_sha: ${{ steps.release.outputs.commit_sha }}
released: ${{ steps.release.outputs.released }}
+ tag: ${{ steps.release.outputs.tag }}
steps:
- uses: actions/checkout@v7
@@ -38,7 +50,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v7
with:
- python-version: "3.11"
+ python-version: "3.14"
- name: Install dependencies
run: |
@@ -98,3 +110,36 @@ jobs:
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: dist/
+
+ build-desktop:
+ if: needs.prerelease.outputs.released == 'true'
+ needs:
+ - prerelease
+ - publish-testpypi
+ uses: ./.github/workflows/desktop.yml
+ with:
+ checkout_ref: ${{ needs.prerelease.outputs.commit_sha }}
+
+ publish-desktop:
+ if: needs.prerelease.outputs.released == 'true'
+ needs:
+ - prerelease
+ - build-desktop
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write
+
+ steps:
+ - uses: actions/download-artifact@v8
+ with:
+ pattern: vidxp-desktop-*
+ path: desktop-dist/
+ merge-multiple: true
+
+ - name: Attach desktop installers to the prerelease
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ gh release upload "${{ needs.prerelease.outputs.tag }}" \
+ desktop-dist/* \
+ --clobber
diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml
index 268772c..2b2fa6e 100644
--- a/.github/workflows/security.yml
+++ b/.github/workflows/security.yml
@@ -24,3 +24,6 @@ jobs:
- uses: actions/dependency-review-action@v5
with:
fail-on-severity: high
+ # No patched Chroma release exists yet. Chroma is kept on the
+ # deployment's private network and is never published directly.
+ allow-ghsas: GHSA-f4j7-r4q5-qw2c
diff --git a/.gitignore b/.gitignore
index ffcf0a1..55a6fdd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -37,6 +37,16 @@ pnpm-debug.log*
# compiled output
/target
+/desktop/node_modules/
+/desktop/src-tauri/target/
+/desktop/src-tauri/gen/
+/desktop/src-tauri/binaries/uv-*
+/desktop/web/icon.png
+/desktop/src-tauri/icons/android/
+/desktop/src-tauri/icons/ios/
+/desktop/src-tauri/icons/64x64.png
+/desktop/src-tauri/icons/Square*.png
+/desktop/src-tauri/icons/StoreLogo.png
# dependencies
/node_modules
diff --git a/Dockerfile b/Dockerfile
index e74c2f4..75c0d46 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,93 +1,83 @@
# syntax=docker/dockerfile:1
-FROM python:3.11-slim-bookworm AS builder
+FROM python:3.14-slim-trixie AS build-base
WORKDIR /app
-RUN apt-get update && apt-get install -y --no-install-recommends \
- build-essential \
- cmake \
- git \
- pkg-config \
- libopenblas-dev \
- liblapack-dev \
- libjpeg62-turbo-dev \
- libpng-dev \
- && rm -rf /var/lib/apt/lists/*
-
-RUN python -m venv /opt/vidxp
+RUN python -m pip install --no-cache-dir "uv==0.12.0"
-ENV PATH="/opt/vidxp/bin:${PATH}" \
- PIP_DISABLE_PIP_VERSION_CHECK=1
-
-COPY pyproject.toml README.md LICENSE MANIFEST.in ./
-COPY src/vidxp/requirements ./src/vidxp/requirements
-COPY src/vidxp/capabilities/dialogue/requirements.txt ./src/vidxp/capabilities/dialogue/requirements.txt
-COPY src/vidxp/capabilities/scene/requirements.txt ./src/vidxp/capabilities/scene/requirements.txt
-COPY src/vidxp/capabilities/actor/requirements.txt ./src/vidxp/capabilities/actor/requirements.txt
-
-ARG PYTORCH_INDEX_URL="https://download.pytorch.org/whl/cpu"
-
-RUN --mount=type=cache,target=/root/.cache/pip \
- python -m pip install --upgrade pip setuptools wheel \
- && python -m pip install \
- --extra-index-url "${PYTORCH_INDEX_URL}" \
- -r src/vidxp/requirements/storage.txt \
- -r src/vidxp/requirements/frontend.txt \
- -r src/vidxp/capabilities/dialogue/requirements.txt \
- -r src/vidxp/capabilities/scene/requirements.txt \
- -r src/vidxp/capabilities/actor/requirements.txt
+ENV UV_LINK_MODE=copy \
+ UV_COMPILE_BYTECODE=1
+COPY pyproject.toml uv.lock README.md LICENSE MANIFEST.in ./
COPY src ./src
-RUN --mount=type=cache,target=/root/.cache/pip \
- python -m pip install . \
- && python -m pip check
+FROM build-base AS local-builder
+ENV UV_PROJECT_ENVIRONMENT="/opt/vidxp"
+RUN --mount=type=cache,target=/root/.cache/uv \
+ uv sync --frozen --extra local-worker --extra frontend \
+ --no-dev --no-editable \
+ && uv pip check --python /opt/vidxp/bin/python
+
+FROM build-base AS control-builder
+ENV UV_PROJECT_ENVIRONMENT="/opt/vidxp"
+RUN --mount=type=cache,target=/root/.cache/uv \
+ uv sync --frozen --extra server --no-dev --no-editable \
+ && uv pip check --python /opt/vidxp/bin/python
+
+FROM build-base AS worker-builder
+ENV UV_PROJECT_ENVIRONMENT="/opt/vidxp"
+RUN --mount=type=cache,target=/root/.cache/uv \
+ uv sync --frozen --extra server-worker \
+ --no-dev --no-editable \
+ && uv pip check --python /opt/vidxp/bin/python
-FROM python:3.11-slim-bookworm AS runtime
+FROM python:3.14-slim-trixie AS runtime-base
LABEL org.opencontainers.image.title="VidXP" \
- org.opencontainers.image.description="Local-first video indexing and search" \
+ org.opencontainers.image.description="Video indexing and search" \
org.opencontainers.image.source="https://github.com/grayhatdevelopers/vidxp" \
org.opencontainers.image.licenses="MIT"
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
libglib2.0-0 \
- libgl1 \
libgomp1 \
- libjpeg62-turbo \
- liblapack3 \
- libopenblas0 \
- libpng16-16 \
- libsm6 \
- libxext6 \
- libxrender1 \
&& rm -rf /var/lib/apt/lists/* \
- && groupadd --system vidxp \
- && useradd --system --gid vidxp --home-dir /var/lib/vidxp vidxp \
+ && groupadd --system --gid 1000 vidxp \
+ && useradd --system --uid 1000 --gid vidxp \
+ --home-dir /var/lib/vidxp vidxp \
&& mkdir -p /var/lib/vidxp \
&& chown vidxp:vidxp /var/lib/vidxp
-COPY --from=builder /opt/vidxp /opt/vidxp
-
ENV PATH="/opt/vidxp/bin:${PATH}" \
- HOME="/var/lib/vidxp" \
PYTHONDONTWRITEBYTECODE=1 \
- PYTHONUNBUFFERED=1 \
- STREAMLIT_BROWSER_GATHER_USAGE_STATS=false \
- STREAMLIT_SERVER_HEADLESS=true \
- VIDXP_CONFIG_FILE="/var/lib/vidxp/config/repositories.json" \
- VIDXP_INDEX_DIR="/var/lib/vidxp/index"
+ PYTHONUNBUFFERED=1
USER vidxp
WORKDIR /var/lib/vidxp
+FROM runtime-base AS control
+COPY --from=control-builder /opt/vidxp /opt/vidxp
+EXPOSE 8000
+HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
+ CMD ["python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health', timeout=3)"]
+CMD ["vidxp-api"]
+
+FROM runtime-base AS worker
+COPY --from=worker-builder /opt/vidxp /opt/vidxp
+HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
+ CMD ["python", "-m", "vidxp.health_cli", "worker"]
+CMD ["vidxp-worker", "--role", "cpu"]
+
+FROM runtime-base AS local
+COPY --from=local-builder /opt/vidxp /opt/vidxp
+ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false \
+ STREAMLIT_SERVER_HEADLESS=true \
+ VIDXP_CONFIG_FILE="/var/lib/vidxp/config/repositories.json" \
+ VIDXP_INDEX_DIR="/var/lib/vidxp/index"
VOLUME ["/var/lib/vidxp"]
-
EXPOSE 8501
-
HEALTHCHECK --interval=30s --timeout=5s --start-period=30s --retries=3 \
CMD ["python", "-c", "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8501/_stcore/health', timeout=3)"]
-
CMD ["vidxp", "ui", "--host", "0.0.0.0", "--port", "8501"]
diff --git a/INSTALLATION_GUIDE.md b/INSTALLATION_GUIDE.md
index fc5c747..38bbde2 100644
--- a/INSTALLATION_GUIDE.md
+++ b/INSTALLATION_GUIDE.md
@@ -1,218 +1,498 @@
# Installation guide
-The main [README](README.md) introduces the product and contains the shortest
-install-and-run path. This guide covers platform prerequisites, source
-installation, model preparation, and common first-run issues.
+Use this guide to choose one supported VidXP shape and install only what that
+shape needs.
-## Prerequisites
+## Choose an installation
-- Python 3.10 through 3.13
-- FFmpeg available on `PATH` when installing `dialogue`
-- CMake and a C/C++ build toolchain when installing `actor`
+| Goal | Recommended installation | What runs |
+|---|---|---|
+| Try the browser UI locally | `compose.yaml` | One CPU worker/UI container |
+| Native CLI indexing | `vidxp[local-worker]` | CLI plus a supervised local worker |
+| Native browser UI | `vidxp[local-worker,frontend]` | CLI, local worker, Streamlit |
+| Local agent integration | `vidxp[local-worker,mcp]` | Local worker and stdio MCP |
+| Local application server | `vidxp[local-worker,server]` | Loopback HTTP API, remote MCP, local worker |
+| Desktop app | Install the native package | Guided app-owned Python and worker runtime with an optional browser interface |
+| Public/self-hosted service | `compose.coolify.yaml` | API/MCP control plane, CPU worker, PostgreSQL, Chroma, tusd |
+| Embed one capability | `dialogue`, `scene`, or `actor` extra | Python indexing/retrieval code |
-The official `dlib` package is distributed through PyPI as source. Installing
-VidXP therefore compiles it locally unless a compatible build is already cached
-or provided by the environment. Changing from Python 3.13 to 3.11 does not
-remove that requirement.
+Do not install the bare package and expect it to index video. Base `vidxp`
+provides the lightweight command shell, configuration, and typed contracts.
+Local model work requires a capability or worker extra.
-On Windows, install CMake and the Microsoft C++ Build Tools. Do not add
-platform-specific `dlib` wheels to this repository.
+## Requirements
-## Create an environment
+- Python 3.11 through 3.14.
+- Windows x86-64, Linux x86-64, or Apple Silicon macOS 14 and newer.
+- FFmpeg, ffprobe, `libx264`, and `aac` for media operations.
+- CPU execution. **GPU remains explicitly deferred and is not a supported
+ installation profile.**
-Using a virtual environment keeps VidXP and its Python dependencies separate
-from the system Python:
+Python wheels never install operating-system packages. `vidxp init` is the
+explicit, guided FFmpeg setup command; `vidxp doctor` is always read-only.
+Native installation uses
+[uv 0.12 or newer](https://docs.astral.sh/uv/getting-started/installation/).
+Docker users do not need a host Python or uv installation.
+
+## Fastest local setup: Docker
+
+The local image contains the CPU worker, browser UI, and FFmpeg. Model weights
+remain an explicit first-run download.
```bash
-python -m venv venv
+git clone https://github.com/grayhatdevelopers/vidxp.git
+cd vidxp
+docker compose pull
+docker compose run --rm vidxp vidxp prepare
+docker compose up
```
-```bash
-# Windows
-venv\Scripts\activate
+Open `http://localhost:8501`.
+
+| Setting | Default | Purpose |
+|---|---|---|
+| `VIDXP_IMAGE` | `ghcr.io/grayhatdevelopers/vidxp:latest` | Local image tag or digest |
+| `VIDXP_PORT` | `8501` | Host port for the browser UI |
+| `VIDXP_DEVICE` | `cpu` | Runtime device; CPU is the supported value |
+| `vidxp-data` volume | Managed by Compose | Media, indexes, jobs, artifacts, and models |
-# macOS/Linux
-source venv/bin/activate
+Stop the app with `Ctrl+C` or:
+
+```bash
+docker compose down
```
-Upgrade pip before installing:
+`docker compose down` keeps the named volume. Add `--volumes` only when you
+intentionally want to remove all persisted VidXP data.
+
+## Native local setup
+
+uv installs VidXP as an isolated command-line tool, selects Python, and
+resolves CPU PyTorch. Users do not need to create or activate a virtual
+environment.
+
+### 1. Install the profile you need
```bash
-python -m pip install --upgrade pip
+uv --version
+uv tool install --python 3.14 --torch-backend cpu "vidxp[local-worker,frontend]"
```
-## Install from PyPI
+The command above installs the complete local browser app. Replace its bracketed
+extras when you need another surface:
+
+| Goal | Install this package profile |
+|---|---|
+| CLI indexing | `vidxp[local-worker]` |
+| Browser UI | `vidxp[local-worker,frontend]` |
+| Local stdio MCP | `vidxp[local-worker,mcp]` |
+| Local API + remote MCP | `vidxp[local-worker,server]` |
+| UI + API + both MCP transports | `vidxp[local-worker,frontend,server]` |
-Install the lightweight command and application layer:
+For example, install the local MCP profile with:
```bash
-python -m pip install vidxp
+uv tool install --python 3.14 --torch-backend cpu "vidxp[local-worker,mcp]"
```
-Add only the indexing capabilities you need:
+`--torch-backend cpu` prevents an unintended CUDA dependency set on Linux and
+keeps the supported runtime consistent across platforms. If `vidxp` is not
+found after installation, run `uv tool update-shell` and reopen the terminal.
+
+### 2. Initialize FFmpeg
```bash
-python -m pip install "vidxp[dialogue]"
-python -m pip install "vidxp[scene,actor]"
-python -m pip install "vidxp[all]"
+vidxp init
```
-`all` contains all runtime capabilities. It does not include the `frontend` or
-`benchmarks` extras:
+`init` performs these steps:
+
+1. resolves FFmpeg and ffprobe;
+2. executes version checks;
+3. verifies the `libx264` and `aac` encoders;
+4. shows the exact supported package-manager command if anything is missing;
+5. asks before running WinGet or Homebrew; and
+6. stores the verified absolute paths in VidXP’s per-user configuration.
+
+Linux prints an applicable APT, DNF, or pacman command for the user to run in a
+system terminal. VidXP does not automate `sudo`.
+
+For scripts and CI:
```bash
-python -m pip install "vidxp[all,frontend]"
+vidxp init --json \
+ --ffmpeg /absolute/path/to/ffmpeg \
+ --ffprobe /absolute/path/to/ffprobe
```
-The `benchmarks` extra contains evaluation tooling only. Combine it with the
-capability being evaluated, for example `vidxp[scene,benchmarks]`.
+Redirected/noninteractive input never prompts or installs. `--yes` is an
+explicit authorization to run the displayed supported package-manager command.
-## Install from source
+The lightweight one-off form is:
-From the repository root:
+```bash
+uvx vidxp init
+```
+
+Because the paths are stored in per-user configuration, a later permanent
+installation can reuse initialization performed by `uvx`.
+
+### 3. Prepare models
```bash
-python -m pip install .
+vidxp prepare
```
-Include all capabilities and the Streamlit interface:
+The command displays the models that are missing, their pinned download sizes,
+the cache location, and the maximum additional disk use before asking for
+confirmation.
+
+| Capability | Models | Approximate download |
+|---|---|---:|
+| Dialogue | Qwen3 Embedding 0.6B + faster-whisper large-v3-turbo | 2.64 GiB |
+| Scene | SigLIP2 base patch16-224 | 1.43 GiB |
+| Actor | OpenCV Zoo YuNet + SFace | 37 MiB |
+
+Prepare only what you plan to index:
```bash
-python -m pip install ".[all,frontend]"
+vidxp prepare --modalities scene
+vidxp prepare --modalities dialogue,actor
```
-Use an editable installation while developing:
+Noninteractive preparation requires explicit confirmation:
```bash
-python -m pip install -e ".[all,frontend,benchmarks]"
+vidxp prepare --modalities scene --yes
```
-## Run the container
+Indexing, API jobs, and MCP tools never turn the first request into a hidden
+model download.
-Stable container images include every runtime capability and the browser
-interface, but not downloaded model weights. Docker Compose keeps indexes,
-repository configuration, and model caches in the `vidxp-data` volume:
+#### Upgrading from the previous model stack
+
+This release replaces:
+
+- WhisperX `large-v2` and `all-MiniLM-L6-v2` with faster-whisper
+ `large-v3-turbo` and Qwen3 Embedding 0.6B;
+- OpenAI CLIP `ViT-B/32` with SigLIP2 base patch16-224; and
+- `face_recognition`/dlib with OpenCV Zoo YuNet and SFace.
+
+The resulting embeddings, actor thresholds, and provider manifests are not
+compatible with indexes built by the earlier stack. Prepare the new models,
+then re-index the registered videos you want in the active snapshot. Keep the
+old repository until the replacement index has been validated.
+
+### 4. Verify
```bash
-docker compose pull
-docker compose run --rm vidxp vidxp prepare
-docker compose up
+vidxp doctor
```
-The interface is available at `http://localhost:8501`. Set `VIDXP_PORT` in a
-local `.env` file to publish a different host port. Set `VIDXP_IMAGE` to select
-an immutable release instead of `latest`:
+`doctor` checks installed distributions, provider imports, FFmpeg, codecs, and
+the selected pinned model artifacts. It never installs packages, changes the
+operating system, constructs models, or downloads weights.
+
+Limit the check when you prepared a subset:
-```dotenv
-VIDXP_IMAGE=ghcr.io/grayhatdevelopers/vidxp:0.2.0
-VIDXP_PORT=8502
-VIDXP_DEVICE=cpu
+```bash
+vidxp doctor --modalities scene
+vidxp doctor --modalities dialogue,actor
```
-Run the image without Compose when persistent storage is not required:
+### 5. Start the selected surface
+
+- CLI: `vidxp --help`
+- Browser UI: `vidxp ui`
+- Local HTTP API and remote MCP: `vidxp-api`
+- Local stdio MCP: `vidxp-mcp`
+
+## First CLI index
```bash
-docker run --rm -p 8501:8501 ghcr.io/grayhatdevelopers/vidxp:latest
+vidxp media import samplevideo.mp4 --json
+vidxp index create
+vidxp search scene "a yellow taxi on a city street"
```
-## Verify the installation
+- `media import` copies and validates the video in managed storage.
+- `media list` rediscovers registered filenames and IDs.
+- `index list` shows active searchable membership.
+- Search/query without `--media-id` ranks across every indexed video.
+- `--media-id ` restricts results to one video.
-Display the installed package version:
+Index one capability or change scene cadence:
```bash
-vidxp --version
+vidxp index create \
+ --modality scene \
+ --scene-sample-fps 1
```
-Check the Python and system dependencies needed by all indexing capabilities:
+## Optional dependency extras
+
+Extras are composable:
+
+| Extra | Includes | Does not include |
+|---|---|---|
+| `storage` | Embedded Chroma and host monitoring | Model providers or UI |
+| `dialogue` | Storage, transcription, dialogue embeddings | Scene/actor providers |
+| `scene` | Storage, PyTorch, Transformers, OpenCV, Pillow | Dialogue/actor providers |
+| `actor` | Storage, OpenCV, YuNet/SFace support | Dialogue/scene providers |
+| `all` | Dialogue, scene, and actor | Grounded-query model client and UI |
+| `local-worker` | `all` plus grounded-query client | Browser UI, MCP SDK, HTTP server |
+| `frontend` | Streamlit | Worker providers |
+| `mcp` | MCP SDK | Worker providers |
+| `slm` | OpenAI-compatible local query-model client | A language model or model weights |
+| `server` | FastAPI, remote MCP, PostgreSQL/control dependencies | Local providers |
+| `server-worker` | Server storage client and every CPU provider | Public API process |
+| `benchmarks` | Benchmark adapter dependencies | Local worker providers |
+| `test` | Pytest and HTTP test client | Product runtime features |
+
+The `server` extra is intentionally model-free. Use it with `local-worker` for
+a loopback all-in-one API, or use the separate control and worker images for a
+deployed server.
+
+## Local MCP
+
+After installing `local-worker,mcp`:
```bash
-vidxp doctor
+vidxp mcp-config
```
-`vidxp doctor` imports the selected dependencies but does not download model
-weights. A base-only install therefore reports which capability extras are
-missing. Restrict the check when diagnosing one capability:
+The command prints a complete, import-ready `mcpServers` JSON object with the
+resolved absolute `vidxp-mcp` executable and default repository argument.
```bash
-vidxp doctor --modalities scene
+vidxp-mcp --check --repository default
```
-If the frontend extra was installed, start the interface with `vidxp ui`. It
-uses the active repository configured by `vidxp repositories use` and runs
-until stopped with `Ctrl+C`.
+The self-check performs a real stdio handshake, discovers tools, calls the
+read-only index-status tool, prints resolved data/index paths, and exits.
+
+Useful alternatives:
+
+| Command | Result |
+|---|---|
+| `vidxp mcp-config --repository ` | Client JSON for a named repository |
+| `vidxp-mcp --print-config` | JSON without other output |
+| `vidxp-mcp --help` | Options plus a copy/paste example |
+
+## Local HTTP API
+
+Install `local-worker,server`, prepare models, then run:
-## Prepare models
+```bash
+vidxp-api
+```
-Model weights are not part of the Python package:
+The unauthenticated local default is deliberately loopback-only:
-| Capability | Model |
+| Endpoint | Purpose |
|---|---|
-| Dialogue embeddings | `sentence-transformers/all-MiniLM-L6-v2` |
-| Transcription | WhisperX `large-v2` |
-| Scene search | CLIP `ViT-B/32` |
-| Word alignment | WhisperX model selected for the detected language |
+| `http://127.0.0.1:8000/docs` | Interactive OpenAPI |
+| `http://127.0.0.1:8000/openapi.json` | Machine-readable contract |
+| `http://127.0.0.1:8000/health` | Process liveness |
+| `http://127.0.0.1:8000/ready` | Aggregate runtime readiness |
+| `http://127.0.0.1:8000/mcp` | Streamable HTTP MCP |
+
+Do not bind an unauthenticated API to a non-loopback address. Public
+deployments require static bearer or OIDC authentication and should use the
+supported server Compose topology.
+
+## Published container images
+
+Every stable release publishes three Linux/amd64 images from the same validated
+release commit:
+
+| Image | Published tag | Purpose |
+|---|---|---|
+| Local | ``, `.`, `latest` | CPU worker + browser UI |
+| Control | `-control` | API, remote MCP, migrations, private upload hooks |
+| Worker | `-worker` | CPU model providers and server storage client |
+
+Repository:
+
+```text
+ghcr.io/grayhatdevelopers/vidxp
+```
+
+The local image is used by `compose.yaml`. The control and worker images are
+used by `compose.coolify.yaml`.
+
+## Coolify and server Compose
+
+The supported server topology contains:
+
+| Control plane | Execution and storage | Ingestion |
+|---|---|---|
+| FastAPI + Streamable HTTP MCP | One CPU worker, PostgreSQL, Chroma | tusd + private hook service |
-Download and cache the fixed dialogue, transcription, and scene models before
-indexing:
+It is a single-node, single-repository deployment. It does not claim
+multi-replica failover, hosted database substitution, or GPU execution.
+
+Follow [Coolify deployment](docs/deployment/coolify.md) for:
+
+- exact control/worker image variables;
+- required secrets and public hostnames;
+- proxy rules for MCP and resumable uploads;
+- explicit worker model preparation through the authenticated API or MCP;
+- readiness/migration gates;
+- persistent volumes and backups; and
+- the optional, explicitly prepared Ollama profile.
+
+## Desktop application
+
+The operating-system package installs the VidXP application itself. On first
+launch, the application configures local processing in this order:
+
+```text
+FFmpeg preflight
+→ explicit package-manager consent when missing
+→ app-owned Python and VidXP runtime provisioning
+→ optional model preparation
+→ full doctor
+→ atomic runtime activation
+```
+
+Capability code is selected independently from the optional browser interface.
+Model downloads can be deferred, and the model cache can use a directory chosen
+through the operating system's folder picker. Later launches open the browser
+interface directly when it was selected. After configuration the Tauri
+supervisor stays in the system tray instead of keeping a window open. Closing
+the window hides it; **Quit VidXP** from the tray performs the complete
+interface and worker shutdown.
+
+The NSIS/DMG/AppImage packages do not install FFmpeg themselves. The application
+uses a native confirmation dialog before running a supported package manager.
+Windows SmartScreen and macOS Gatekeeper may require explicit confirmation
+until signing is added. Build instructions are in
+[Desktop application](docs/desktop.md).
+
+## Install from source
+
+Source installation is for contributors and reproducible development, not the
+normal public quick start:
```bash
-vidxp prepare
+git clone https://github.com/grayhatdevelopers/vidxp.git
+cd vidxp
+uv sync --frozen \
+ --extra local-worker \
+ --extra frontend \
+ --extra mcp \
+ --extra server
+uv run --no-sync vidxp init
+uv run --no-sync vidxp prepare
+uv run --no-sync vidxp doctor
+uv run --no-sync vidxp ui
```
-WhisperX selects its alignment model after detecting the video's language. Cache
-a known language explicitly when required:
+The lock routes PyTorch through the official CPU index on Linux and Windows.
+
+## Data and configuration locations
+
+Local commands do not treat the current directory as their storage root.
+
+| Platform | Data root | Configuration root |
+|---|---|---|
+| Windows | `%LOCALAPPDATA%\VidXP` | `%APPDATA%\VidXP` |
+| macOS | `~/Library/Application Support/VidXP` | `~/Library/Application Support/VidXP` |
+| Linux | `${XDG_DATA_HOME:-~/.local/share}/VidXP` | `${XDG_CONFIG_HOME:-~/.config}/VidXP` |
+
+The data root contains:
+
+```text
+VidXP/
+ repositories/
+ default/
+ models/
+```
+
+The desktop application uses this same root for repositories and its default
+model cache. Its managed Python environments and active-runtime pointer remain
+in the identifier-scoped private application-data directory. On Windows,
+per-user program files are installed separately under
+`%LOCALAPPDATA%\Programs\VidXP`.
+
+Use an alternate root for one CLI invocation:
```bash
-vidxp prepare --option dialogue.alignment_language=en
+vidxp --data-dir /path/to/vidxp-data ui
```
-SentenceTransformer and WhisperX use the Hugging Face cache; CLIP uses its own
-user cache. These caches normally live outside the virtual environment, so
-removing the environment does not necessarily remove downloaded model weights.
+Set `VIDXP_DATA_DIR` when the CLI, UI, local MCP, and local API should all use
+the same alternate root. `VIDXP_INDEX_DIR` and `VIDXP_MODEL_CACHE` are advanced
+single-location overrides. Docker uses its declared volumes instead.
-## First indexing run
+## Troubleshooting
-A successful installation means the commands and Python dependencies are
-available. It does not mean the model weights have been downloaded.
+### `vidxp` is not found
-If `vidxp prepare` was not run first, the initial indexing command downloads any
-missing models before processing the video:
+- Run `uv tool update-shell`, restart the shell, and try again.
+- Confirm the installation with `uv tool list`.
+
+### FFmpeg or a codec is missing
```bash
-vidxp index create samplevideo.mp4
+vidxp init
```
-Keep the terminal and internet connection open until VidXP reports that the
-index is ready. Machine-learning dependencies and model caches can consume
-several gigabytes, and the first run takes longer while models are downloaded.
-Exact sizes depend on the platform and selected package builds.
+Review the displayed package-manager command before approving it. Rerun
+`vidxp doctor` afterward.
+
+### Linux or Windows starts resolving NVIDIA packages
-VidXP saves local progress and the final state in
-`chroma_data/index_status.json`. Search is unavailable until indexing completes.
-If the process stops early, run indexing again; VidXP clears the incomplete
-single-video index before rebuilding it.
+Reinstall the managed tool with the explicit CPU option:
-## Common problems
+```bash
+uv tool install --force --python 3.14 --torch-backend cpu \
+ "vidxp[local-worker,frontend]"
+```
-### `dlib` fails to install
+Do not use plain `pip install "vidxp[local-worker]"` on Linux unless you have
+already installed and constrained the intended CPU PyTorch build.
-Confirm that CMake and a working C/C++ compiler are installed and visible from
-the active terminal. On Windows, use the Microsoft C++ Build Tools.
+### uv cannot hardlink from its cache
-### FFmpeg is not found
+This warning means the cache and environment are on filesystems that cannot
+hardlink to each other. Installation falls back to copying and remains valid.
+Suppress the warning when that layout is intentional:
-Run `ffmpeg -version` in the same terminal. Install FFmpeg or add its executable
-directory to `PATH`, then rerun `vidxp doctor`.
+```bash
+uv tool install --link-mode copy --python 3.14 --torch-backend cpu \
+ "vidxp[local-worker,frontend]"
+```
-### A search says the index is not ready
+or set `UV_LINK_MODE=copy`.
-Wait for the active indexing command to finish. If the previous process ended
-or failed, run `vidxp index create` again to rebuild the incomplete local
-index.
+### A model is missing or the worker is offline
-### The first indexing run appears slow
+```bash
+vidxp prepare
+vidxp doctor
+```
+
+For offline operation, prepare while network access is allowed, then set
+`VIDXP_ALLOW_MODEL_DOWNLOADS=false`.
+
+### Search says the index is not ready
+
+- Check `vidxp index status`.
+- Check `vidxp jobs list` and inspect the failed job.
+- Retry indexing after fixing the reported dependency/model error.
+- A failed or cancelled generation does not replace the previous active
+ snapshot.
+
+### Resetting local data
+
+VidXP intentionally does not provide an implicit destructive reset. Inspect the
+resolved paths first:
+
+```bash
+vidxp repositories show
+```
-Check the terminal for model-download or indexing progress. Model preparation,
-transcription, scene analysis, and actor detection are separate stages. Use
-`vidxp prepare` before indexing or select fewer capabilities with
-one or more `--modality` options.
+Back up or remove only the specific per-user repository/model directories you
+intend to discard.
diff --git a/MANIFEST.in b/MANIFEST.in
index 993b28c..383bfce 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,5 +1,6 @@
include README.md
include LICENSE
+include docs/images/logo.png
global-exclude *.whl
global-exclude *.pyc
global-exclude __pycache__
diff --git a/README.md b/README.md
index d151fda..02116d8 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-
-
-
+
+
+
VidXP
@@ -10,258 +10,221 @@
Search video by what was said, what appeared on screen, and recurring faces.
-
-
- VidXP is a local-first video indexing and search engine distributed as a Python
- package.
-
-
-
-
-
You can use it:
-
- - From the command line
- - Through its browser interface
- - As a desktop app
- - As an API
- - As an MCP, with your agents (coming soon ⚡️)
-
- As an indexing and retrieval layer inside another application
-
+
+ A local-first video search engine for people, applications, and AI agents.
+
- Dialogue search · Scene search · Actor grouping · CLI · Browser UI · Python API
+ Dialogue search · Scene search · Actor grouping
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-## Why VidXP
+## Find the moment, not the timestamp
-Finding one moment in a video should not require scrubbing through the entire
-timeline. VidXP builds a searchable index from three kinds of evidence:
+VidXP makes one video—or an entire collection—searchable by meaning:
-- **Dialogue:** semantic search over timestamped transcripts.
-- **Scenes:** text-to-frame search.
-- **Actors:** groups similar detected faces and exports a highlighted video for a selected cluster.
+- **Dialogue search:** type what you remember someone saying and jump to the
+ matching moments.
+- **Scene search:** describe what appeared on screen and find the closest
+ visual matches.
+- **Actor matching:** find recurring faces within a video and export a
+ highlighted video for a selected group.
-After the required model weights are available, video processing and search run completely locally, for your privacy and security.
+Use it to search years of family videos, add video search to an editing
+workflow, or let an AI agent answer questions using evidence from your own
+video library. Your videos can stay on your machine.
-Some ideas on how to use VidXP:
-- Use it as way to find your favorite relatives in a huge folder of wedding videos (been there, done that)
-- Use it in your application, allow users to search videos (an idea: use it alongside a video-editing application)
-- Use it as an "understanding" layer so your LLM / agent can understand videos
+[](https://www.linkedin.com/feed/update/urn:li:activity:7343569473720725505/)
-[](https://www.linkedin.com/feed/update/urn:li:activity:7343569473720725505/)
+## Start here
+Choose the setup that fits how you want to use VidXP.
-## Current capabilities
+### 1. CLI and MCP
-| Capability | Available now | Result |
-|---|---|---|
-| Dialogue search | Transcription, word alignment, semantic phrase indexing | Matching video time |
-| Scene search | Text search over sampled video frames | Matching frame and time |
-| Actor grouping | Within-video face detection and clustering | Clustered detections and highlighted output video |
-| Interfaces | Typer CLI, Streamlit browser interface, Python API | Interactive or programmatic use |
-| Index management | Saved progress, ready/failed state, cancellation, isolated programmatic runs | Traceable and reusable indexes |
+For direct use, scripts, and local AI agents, install
+[uv](https://docs.astral.sh/uv/getting-started/installation/), then run:
-## Quick start
+```bash
+# Install the CPU edition
+uv tool install --python 3.14 --torch-backend cpu "vidxp[local-worker,mcp]"
-VidXP supports Python 3.10 through 3.13 and requires FFmpeg. See the
-[installation guide](INSTALLATION_GUIDE.md) for the `dlib` compiler
-requirements, source installation, model preparation, and troubleshooting.
+# Set up FFmpeg
+vidxp init
-Install the command line and browser interface with
-[pipx](https://packaging.python.org/en/latest/guides/installing-stand-alone-command-line-tools/).
-The command is available on your `PATH` while VidXP and its dependencies remain
-isolated:
+# Download search models
+vidxp prepare
-```bash
-pipx install "vidxp[all,frontend]"
+# Check everything
+vidxp doctor
+
+# Connect an MCP client
+vidxp mcp-config
```
-Install only the capabilities you need with a smaller selection such as
-`pipx install "vidxp[scene,frontend]"` or
-`pipx install "vidxp[dialogue,scene]"`. To import VidXP from another Python
-project, install it into that project's environment instead; the
-[installation guide](INSTALLATION_GUIDE.md) covers that path.
+`uv` installs and manages Python for VidXP. `vidxp init` checks FFmpeg and
+shows an operating-system install command if it is missing.
-Confirm the installed package and its runtime dependencies:
+The CLI works without MCP. Add the browser app with:
```bash
-vidxp --version
-vidxp doctor
+uv tool install --python 3.14 --torch-backend cpu \
+ "vidxp[local-worker,mcp,frontend]"
+vidxp ui
```
-The first use of each capability downloads its model weights. Download the fixed
-dialogue, transcription, and scene models in advance with:
+If the `vidxp` command is not found, run `uv tool update-shell` once and reopen
+the terminal.
-```bash
-vidxp prepare
-```
+### 2. Desktop app
-## Index and search
+Download the installer for Windows, Apple Silicon macOS, or Linux from
+[GitHub Releases](https://github.com/grayhatdevelopers/vidxp/releases).
-Build an index containing dialogue, scene, and actor information:
+The desktop installer manages Python, VidXP, and the local worker for you. On
+first launch, choose the search capabilities you want, where model files should
+live, and whether to download them immediately. Python and uv do not need to be
+installed separately.
-```bash
-vidxp index create samplevideo.mp4
-```
+After setup, VidXP can stay available from the system tray. The browser
+interface is optional and can be left out of the installed VidXP runtime.
+
+### 3. Docker for a server
-Search the completed index:
+Run the published all-in-one image on a home server or another single machine:
```bash
-vidxp search dialogue "the bread just came out of the oven"
-vidxp search scene "a yellow taxi on a city street" --top-k 5
-vidxp actors list
-vidxp actors render 1 samplevideo.mp4
+docker run --rm --init \
+ -p 8501:8501 \
+ -v vidxp-data:/var/lib/vidxp \
+ ghcr.io/grayhatdevelopers/vidxp:latest
```
-Index only selected capabilities or sample fewer visual frames:
+For a long-lived server, pin a published version instead of `latest`. For a
+Coolify deployment, use the published `-control` and `-worker` images with
+[`compose.coolify.yaml`](compose.coolify.yaml)—no repository build is required.
+See the [Coolify guide](docs/deployment/coolify.md) for the complete setup.
-```bash
-vidxp index create samplevideo.mp4 --modality scene --frame-stride 5
-```
+## What you can do today
-Repeat `--modality` to combine `dialogue`, `scene`, and `actor`.
-Run `vidxp --help` or any command followed by `--help` for the complete command
-reference.
+- Build a reusable search library from one video or a whole collection.
+- Search dialogue by meaning, even when you do not remember the exact words.
+- Find visual moments by describing the scene you are looking for.
+- Group recurring faces in a video and render a highlighted actor overlay.
+- Search one selected video or every video in the active library.
+- Open matching timestamps and export downloadable clips and overlays.
+- Keep personal, client, or project libraries separate.
+- Follow long indexing jobs, cancel them, and keep the last working index if a
+ later run fails.
+- Use the browser app, automate the CLI, connect an MCP agent, or integrate
+ VidXP into another application.
-Use named repositories to keep index locations and devices centrally
-configured:
+## A first search
+
+The browser app guides you through importing and indexing. The same flow from
+the command line is:
```bash
-vidxp repositories add team --index-dir ./indexes/team --device cuda --use
-vidxp repositories list
-```
+# Add a video
+vidxp media import samplevideo.mp4 --json
-## Browser interface
+# Index the returned media ID
+vidxp index create
-Install the `frontend` extra and start:
+# Find a visual moment
+vidxp search scene "a yellow taxi on a city street"
-```bash
-vidxp ui
+# Find something that was said
+vidxp search dialogue "the bread just came out of the oven"
```
-The command uses the active named repository, starts a local Streamlit server,
-and remains active until stopped.
-The interface can upload a video, start or cancel indexing, restore saved
-progress after a page reload, and search the capabilities available in the
-completed index.
+Results include the source video, timestamps, match score, and the evidence
+used to find the moment. Add `--media-id ` to search only one video.
-## Container
+Run `vidxp --help` or `vidxp --help` for the full command reference.
-Stable releases are available from GitHub Container Registry. Start the local
-interface with persistent index and model storage by running:
+## For applications and AI agents
-```bash
-docker compose up
-```
+Use the Python package to add selected VidXP capabilities directly to an
+application, or use the HTTP API when VidXP runs as a service.
-See the [installation guide](INSTALLATION_GUIDE.md#run-the-container) for model
-preparation, configuration, and direct `docker run` usage.
-
-## Use VidXP as a Python package
-
-The programmatic API supports isolated multi-video runs, supplied timestamped
-transcripts, resumable per-video checkpoints, and metadata-rich top-k results.
-
-```python
-from vidxp.core import IndexConfig, VideoSource
-from vidxp.core.runner import run_index
-from vidxp.capabilities.scene.operations import search_scene
-
-config = IndexConfig(
- dataset="my-library",
- split="local",
- run_id="demo",
- enabled_modalities=("scene",),
- frame_stride=5,
-)
-
-run_index(
- [
- VideoSource(video_id="video-1", path="videos/first.mp4"),
- VideoSource(video_id="video-2", path="videos/second.mp4"),
- ],
- config,
-)
-
-results = search_scene("a person enters a taxi", config=config, top_k=5)
-for hit in results.hits:
- print(hit.video_id, hit.start, hit.end, hit.score)
-```
+MCP clients can add and discover videos, start indexing, search dialogue and
+scenes, ask questions about a library, and create clips or actor overlays.
+Local agents can connect over stdio; remote agents can connect to a
+self-hosted VidXP server.
-The [Python indexing and retrieval contract](docs/benchmarking/core_contract.md)
-documents configuration, stored metadata, result fields, and run layout.
+- [Python, HTTP, and MCP installation](INSTALLATION_GUIDE.md)
+- [Optional capability packages](INSTALLATION_GUIDE.md#optional-dependency-extras)
+- [Coolify server setup](docs/deployment/coolify.md)
-## Recommended specs
+## Downloads and storage
-> Coming soon
+First setup downloads only the models needed for the capabilities you select.
+VidXP shows the download size and destination before it starts.
----
+| Capability | Approximate model download |
+|---|---:|
+| Dialogue search | 2.64 GiB |
+| Scene search | 1.43 GiB |
+| Actor matching | 37 MiB |
-## Roadmap
+Leave additional space for the VidXP runtime, indexes, source videos, and
+exported results.
-VidXP is an evolving beta. We'd love to hear your feedback and where you'd like to see the project go.
+By default, the CLI and desktop app share the same VidXP data directory:
-| Area | Current foundation | Direction |
-|---|---|---|
-| Search results | Top result in the CLI; structured top-k Python results | Rich ranked results, metadata, previews, and filtering across interfaces |
-| Temporal search | Frame and transcript-phrase timestamps | Better time ranges, scene boundaries, aggregation, and ranking |
-| Video collections | One local CLI/UI index; isolated multi-video Python runs | User-facing persistent multi-video libraries and index management |
-| Actor workflows | Face clustering and highlighted video export | Cluster browsing, labeling, actor search, and stronger tracking |
-| Speaker context | Timestamped dialogue search | Active-speaker detection and links between speech and visible people |
-| Product experience | CLI and browser indexing/search | Clearer progress, result navigation, recovery, and long-running job controls |
-| Evaluation | DiDeMo and HiREST baselines | Combined and component benchmarks, beginning with a LongVALE pilot |
+| Platform | Default location |
+|---|---|
+| Windows | `%LOCALAPPDATA%\VidXP` |
+| macOS | `~/Library/Application Support/VidXP` |
+| Linux | `${XDG_DATA_HOME:-~/.local/share}/VidXP` |
-## Models and local data
+Docker keeps the same data in the `vidxp-data` volume shown above.
-| Capability | Model |
-|---|---|
-| Dialogue embeddings | `sentence-transformers/all-MiniLM-L6-v2` |
-| Transcription | WhisperX `large-v2` |
-| Scene search | CLIP `ViT-B/32` |
-| Word alignment | WhisperX model selected for the detected language |
+## Product roadmap
+
+The next product improvements are focused on:
-VidXP maintains the standard local CLI/UI index in `chroma_data/`. Starting a
-new local indexing run replaces the previous or incomplete local index. Model
-caches normally live outside this directory and outside the virtual environment.
+- labeling actor groups and matching the same person across different videos;
+- more reliable face tracking across angle, lighting, motion, and occlusion;
+- connecting visible people with the dialogue they are speaking;
+- better search ranking, time ranges, and natural-language questions across a
+ whole library;
+- richer previews, timelines, filters, saved searches, and result playback;
+- easier organization for large personal and project video collections;
+- faster indexing and supported GPU acceleration; and
+- smoother desktop updates, repair, and model management.
-## Documentation and project links
+VidXP is in beta. Feedback about search quality, actor workflows, and real
+video-library use cases is especially useful.
+
+## Help and project links
- [Installation and troubleshooting](INSTALLATION_GUIDE.md)
-- [Benchmarking status and results](docs/benchmarking/README.md)
-- [Adding a capability](docs/adding-a-capability.md)
+- [Desktop application](docs/desktop.md)
+- [Coolify deployment](docs/deployment/coolify.md)
- [Changelog](CHANGELOG.md)
- [Issue tracker](https://github.com/grayhatdevelopers/vidxp/issues)
- [MIT license](LICENSE)
-
## Contributing
-See [CONTRIBUTING.md](./docs/CONTRIBUTING.md) for guidelines, maintainers, and how to submit PRs. AI/vibe-coded PRs welcome!
+Contributions are welcome. Read the
+[contribution guide](docs/CONTRIBUTING.md) before opening a pull request.
## Credits
-Built by Grayhat Developers PVT Ltd. 2026. Maintained by the community.
+Built by Grayhat Developers PVT Ltd. and maintained by the community.
Email: info@grayhat.studio
-
+
diff --git a/changes/+artifacts.feature.md b/changes/+artifacts.feature.md
new file mode 100644
index 0000000..a781a4f
--- /dev/null
+++ b/changes/+artifacts.feature.md
@@ -0,0 +1,8 @@
+Add managed video artifacts:
+
+- create source-preserving or broadly compatible MP4 clips from a media ID while rejecting ranges outside the source or configured duration limit
+- reuse a ready clip for the same source checksum, interval, and output profile
+- render actor overlays from stable composite cluster IDs bound to an immutable snapshot
+- validate generated video and the requested output profile before atomic publication
+- durably synchronize managed publication and removal on platforms that support directory `fsync`
+- expose opaque artifact metadata and authorized downloads through CLI, HTTP, and MCP without leaking repository paths
diff --git a/changes/+benchmarking.feature.md b/changes/+benchmarking.feature.md
new file mode 100644
index 0000000..d05175f
--- /dev/null
+++ b/changes/+benchmarking.feature.md
@@ -0,0 +1 @@
+Add optional DiDeMo and HiREST benchmark commands with guided, resumable preparation of pinned inputs; media and checksum validation; explicit documented substitutions; generation-aware indexes; opaque internal media IDs; scene-cadence controls; and invocation-time checks that name the exact missing benchmark extra instead of breaking unrelated commands. Retain the legacy full-corpus baselines and record bounded real SigLIP2/Qwen3 provider smokes separately.
diff --git a/changes/+durable-workflows.feature.md b/changes/+durable-workflows.feature.md
new file mode 100644
index 0000000..7bb07b7
--- /dev/null
+++ b/changes/+durable-workflows.feature.md
@@ -0,0 +1,9 @@
+Run long operations through durable, inspectable jobs:
+
+- execute indexing, fused search, grounded questions, model preparation, snippets, and actor overlays through versioned DBOS workflows
+- use SQLite-backed local jobs and PostgreSQL-backed server jobs with the same typed progress, cancellation, retry, error, and result contracts
+- pin search and actor-overlay work to the exact immutable snapshot selected at submission
+- freeze descending job pages so concurrent submissions do not shift later cursors
+- materialize actor-cluster summaries and advance actor-detection cursors without rescanning all retained detections for every page
+- bind workflow recovery to the package version and implementation digest while keeping legacy atomic-search records readable and recoverable
+- supervise detached local workers without creating a second job-state store
diff --git a/changes/+model-providers.breaking.md b/changes/+model-providers.breaking.md
new file mode 100644
index 0000000..897ec46
--- /dev/null
+++ b/changes/+model-providers.breaking.md
@@ -0,0 +1,8 @@
+Re-index videos created with the previous provider stack:
+
+- replace WhisperX `large-v2` and `all-MiniLM-L6-v2` with pinned faster-whisper `large-v3-turbo` and Qwen3 Embedding 0.6B for dialogue
+- replace OpenAI CLIP `ViT-B/32` with pinned SigLIP2 base patch16-224 for scene retrieval
+- replace `face_recognition`/dlib with pinned OpenCV Zoo YuNet and SFace for face detection and within-video grouping
+- record model revisions, weight checksums, licenses, precision, runtime identity, and expected download sizes in the index/model contracts
+
+The new embeddings, face thresholds, and provider manifests are intentionally incompatible with old indexes.
diff --git a/changes/+product-interfaces.feature.md b/changes/+product-interfaces.feature.md
new file mode 100644
index 0000000..eed9c25
--- /dev/null
+++ b/changes/+product-interfaces.feature.md
@@ -0,0 +1,9 @@
+Expose the shared VidXP application through each supported product surface:
+
+- provide CLI commands for media, index membership, cross-video search, grounded questions, jobs, repositories, actors, and artifacts
+- provide a browser UI that reloads cataloged media in fresh sessions, derives search/query controls from capability metadata, confirms model downloads, shows live job progress, submits search with Enter, stops polling terminal jobs, and describes visual-similarity results accurately
+- provide a Python indexing and retrieval layer for applications
+- provide a versioned HTTP API with OpenAPI, media transfer, readiness, durable jobs, and artifact delivery
+- provide local stdio and remote Streamable HTTP MCP with import-ready client configuration, a real protocol self-check, media/index discovery, job polling/retry, and clip download links
+- provide a Tauri desktop application that preflights FFmpeg with native consent, provisions selected capabilities and optional browser dependencies, supports a custom model location and deferred downloads, opens configured browser profiles directly, owns its runtime from a native system tray with full shutdown on Quit, builds as a Windows GUI executable, and hides supervised child consoles
+- provide an all-in-one local container using the same repository and worker behavior
diff --git a/changes/+public-transports.security.md b/changes/+public-transports.security.md
new file mode 100644
index 0000000..43a1520
--- /dev/null
+++ b/changes/+public-transports.security.md
@@ -0,0 +1,9 @@
+Protect public HTTP and MCP transports:
+
+- support constant-time static bearer authentication or cached asymmetric OIDC/JWKS validation with exact issuer, audience, algorithm, HTTPS, and unsafe-URL-character checks
+- enforce repository read, write, and admin scopes after authentication
+- declare bearer authentication in protected OpenAPI and keep authenticated schemas private
+- enforce independent trusted Host, Origin/CORS, request-size, query-length, actor-identifier, and streamed-upload bounds
+- return typed public errors with correlation IDs while retaining internal workflow tracebacks
+- derive opaque repository-, subject-, and operation-scoped idempotency keys for retries
+- deliver authorized media and artifacts through confined handles with checksum ETags and range responses, without exposing storage keys or filesystem paths
diff --git a/changes/+release-publication.feature.md b/changes/+release-publication.feature.md
new file mode 100644
index 0000000..34b5dac
--- /dev/null
+++ b/changes/+release-publication.feature.md
@@ -0,0 +1,7 @@
+Align public release artifacts:
+
+- stamp the Python package, Tauri package, desktop runtime manifest, and native app versions through semantic release
+- build PyPI distributions and local/control/worker container images from the exact validated release commit
+- build unsigned NSIS, DMG, and AppImage desktop installers from locked target-specific profiles and attach them to the matching GitHub release
+- verify the minimal wheel separately from optional capability, UI, MCP, server, benchmark, and test extras
+- keep the repository README's relative assets while rewriting them only in the temporary PyPI build
diff --git a/changes/+runtime-setup.feature.md b/changes/+runtime-setup.feature.md
new file mode 100644
index 0000000..72fd855
--- /dev/null
+++ b/changes/+runtime-setup.feature.md
@@ -0,0 +1,12 @@
+Make local setup and execution explicit and observable:
+
+- add `vidxp init` to verify FFmpeg, ffprobe, `libx264`, and `aac`, and request consent before a supported package-manager command
+- make `vidxp prepare` disclose every missing pinned model, its expected bytes, the cache location, total additional space, and live byte progress before downloading
+- use bounded HTTP model downloads instead of Xet transfers that can remain parked at zero bytes
+- keep `vidxp doctor` read-only and report Python, provider, codec, worker, storage, and prepared-model readiness separately
+- prevent indexing, API, or MCP first requests from silently downloading models
+- place repositories and model caches in the operating system's per-user VidXP data root instead of the shell's current directory
+- sample scenes by time and source frame rate with independent actor cadence and CLI, UI, API, and MCP controls
+- skip dialogue cleanly for videos without audio instead of failing the entire index
+- avoid an arbitrary free-memory refusal, allow realistic worker startup time, hide the Windows worker console, prevent duplicate indexing previews, and stop owned workers when the local UI, API, or MCP process exits
+- pass local-worker settings through a one-use owner-readable bootstrap without HTTP credentials, with startup backoff, bounded log rotation, stale-process cleanup, and executable/provider identity checks
diff --git a/changes/+server-deployment.feature.md b/changes/+server-deployment.feature.md
new file mode 100644
index 0000000..4a8a44b
--- /dev/null
+++ b/changes/+server-deployment.feature.md
@@ -0,0 +1,9 @@
+Add a production-oriented single-node Compose/Coolify deployment:
+
+- publish separate model-free control and CPU-provider worker images from the same validated release commit
+- persist catalogs and immutable snapshot metadata in PostgreSQL, DBOS state in its own schema, vectors in Chroma, and media/models in named volumes
+- accept streamed multipart uploads up to 256 MiB and large authenticated resumable tus uploads with private hooks, recovery, retention, atomic reservation, and per-principal quota enforcement
+- gate startup on migrations, Chroma connectivity, API/worker health, and explicit model preparation
+- keep PostgreSQL, Chroma, hooks, Ollama, and upload internals off the public network
+- document the supported one-node, one-worker, one-repository-per-stack boundary and graceful worker/tusd shutdown behavior
+- support optional grounded-query generation only after the operator explicitly configures and prepares an evaluated model
diff --git a/changes/+video-library.feature.md b/changes/+video-library.feature.md
new file mode 100644
index 0000000..b17ae48
--- /dev/null
+++ b/changes/+video-library.feature.md
@@ -0,0 +1,9 @@
+Build a persistent multi-video library:
+
+- stream, hash, and ffprobe local imports before publishing them under opaque media IDs
+- store each indexed video as an immutable generation and atomically update the active multi-video snapshot only after validation
+- preserve the previous searchable snapshot when indexing fails or is cancelled
+- re-index, remove, or clear individual media without rebuilding unrelated videos
+- rank top-k results across the active collection or restrict search and grounded questions with a `media_id`
+- list registered and actively indexed videos with bounded, stable cursor pages that reject malformed, noncanonical, or overflowing cursors
+- import large local files without routing their bytes through the browser upload control
diff --git a/changes/19.bugfix.md b/changes/19.bugfix.md
deleted file mode 100644
index 2c79f5a..0000000
--- a/changes/19.bugfix.md
+++ /dev/null
@@ -1 +0,0 @@
-Prevent dependency updates and label changes from spawning redundant CI runs.
diff --git a/changes/README.md b/changes/README.md
index c264b27..92d7d79 100644
--- a/changes/README.md
+++ b/changes/README.md
@@ -1,15 +1,17 @@
# Changelog fragments
-Every pull request with a user-visible change must add one short fragment here.
-Use the pull request number and the most specific type:
+Every pull request with a user-visible change normally adds one short fragment
+here. Describe the difference from the latest public release—not every
+intermediate implementation step. Use the pull request number and the most
+specific type:
```text
changes/..md
```
Supported types are `breaking`, `feature`, `bugfix`, `deprecation`, `docs`, and
-`security`. Write one sentence for users in the imperative voice and do not add
-a heading or the version number.
+`security`. Write for users in the imperative voice and do not add a heading or
+the version number.
Example:
@@ -21,9 +23,16 @@ changes/123.feature.md
Add named repositories for selecting shared index locations and devices.
```
+Use `bugfix` only for behavior that was wrong in the latest public release. If
+an unreleased feature changes while it is being built, update or consolidate
+its pending feature note instead of stacking fictional public fixes. Do not
+create one fragment per internal commit.
+
Dependency updates marked `dependencies` do not require a fragment. Other
internal changes may omit one when a maintainer applies `skip-changelog` and
-the pull request explains why.
+the pull request explains why. Maintainers may use an issue-less
+`changes/+..md` fragment when consolidating a release; normal pull
+requests should use their numeric identifier.
Towncrier renders the pending fragments for prerelease notes, then collects and
removes them when a stable release is created. Do not edit `CHANGELOG.md`
diff --git a/compose.coolify.yaml b/compose.coolify.yaml
new file mode 100644
index 0000000..cd6d601
--- /dev/null
+++ b/compose.coolify.yaml
@@ -0,0 +1,214 @@
+x-vidxp-environment: &vidxp-environment
+ VIDXP_MODE: server
+ VIDXP_RUNTIME_BACKEND: cpu
+ VIDXP_REPOSITORY_ROOT: /var/lib/vidxp/data
+ VIDXP_MODEL_CACHE: /var/lib/vidxp/models
+ PGPASSWORD: ${POSTGRES_PASSWORD:?Set POSTGRES_PASSWORD}
+ VIDXP_HTTP_BIND_HOST: 0.0.0.0
+ VIDXP_HTTP_AUTH_MODE: static
+ VIDXP_HTTP_STATIC_BEARER_TOKEN: ${VIDXP_HTTP_STATIC_BEARER_TOKEN:?Set a bearer token of at least 32 characters}
+ VIDXP_HTTP_TRUSTED_HOSTS: '["127.0.0.1","localhost","${VIDXP_PUBLIC_API_HOST:?Set the public API host}"]'
+ VIDXP_MCP_ALLOWED_HOSTS: '["127.0.0.1:*","localhost:*","${VIDXP_PUBLIC_API_HOST:?Set the public API host}"]'
+ VIDXP_UPLOAD_PUBLIC_ENDPOINT: ${VIDXP_UPLOAD_PUBLIC_ENDPOINT:?Set the public tusd endpoint ending in /uploads/}
+ VIDXP_UPLOAD_INTERNAL_ENDPOINT: http://tusd:8080/uploads/
+ VIDXP_UPLOAD_CLEANUP_TOKEN: ${VIDXP_UPLOAD_CLEANUP_TOKEN:?Set a cleanup token of at least 32 characters}
+ VIDXP_UPLOAD_QUARANTINE_ROOT: /var/lib/vidxp/uploads
+ VIDXP_UPLOAD_MAX_BYTES: ${VIDXP_UPLOAD_MAX_BYTES:-53687091200}
+ VIDXP_UPLOAD_QUOTA_BYTES: ${VIDXP_UPLOAD_QUOTA_BYTES:-107374182400}
+
+services:
+ postgres:
+ image: postgres:18.3-trixie@sha256:7e32e9833a6fb1c92c32552794cb6ed569d51b445a54907d35fc112ef39684db
+ environment:
+ POSTGRES_DB: vidxp
+ POSTGRES_USER: vidxp
+ POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?Set POSTGRES_PASSWORD}
+ volumes:
+ - postgres-data:/var/lib/postgresql
+ healthcheck:
+ test: ["CMD-SHELL", "pg_isready -U vidxp -d vidxp"]
+ interval: 5s
+ timeout: 5s
+ retries: 20
+ restart: unless-stopped
+
+ chroma:
+ image: chromadb/chroma:1.5.9@sha256:1e0b73a187a28757c572acba508c46f48c9e8b0acaf5c20e6d95cdedce1acdf6
+ volumes:
+ - chroma-data:/data
+ restart: unless-stopped
+
+ storage-init:
+ image: ${VIDXP_CONTROL_IMAGE:?Set the immutable VidXP control image}
+ user: "0:0"
+ command:
+ - chown
+ - -R
+ - vidxp:vidxp
+ - /var/lib/vidxp/data
+ - /var/lib/vidxp/uploads
+ - /var/lib/vidxp/models
+ volumes:
+ - content-data:/var/lib/vidxp/data
+ - upload-quarantine:/var/lib/vidxp/uploads
+ - model-cache:/var/lib/vidxp/models
+ healthcheck:
+ disable: true
+ restart: "no"
+
+ chroma-ready:
+ image: ${VIDXP_CONTROL_IMAGE:?Set the immutable VidXP control image}
+ command: ["python", "-m", "vidxp.health_cli", "chroma"]
+ depends_on:
+ chroma:
+ condition: service_started
+ healthcheck:
+ disable: true
+ restart: "no"
+
+ migrate:
+ image: ${VIDXP_CONTROL_IMAGE:?Set the immutable VidXP control image}
+ environment:
+ <<: *vidxp-environment
+ command:
+ - sh
+ - -c
+ - >-
+ vidxp-database &&
+ dbos migrate
+ --sys-db-url postgresql://vidxp@postgres:5432/vidxp
+ --schema dbos
+ depends_on:
+ postgres:
+ condition: service_healthy
+ storage-init:
+ condition: service_completed_successfully
+ healthcheck:
+ disable: true
+ restart: "no"
+
+ api:
+ image: ${VIDXP_CONTROL_IMAGE:?Set the immutable VidXP control image}
+ environment:
+ <<: *vidxp-environment
+ command: ["vidxp-api"]
+ volumes:
+ - content-data:/var/lib/vidxp/data
+ depends_on:
+ migrate:
+ condition: service_completed_successfully
+ healthcheck:
+ test:
+ - CMD
+ - python
+ - -c
+ - "import urllib.request; urllib.request.urlopen('http://localhost:8000/ready', timeout=5)"
+ interval: 15s
+ timeout: 10s
+ retries: 20
+ restart: unless-stopped
+
+ hooks:
+ image: ${VIDXP_CONTROL_IMAGE:?Set the immutable VidXP control image}
+ environment:
+ <<: *vidxp-environment
+ command: ["vidxp-hooks"]
+ volumes:
+ - upload-quarantine:/var/lib/vidxp/uploads:ro
+ depends_on:
+ migrate:
+ condition: service_completed_successfully
+ healthcheck:
+ test:
+ - CMD
+ - python
+ - -c
+ - "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8000/health', timeout=3)"
+ interval: 15s
+ timeout: 5s
+ retries: 20
+ restart: unless-stopped
+
+ worker:
+ image: ${VIDXP_WORKER_IMAGE:?Set the immutable VidXP worker image}
+ environment:
+ <<: *vidxp-environment
+ VIDXP_ALLOW_MODEL_DOWNLOADS: ${VIDXP_ALLOW_MODEL_DOWNLOADS:-true}
+ VIDXP_SLM_BASE_URL: ${VIDXP_SLM_BASE_URL:-}
+ VIDXP_SLM_MODEL: ${VIDXP_SLM_MODEL:-}
+ command: ["vidxp-worker", "--role", "cpu"]
+ volumes:
+ - content-data:/var/lib/vidxp/data
+ - upload-quarantine:/var/lib/vidxp/uploads:ro
+ - model-cache:/var/lib/vidxp/models
+ depends_on:
+ migrate:
+ condition: service_completed_successfully
+ chroma-ready:
+ condition: service_completed_successfully
+ stop_grace_period: 40s
+ restart: unless-stopped
+
+ ollama:
+ image: ollama/ollama:0.32.5@sha256:4dea9fb511947e24a84237bb636b0203abcb2ff0d3fbc7b4ff865deb91362131
+ profiles: ["slm"]
+ volumes:
+ - ollama-models:/root/.ollama
+ healthcheck:
+ test: ["CMD", "ollama", "list"]
+ interval: 10s
+ timeout: 5s
+ retries: 20
+ restart: unless-stopped
+
+ tusd:
+ image: tusproject/tusd:v2.10.0@sha256:9610f0f8edf4cceeb26f1b3ac9fa4bb4803d61a878e222c1573cda63c9e23374
+ command:
+ - -host=0.0.0.0
+ - -port=8080
+ - -upload-dir=/srv/tusd-data
+ - -base-path=/uploads/
+ - -behind-proxy
+ - -max-size=${VIDXP_UPLOAD_MAX_BYTES:-53687091200}
+ - -disable-download
+ - -disable-concatenation
+ - -hooks-http=http://hooks:8000/hooks
+ - -hooks-enabled-events=pre-create,post-finish,pre-terminate,post-terminate
+ - -hooks-http-timeout=5s
+ - -hooks-http-size-limit=5120
+ - -hooks-http-retry=3
+ - -hooks-http-backoff=1s
+ - -cors-allow-origin=${VIDXP_UPLOAD_CORS_ORIGIN_REGEX:?Set an anchored browser-origin regex}
+ - -cors-allow-headers=Authorization
+ - -cors-max-age=600
+ - -network-timeout=60s
+ - -shutdown-timeout=30s
+ - -verbose=false
+ - -show-startup-logs=false
+ - -log-format=json
+ volumes:
+ - upload-quarantine:/srv/tusd-data
+ depends_on:
+ hooks:
+ condition: service_healthy
+ stop_grace_period: 35s
+ healthcheck:
+ test:
+ - CMD
+ - wget
+ - -q
+ - -O
+ - /dev/null
+ - http://127.0.0.1:8080/metrics
+ interval: 10s
+ timeout: 5s
+ retries: 20
+ restart: unless-stopped
+
+volumes:
+ postgres-data:
+ chroma-data:
+ content-data:
+ upload-quarantine:
+ model-cache:
+ ollama-models:
diff --git a/desktop/package-lock.json b/desktop/package-lock.json
new file mode 100644
index 0000000..b6972e3
--- /dev/null
+++ b/desktop/package-lock.json
@@ -0,0 +1,232 @@
+{
+ "name": "vidxp-desktop",
+ "version": "0.2.1-b.1",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "vidxp-desktop",
+ "version": "0.2.1-b.1",
+ "devDependencies": {
+ "@tauri-apps/cli": "2.11.4"
+ }
+ },
+ "node_modules/@tauri-apps/cli": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.11.4.tgz",
+ "integrity": "sha512-R8xGtMpwyetawSqm9kYOuMmEqkhUbvcUy8n0aNXIxollKBLESUu5f4Fx+64hgASYm1H+jSWq6jCW6zqTnH6hqQ==",
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "bin": {
+ "tauri": "tauri.js"
+ },
+ "engines": {
+ "node": ">= 10"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/tauri"
+ },
+ "optionalDependencies": {
+ "@tauri-apps/cli-darwin-arm64": "2.11.4",
+ "@tauri-apps/cli-darwin-x64": "2.11.4",
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.11.4",
+ "@tauri-apps/cli-linux-arm64-gnu": "2.11.4",
+ "@tauri-apps/cli-linux-arm64-musl": "2.11.4",
+ "@tauri-apps/cli-linux-riscv64-gnu": "2.11.4",
+ "@tauri-apps/cli-linux-x64-gnu": "2.11.4",
+ "@tauri-apps/cli-linux-x64-musl": "2.11.4",
+ "@tauri-apps/cli-win32-arm64-msvc": "2.11.4",
+ "@tauri-apps/cli-win32-ia32-msvc": "2.11.4",
+ "@tauri-apps/cli-win32-x64-msvc": "2.11.4"
+ }
+ },
+ "node_modules/@tauri-apps/cli-darwin-arm64": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.11.4.tgz",
+ "integrity": "sha512-1ryOF3ZhpZ/nemHV5zVwBQBz9jDGKmKPvWPADOhc83ig0P4bMc2iER4NbC6r9sjeIZ6RVQ4g3RZIYvezhcl4TQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-darwin-x64": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.11.4.tgz",
+ "integrity": "sha512-uFsGQAAfuyz1k/yGLmkWfkBlgKAqZfxqlHmLWx81QU27RJWfmbNHCIq8T8w1e+VClleIuZUjpHWfoE4E3DLo3A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.11.4.tgz",
+ "integrity": "sha512-IaHZn5CdBL21oUmjiVOS1ctw6Ip1O0pjp70FwOWmYz1myWe0SY96ZIj2FYf7pT0m8bI2h/hrs5ZbEXXh44/MkQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-arm64-gnu": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.11.4.tgz",
+ "integrity": "sha512-N41/ukTRVe6XSuUTESuFdGeOW2i7k62tK+6gHK5Kd5/q5RPvvi19GaWAVPPb9u95HSGmTChSolBfzynUsssFaA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-arm64-musl": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.11.4.tgz",
+ "integrity": "sha512-v277UnT/fB64xAfSroL5N3Km3tLmvATWqJJw/wRI+g6o+HkeD0slyE7gOhNs1MbjE41R7bQOTxMVoL3aomUJmw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-riscv64-gnu": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.11.4.tgz",
+ "integrity": "sha512-qqgNkQ2u1yZHxjhxsZaxUtRDW8dIqIYm33rx/mzwQv0SfY9x1B+iraj8vWeFiXjjSVVhEMepXSOts1TqPzvXNQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-x64-gnu": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.11.4.tgz",
+ "integrity": "sha512-2VRNWl84FOH0m2giiDkO2h0QXlcMJeX+zJDpI5kDIQAx6s+geF3v48F4DXfJez4GS/FdoDGnPnw1C2iYGbQ7bQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-x64-musl": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.11.4.tgz",
+ "integrity": "sha512-o9GyhYor/nc7xarmwDE3ka2szuW3uuZzXjHWh64Q8YX5AtSgxdQkFWzrY4O8KiGtVNvFBI14H3Q49Qj5TOIP/A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-win32-arm64-msvc": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.11.4.tgz",
+ "integrity": "sha512-ld5Ehb598m0VkYyylRPNeCFsBe/km0jxis6KgMpl3IGY6I/i1RwQXO05I1AsXUXO2WC6AvB/Lw4qTf/asiuEiQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-win32-ia32-msvc": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.11.4.tgz",
+ "integrity": "sha512-12Hxi0XX/H5VFxO/bGgHkFWhml9VMgEOu9CidjeCeTNQ1l6fpUlbiGgSP7CLI3PFtW9/FfbeHieZ+kyWK5H7CA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-win32-x64-msvc": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.11.4.tgz",
+ "integrity": "sha512-+vDiqBIU5dMISg/wNvX3sF+ZHfgJGJ5T0AcO+EHNXV9GGAG+P5fzodlDXD3QdKCRgZxMoCm5PPvj3BqLNjBthw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ }
+ }
+}
diff --git a/desktop/package.json b/desktop/package.json
new file mode 100644
index 0000000..e83472d
--- /dev/null
+++ b/desktop/package.json
@@ -0,0 +1,20 @@
+{
+ "name": "vidxp-desktop",
+ "private": true,
+ "version": "0.2.1-b.1",
+ "type": "module",
+ "scripts": {
+ "tauri": "tauri",
+ "sync:branding": "node scripts/sync-branding.mjs",
+ "icons": "npm run sync:branding && tauri icon ../docs/images/logo.png --output src-tauri/icons",
+ "predesktop:dev": "npm run sync:branding",
+ "desktop:dev": "tauri dev",
+ "predesktop:build": "npm run icons",
+ "desktop:build": "node scripts/build-desktop.mjs",
+ "sidecar:windows": "powershell -ExecutionPolicy Bypass -File scripts/fetch-uv.ps1",
+ "sidecar:unix": "bash scripts/fetch-uv.sh"
+ },
+ "devDependencies": {
+ "@tauri-apps/cli": "2.11.4"
+ }
+}
diff --git a/desktop/runtime-constraints.txt b/desktop/runtime-constraints.txt
new file mode 100644
index 0000000..d564a7c
--- /dev/null
+++ b/desktop/runtime-constraints.txt
@@ -0,0 +1,499 @@
+# This file was autogenerated by uv via the following command:
+# uv export --frozen --extra local-worker --extra frontend --no-dev --no-emit-project --no-hashes --format requirements-txt --output-file desktop/runtime-constraints.txt
+aiohappyeyeballs==2.7.1
+ # via aiohttp
+aiohttp==3.14.3
+ # via kubernetes
+aiosignal==1.4.0
+ # via aiohttp
+altair==6.2.2
+ # via streamlit
+annotated-doc==0.0.5
+ # via typer
+annotated-types==0.8.0
+ # via pydantic
+anyio==4.14.2
+ # via
+ # httpx
+ # httpx2
+ # openai
+ # starlette
+ # streamlit
+ # watchfiles
+attrs==26.1.0
+ # via
+ # aiohttp
+ # jsonschema
+ # referencing
+av==18.0.0
+ # via faster-whisper
+bcrypt==5.0.0
+ # via chromadb
+blinker==1.9.0
+ # via streamlit
+build==1.5.0
+ # via chromadb
+certifi==2026.7.22
+ # via
+ # httpcore
+ # httpx
+ # kubernetes
+ # requests
+charset-normalizer==3.4.9
+ # via requests
+chromadb==1.5.9
+ # via vidxp
+click==8.4.2
+ # via
+ # huggingface-hub
+ # streamlit
+ # uvicorn
+colorama==0.4.6 ; os_name == 'nt' or sys_platform == 'win32'
+ # via
+ # build
+ # click
+ # tqdm
+ # typer
+ctranslate2==4.8.1
+ # via faster-whisper
+dbos==2.28.0
+ # via vidxp
+distro==1.9.0
+ # via openai
+durationpy==0.10
+ # via kubernetes
+faster-whisper==1.2.1
+ # via vidxp
+filelock==3.32.0
+ # via
+ # huggingface-hub
+ # torch
+ # vidxp
+flatbuffers==25.12.19
+ # via onnxruntime
+frozenlist==1.8.0
+ # via
+ # aiohttp
+ # aiosignal
+fsspec==2026.7.0
+ # via
+ # huggingface-hub
+ # torch
+genai-prices==0.0.72
+ # via pydantic-ai-slim
+gitdb==4.0.12
+ # via gitpython
+gitpython==3.1.57
+ # via streamlit
+googleapis-common-protos==1.75.0
+ # via opentelemetry-exporter-otlp-proto-grpc
+greenlet==3.5.4
+ # via sqlalchemy
+griffelib==2.1.0
+ # via pydantic-ai-slim
+grpcio==1.83.0
+ # via
+ # chromadb
+ # opentelemetry-exporter-otlp-proto-grpc
+h11==0.16.0
+ # via
+ # httpcore
+ # httpcore2
+ # uvicorn
+hf-xet==1.5.2 ; platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'
+ # via huggingface-hub
+httpcore==1.0.9
+ # via httpx
+httpcore2==2.9.1
+ # via httpx2
+httptools==0.8.0
+ # via
+ # streamlit
+ # uvicorn
+httpx==0.28.1
+ # via
+ # chromadb
+ # huggingface-hub
+ # openai
+ # pydantic-ai-slim
+ # pydantic-graph
+httpx2==2.9.1
+ # via genai-prices
+huggingface-hub==1.25.1
+ # via
+ # faster-whisper
+ # sentence-transformers
+ # tokenizers
+ # transformers
+ # vidxp
+idna==3.18
+ # via
+ # anyio
+ # httpx
+ # httpx2
+ # requests
+ # yarl
+importlib-resources==7.1.0
+ # via chromadb
+itsdangerous==2.2.0
+ # via streamlit
+jinja2==3.1.6
+ # via
+ # altair
+ # pydeck
+ # torch
+jiter==0.16.0
+ # via openai
+joblib==1.5.3
+ # via scikit-learn
+jsonschema==4.26.0
+ # via
+ # altair
+ # chromadb
+jsonschema-specifications==2025.9.1
+ # via jsonschema
+kubernetes==36.0.3
+ # via chromadb
+logfire-api==4.39.0
+ # via pydantic-graph
+markdown-it-py==4.2.0
+ # via rich
+markupsafe==3.0.3
+ # via jinja2
+mdurl==0.1.2
+ # via markdown-it-py
+mmh3==5.2.1
+ # via chromadb
+mpmath==1.3.0
+ # via sympy
+multidict==6.7.1
+ # via
+ # aiohttp
+ # yarl
+narwhals==2.24.0
+ # via
+ # altair
+ # scikit-learn
+networkx==3.6.1
+ # via torch
+numpy==2.4.6 ; python_full_version < '3.12'
+ # via
+ # chromadb
+ # ctranslate2
+ # onnxruntime
+ # opencv-python-headless
+ # pandas
+ # pydeck
+ # scikit-learn
+ # scipy
+ # sentence-transformers
+ # streamlit
+ # transformers
+ # vidxp
+numpy==2.5.1 ; python_full_version >= '3.12'
+ # via
+ # chromadb
+ # ctranslate2
+ # onnxruntime
+ # opencv-python-headless
+ # pandas
+ # pydeck
+ # scikit-learn
+ # scipy
+ # sentence-transformers
+ # streamlit
+ # transformers
+ # vidxp
+oauthlib==3.3.1
+ # via requests-oauthlib
+onnxruntime==1.28.0
+ # via
+ # chromadb
+ # faster-whisper
+openai==2.50.0
+ # via pydantic-ai-slim
+opencv-python-headless==5.0.0.93
+ # via vidxp
+opentelemetry-api==1.44.0
+ # via
+ # chromadb
+ # opentelemetry-exporter-otlp-proto-grpc
+ # opentelemetry-sdk
+ # opentelemetry-semantic-conventions
+ # pydantic-ai-slim
+opentelemetry-exporter-otlp-proto-common==1.44.0
+ # via opentelemetry-exporter-otlp-proto-grpc
+opentelemetry-exporter-otlp-proto-grpc==1.44.0
+ # via chromadb
+opentelemetry-proto==1.44.0
+ # via
+ # opentelemetry-exporter-otlp-proto-common
+ # opentelemetry-exporter-otlp-proto-grpc
+opentelemetry-sdk==1.44.0
+ # via
+ # chromadb
+ # opentelemetry-exporter-otlp-proto-grpc
+opentelemetry-semantic-conventions==0.65b0
+ # via opentelemetry-sdk
+orjson==3.11.9
+ # via chromadb
+overrides==7.7.0
+ # via chromadb
+packaging==26.2
+ # via
+ # altair
+ # build
+ # huggingface-hub
+ # onnxruntime
+ # pooch
+ # streamlit
+ # transformers
+ # vidxp
+pandas==3.0.5
+ # via streamlit
+pillow==12.3.0
+ # via
+ # streamlit
+ # vidxp
+platformdirs==4.11.0
+ # via
+ # pooch
+ # vidxp
+pooch==1.9.0
+ # via vidxp
+propcache==0.5.2
+ # via
+ # aiohttp
+ # yarl
+protobuf==7.35.1
+ # via
+ # googleapis-common-protos
+ # onnxruntime
+ # opentelemetry-proto
+ # streamlit
+psutil==7.2.2
+ # via vidxp
+psycopg==3.3.4
+ # via dbos
+psycopg-binary==3.3.4 ; implementation_name != 'pypy'
+ # via psycopg
+pyarrow==24.0.0
+ # via streamlit
+pybase64==1.4.3
+ # via chromadb
+pydantic==2.13.4
+ # via
+ # chromadb
+ # genai-prices
+ # openai
+ # pydantic-ai-slim
+ # pydantic-graph
+ # pydantic-settings
+ # vidxp
+pydantic-ai-slim==2.20.0
+ # via vidxp
+pydantic-core==2.46.4
+ # via pydantic
+pydantic-graph==2.20.0
+ # via pydantic-ai-slim
+pydantic-settings==2.14.2
+ # via
+ # chromadb
+ # vidxp
+pydeck==0.9.3
+ # via streamlit
+pygments==2.20.0
+ # via rich
+pypika==0.51.1
+ # via chromadb
+pyproject-hooks==1.2.0
+ # via build
+python-dateutil==2.9.0.post0
+ # via
+ # dbos
+ # kubernetes
+ # pandas
+python-dotenv==1.2.2
+ # via
+ # pydantic-settings
+ # uvicorn
+python-multipart==0.0.32
+ # via streamlit
+pyyaml==6.0.3
+ # via
+ # chromadb
+ # ctranslate2
+ # dbos
+ # huggingface-hub
+ # kubernetes
+ # transformers
+ # uvicorn
+referencing==0.37.0
+ # via
+ # jsonschema
+ # jsonschema-specifications
+regex==2026.7.19
+ # via
+ # tiktoken
+ # transformers
+requests==2.34.2
+ # via
+ # kubernetes
+ # pooch
+ # requests-oauthlib
+ # streamlit
+ # tiktoken
+requests-oauthlib==2.0.0
+ # via kubernetes
+rich==15.0.0
+ # via
+ # chromadb
+ # typer
+ # vidxp
+rpds-py==2026.6.3
+ # via
+ # jsonschema
+ # referencing
+safetensors==0.8.0
+ # via transformers
+scikit-learn==1.9.0
+ # via sentence-transformers
+scipy==1.17.1 ; python_full_version < '3.12'
+ # via
+ # scikit-learn
+ # sentence-transformers
+scipy==1.18.0 ; python_full_version >= '3.12'
+ # via
+ # scikit-learn
+ # sentence-transformers
+sentence-transformers==5.6.1
+ # via vidxp
+setuptools==83.0.0
+ # via
+ # ctranslate2
+ # torch
+shellingham==1.5.4
+ # via typer
+six==1.17.0
+ # via
+ # kubernetes
+ # python-dateutil
+smmap==5.0.3
+ # via gitdb
+sniffio==1.3.1
+ # via openai
+sqlalchemy==2.0.51
+ # via
+ # dbos
+ # vidxp
+starlette==1.3.1
+ # via streamlit
+streamlit==1.60.0
+ # via vidxp
+sympy==1.14.0
+ # via torch
+tenacity==9.1.4
+ # via
+ # chromadb
+ # streamlit
+threadpoolctl==3.6.0
+ # via scikit-learn
+tiktoken==0.13.0
+ # via pydantic-ai-slim
+tokenizers==0.22.2
+ # via
+ # chromadb
+ # faster-whisper
+ # transformers
+toml==0.10.2
+ # via streamlit
+torch==2.13.0 ; sys_platform != 'linux' and sys_platform != 'win32'
+ # via
+ # sentence-transformers
+ # vidxp
+torch==2.13.0+cpu ; sys_platform == 'linux' or sys_platform == 'win32'
+ # via
+ # sentence-transformers
+ # vidxp
+tqdm==4.70.0
+ # via
+ # chromadb
+ # faster-whisper
+ # huggingface-hub
+ # openai
+ # sentence-transformers
+ # transformers
+transformers==5.14.1
+ # via
+ # sentence-transformers
+ # vidxp
+truststore==0.10.4
+ # via
+ # httpcore2
+ # httpx2
+typer==0.27.0
+ # via
+ # chromadb
+ # transformers
+ # typer-slim
+ # vidxp
+typer-slim==0.24.0
+ # via dbos
+typing-extensions==4.16.0
+ # via
+ # aiohttp
+ # aiosignal
+ # altair
+ # anyio
+ # chromadb
+ # grpcio
+ # httpx2
+ # huggingface-hub
+ # openai
+ # opentelemetry-api
+ # opentelemetry-exporter-otlp-proto-grpc
+ # opentelemetry-sdk
+ # opentelemetry-semantic-conventions
+ # psycopg
+ # pydantic
+ # pydantic-core
+ # referencing
+ # sentence-transformers
+ # sqlalchemy
+ # starlette
+ # streamlit
+ # torch
+ # typing-inspection
+typing-inspection==0.4.2
+ # via
+ # pydantic
+ # pydantic-ai-slim
+ # pydantic-graph
+ # pydantic-settings
+tzdata==2026.3 ; sys_platform == 'emscripten' or sys_platform == 'win32'
+ # via
+ # pandas
+ # psycopg
+urllib3==2.7.0
+ # via
+ # kubernetes
+ # requests
+uvicorn==0.51.0
+ # via
+ # chromadb
+ # streamlit
+uvloop==0.22.1 ; platform_python_implementation != 'PyPy' and sys_platform != 'cygwin' and sys_platform != 'win32'
+ # via uvicorn
+watchdog==6.0.0 ; sys_platform != 'darwin'
+ # via streamlit
+watchfiles==1.2.0
+ # via uvicorn
+websocket-client==1.9.0
+ # via kubernetes
+websockets==16.1.1
+ # via
+ # dbos
+ # streamlit
+ # uvicorn
+yarl==1.24.5
+ # via aiohttp
diff --git a/desktop/runtime-manifest.json b/desktop/runtime-manifest.json
new file mode 100644
index 0000000..306c32b
--- /dev/null
+++ b/desktop/runtime-manifest.json
@@ -0,0 +1,43 @@
+{
+ "schema_version": 1,
+ "desktop_version": "0.2.1-b.1",
+ "package_name": "vidxp",
+ "package_version": "0.2.1-b.1",
+ "dependency_index": "https://pypi.org/simple",
+ "dependency_constraints_sha256": "d3ed16906841952017f112903356bfe433a8515a37aa3f56e4af4dfa1f985835",
+ "python_version": "3.14.6",
+ "uv_version": "0.12.0",
+ "surfaces": {
+ "browser": {
+ "extra": "frontend",
+ "label": "Browser interface",
+ "description": "Installs the local browser interface. Leave this off for a processing-only runtime.",
+ "default": true
+ }
+ },
+ "capabilities": {
+ "dialogue": {
+ "extra": "dialogue",
+ "modality": "dialogue",
+ "label": "Dialogue search"
+ },
+ "scene": {
+ "extra": "scene",
+ "modality": "scene",
+ "label": "Visual scene search"
+ },
+ "actor": {
+ "extra": "actor",
+ "modality": "actor",
+ "label": "Actor recognition"
+ }
+ },
+ "media_runtime": {
+ "strategy": "system",
+ "executables": [
+ "ffmpeg",
+ "ffprobe"
+ ],
+ "reason": "Startup checks verify the system FFmpeg runtime and offer a consented package-manager command; bundling remains disabled until target-specific codec licenses and provenance are recorded."
+ }
+}
diff --git a/desktop/scripts/build-desktop.mjs b/desktop/scripts/build-desktop.mjs
new file mode 100644
index 0000000..4cc137a
--- /dev/null
+++ b/desktop/scripts/build-desktop.mjs
@@ -0,0 +1,32 @@
+import { spawnSync } from "node:child_process";
+import { dirname, resolve } from "node:path";
+import { fileURLToPath } from "node:url";
+
+const bundles = {
+ darwin: "dmg",
+ linux: "appimage",
+ win32: "nsis",
+};
+
+const bundle = bundles[process.platform];
+if (!bundle) {
+ throw new Error(`Unsupported desktop build platform: ${process.platform}`);
+}
+
+const desktopRoot = resolve(dirname(fileURLToPath(import.meta.url)), "..");
+const executable = resolve(
+ desktopRoot,
+ "node_modules",
+ ".bin",
+ process.platform === "win32" ? "tauri.cmd" : "tauri",
+);
+const result = spawnSync(
+ executable,
+ ["build", "--bundles", bundle, "--ci", "--no-sign", "--", "--locked"],
+ { shell: process.platform === "win32", stdio: "inherit" },
+);
+
+if (result.error) {
+ throw result.error;
+}
+process.exit(result.status ?? 1);
diff --git a/desktop/scripts/fetch-uv.ps1 b/desktop/scripts/fetch-uv.ps1
new file mode 100644
index 0000000..1549a05
--- /dev/null
+++ b/desktop/scripts/fetch-uv.ps1
@@ -0,0 +1,59 @@
+$ErrorActionPreference = "Stop"
+
+$scriptRoot = Split-Path -Parent $PSScriptRoot
+$lock = Get-Content -Raw (Join-Path $scriptRoot "sidecars.json") |
+ ConvertFrom-Json
+$version = $lock.uv_version
+$architecture = $env:PROCESSOR_ARCHITECTURE
+if ($architecture -ne "AMD64") {
+ throw "The first Windows desktop target supports x86-64 only (found $architecture)."
+}
+
+$target = "x86_64-pc-windows-msvc"
+$targetLock = $lock.targets.$target
+$archiveName = $targetLock.archive
+$lockedChecksum = $targetLock.sha256.ToLowerInvariant()
+$releaseRoot = "https://github.com/astral-sh/uv/releases/download/$version"
+$binaryDirectory = Join-Path $scriptRoot "src-tauri\binaries"
+$temporaryRoot = Join-Path ([System.IO.Path]::GetTempPath()) ("vidxp-uv-" + [guid]::NewGuid())
+$resolvedTempBase = [System.IO.Path]::GetFullPath([System.IO.Path]::GetTempPath())
+$resolvedTemporaryRoot = [System.IO.Path]::GetFullPath($temporaryRoot)
+if (-not $resolvedTemporaryRoot.StartsWith($resolvedTempBase, [System.StringComparison]::OrdinalIgnoreCase)) {
+ throw "Refusing to use a temporary directory outside the system temporary root."
+}
+
+New-Item -ItemType Directory -Path $temporaryRoot | Out-Null
+New-Item -ItemType Directory -Force -Path $binaryDirectory | Out-Null
+try {
+ $archive = Join-Path $temporaryRoot $archiveName
+ Invoke-WebRequest -Uri "$releaseRoot/$archiveName" -OutFile $archive
+ $stream = [System.IO.File]::OpenRead($archive)
+ try {
+ $hasher = [System.Security.Cryptography.SHA256]::Create()
+ $actual = [System.BitConverter]::ToString(
+ $hasher.ComputeHash($stream)
+ ).Replace("-", "").ToLowerInvariant()
+ }
+ finally {
+ $stream.Dispose()
+ }
+ if ($actual -ne $lockedChecksum) {
+ throw "The uv archive checksum did not match desktop/sidecars.json."
+ }
+
+ $expanded = Join-Path $temporaryRoot "expanded"
+ Expand-Archive -LiteralPath $archive -DestinationPath $expanded
+ $source = Get-ChildItem -LiteralPath $expanded -Recurse -File -Filter "uv.exe" |
+ Select-Object -First 1
+ if ($null -eq $source) {
+ throw "The uv release archive did not contain uv.exe."
+ }
+ Copy-Item -LiteralPath $source.FullName -Destination (
+ Join-Path $binaryDirectory "uv-$target.exe"
+ )
+}
+finally {
+ if (Test-Path -LiteralPath $resolvedTemporaryRoot) {
+ Remove-Item -LiteralPath $resolvedTemporaryRoot -Recurse -Force
+ }
+}
diff --git a/desktop/scripts/fetch-uv.sh b/desktop/scripts/fetch-uv.sh
new file mode 100644
index 0000000..e751452
--- /dev/null
+++ b/desktop/scripts/fetch-uv.sh
@@ -0,0 +1,36 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+case "$(uname -s):$(uname -m)" in
+ Darwin:arm64) target="aarch64-apple-darwin" ;;
+ Linux:x86_64) target="x86_64-unknown-linux-gnu" ;;
+ *)
+ echo "The first Unix desktop targets are macOS arm64 and Linux x86-64." >&2
+ exit 1
+ ;;
+esac
+
+script_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
+version="$(node -p "require('${script_root}/sidecars.json').uv_version")"
+archive_name="$(node -p "require('${script_root}/sidecars.json').targets['${target}'].archive")"
+locked_checksum="$(node -p "require('${script_root}/sidecars.json').targets['${target}'].sha256")"
+release_root="https://github.com/astral-sh/uv/releases/download/${version}"
+binary_directory="${script_root}/src-tauri/binaries"
+temporary_root="$(mktemp -d "${TMPDIR:-/tmp}/vidxp-uv.XXXXXXXX")"
+trap 'rm -rf -- "$temporary_root"' EXIT
+
+mkdir -p "$binary_directory"
+curl --fail --location --silent --show-error \
+ "${release_root}/${archive_name}" \
+ --output "${temporary_root}/${archive_name}"
+if command -v sha256sum >/dev/null 2>&1; then
+ actual_checksum="$(sha256sum "${temporary_root}/${archive_name}" | awk '{print $1}')"
+else
+ actual_checksum="$(shasum -a 256 "${temporary_root}/${archive_name}" | awk '{print $1}')"
+fi
+test "$actual_checksum" = "$locked_checksum"
+
+tar -xzf "${temporary_root}/${archive_name}" -C "$temporary_root"
+uv_path="$(find "$temporary_root" -type f -name uv -print -quit)"
+test -n "$uv_path"
+install -m 0755 "$uv_path" "${binary_directory}/uv-${target}"
diff --git a/desktop/scripts/sync-branding.mjs b/desktop/scripts/sync-branding.mjs
new file mode 100644
index 0000000..218f170
--- /dev/null
+++ b/desktop/scripts/sync-branding.mjs
@@ -0,0 +1,10 @@
+import { copyFileSync } from "node:fs";
+import { dirname, resolve } from "node:path";
+import { fileURLToPath } from "node:url";
+
+const desktopRoot = resolve(dirname(fileURLToPath(import.meta.url)), "..");
+const source = resolve(desktopRoot, "../docs/images/logo.png");
+const favicon = resolve(desktopRoot, "web/icon.png");
+
+copyFileSync(source, favicon);
+console.log("Synced the VidXP desktop favicon from the shared icon.");
diff --git a/desktop/sidecars.json b/desktop/sidecars.json
new file mode 100644
index 0000000..a16bb0b
--- /dev/null
+++ b/desktop/sidecars.json
@@ -0,0 +1,17 @@
+{
+ "uv_version": "0.12.0",
+ "targets": {
+ "x86_64-pc-windows-msvc": {
+ "archive": "uv-x86_64-pc-windows-msvc.zip",
+ "sha256": "68200e25de594df92387186bbfb9d9df606ec1d87efaa0ae0c7f690970e53db6"
+ },
+ "aarch64-apple-darwin": {
+ "archive": "uv-aarch64-apple-darwin.tar.gz",
+ "sha256": "2b9e582af54f84fa50c115427451a6c13e80f43b52f8282b8af5791077317bbf"
+ },
+ "x86_64-unknown-linux-gnu": {
+ "archive": "uv-x86_64-unknown-linux-gnu.tar.gz",
+ "sha256": "eaf842262aa1c418d8ecc5605f02ee1ebfd369124fa48548e85f9481a47831a9"
+ }
+ }
+}
diff --git a/desktop/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock
new file mode 100644
index 0000000..306e984
--- /dev/null
+++ b/desktop/src-tauri/Cargo.lock
@@ -0,0 +1,5344 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[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_log-sys"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
+
+[[package]]
+name = "android_logger"
+version = "0.15.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3"
+dependencies = [
+ "android_log-sys",
+ "env_filter",
+ "log",
+]
+
+[[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.104"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
+
+[[package]]
+name = "async-broadcast"
+version = "0.7.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
+dependencies = [
+ "event-listener",
+ "event-listener-strategy",
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-channel"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
+dependencies = [
+ "concurrent-queue",
+ "event-listener-strategy",
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-executor"
+version = "1.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
+dependencies = [
+ "async-task",
+ "concurrent-queue",
+ "fastrand",
+ "futures-lite",
+ "pin-project-lite",
+ "slab",
+]
+
+[[package]]
+name = "async-io"
+version = "2.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
+dependencies = [
+ "autocfg",
+ "cfg-if",
+ "concurrent-queue",
+ "futures-io",
+ "futures-lite",
+ "parking",
+ "polling",
+ "rustix",
+ "slab",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "async-lock"
+version = "3.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
+dependencies = [
+ "event-listener",
+ "event-listener-strategy",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-process"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
+dependencies = [
+ "async-channel",
+ "async-io",
+ "async-lock",
+ "async-signal",
+ "async-task",
+ "blocking",
+ "cfg-if",
+ "event-listener",
+ "futures-lite",
+ "rustix",
+]
+
+[[package]]
+name = "async-recursion"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[package]]
+name = "async-signal"
+version = "0.2.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
+dependencies = [
+ "async-io",
+ "async-lock",
+ "atomic-waker",
+ "cfg-if",
+ "futures-core",
+ "futures-io",
+ "rustix",
+ "signal-hook-registry",
+ "slab",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "async-task"
+version = "4.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
+
+[[package]]
+name = "async-trait"
+version = "0.1.91"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 3.0.3",
+]
+
+[[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 = "atomic-write-file"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "84790c55b5704b0d35130bf16a4ce22a8e70eb0ea773522557524d9a4852663d"
+dependencies = [
+ "nix",
+ "rand",
+]
+
+[[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.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
+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 = "block-buffer"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
+dependencies = [
+ "hybrid-array",
+]
+
+[[package]]
+name = "block2"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
+dependencies = [
+ "objc2",
+]
+
+[[package]]
+name = "blocking"
+version = "1.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
+dependencies = [
+ "async-channel",
+ "async-task",
+ "futures-io",
+ "futures-lite",
+ "piper",
+]
+
+[[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 = "bumpalo"
+version = "3.20.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
+
+[[package]]
+name = "bytemuck"
+version = "1.25.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
+
+[[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.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
+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.1",
+ "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.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d"
+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.19",
+]
+
+[[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.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
+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 = "cfg_aliases"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
+
+[[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 = "concurrent-queue"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "const-oid"
+version = "0.10.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
+
+[[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.1",
+ "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.1",
+ "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 = "cpufeatures"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
+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.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "crossbeam-utils"
+version = "0.8.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
+
+[[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 = "crypto-common"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
+dependencies = [
+ "hybrid-array",
+]
+
+[[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.119",
+]
+
+[[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.21.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
+dependencies = [
+ "darling_core",
+ "darling_macro",
+]
+
+[[package]]
+name = "darling_core"
+version = "0.21.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
+dependencies = [
+ "fnv",
+ "ident_case",
+ "proc-macro2",
+ "quote",
+ "strsim",
+ "syn 2.0.119",
+]
+
+[[package]]
+name = "darling_macro"
+version = "0.21.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
+dependencies = [
+ "darling_core",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[package]]
+name = "dbus"
+version = "0.9.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3ab69f03cc8c4340c9c8e315114e1658e6775a9b16a04357973aa21cec22b32e"
+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 = [
+ "powerfmt",
+ "serde_core",
+]
+
+[[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.119",
+]
+
+[[package]]
+name = "digest"
+version = "0.10.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
+dependencies = [
+ "block-buffer 0.10.4",
+ "crypto-common 0.1.7",
+]
+
+[[package]]
+name = "digest"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
+dependencies = [
+ "block-buffer 0.12.1",
+ "const-oid",
+ "crypto-common 0.2.2",
+]
+
+[[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.1",
+ "block2",
+ "libc",
+ "objc2",
+]
+
+[[package]]
+name = "displaydoc"
+version = "0.2.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 3.0.3",
+]
+
+[[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.119",
+]
+
+[[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.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fbfdaacccebec3b28e4866b8973543c7647797db5ada1bdab552e48fe665fbbd"
+dependencies = [
+ "cc",
+ "memchr",
+ "rustc_version",
+ "toml 1.1.4+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 = "encoding_rs"
+version = "0.8.35"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
+name = "endi"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
+
+[[package]]
+name = "enumflags2"
+version = "0.7.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
+dependencies = [
+ "enumflags2_derive",
+ "serde",
+]
+
+[[package]]
+name = "enumflags2_derive"
+version = "0.7.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[package]]
+name = "env_filter"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
+dependencies = [
+ "log",
+ "regex",
+]
+
+[[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 = "event-listener"
+version = "5.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2"
+dependencies = [
+ "parking",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "event-listener-strategy"
+version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
+dependencies = [
+ "event-listener",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "fastrand"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
+
+[[package]]
+name = "fdeflate"
+version = "0.3.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
+dependencies = [
+ "simd-adler32",
+]
+
+[[package]]
+name = "fern"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29"
+dependencies = [
+ "log",
+]
+
+[[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 = "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.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 3.0.3",
+]
+
+[[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.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
+dependencies = [
+ "futures-core",
+]
+
+[[package]]
+name = "futures-core"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
+
+[[package]]
+name = "futures-executor"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
+dependencies = [
+ "futures-core",
+ "futures-task",
+ "futures-util",
+]
+
+[[package]]
+name = "futures-io"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
+
+[[package]]
+name = "futures-lite"
+version = "2.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
+dependencies = [
+ "fastrand",
+ "futures-core",
+ "futures-io",
+ "parking",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "futures-macro"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[package]]
+name = "futures-sink"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
+
+[[package]]
+name = "futures-task"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
+
+[[package]]
+name = "futures-util"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
+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.1",
+ "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.119",
+]
+
+[[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.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
+
+[[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.119",
+]
+
+[[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 = "hermit-abi"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
+
+[[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.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
+dependencies = [
+ "bytes",
+ "http",
+]
+
+[[package]]
+name = "http-body-util"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
+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 = "hybrid-array"
+version = "0.4.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
+dependencies = [
+ "typenum",
+]
+
+[[package]]
+name = "hyper"
+version = "1.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
+dependencies = [
+ "atomic-waker",
+ "bytes",
+ "futures-channel",
+ "futures-core",
+ "http",
+ "http-body",
+ "httparse",
+ "itoa",
+ "pin-project-lite",
+ "smallvec",
+ "tokio",
+ "want",
+]
+
+[[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.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
+dependencies = [
+ "displaydoc",
+ "potential_utf",
+ "yoke",
+ "zerofrom",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_locale_core"
+version = "2.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
+dependencies = [
+ "displaydoc",
+ "litemap",
+ "tinystr",
+ "writeable",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer"
+version = "2.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
+dependencies = [
+ "icu_collections",
+ "icu_normalizer_data",
+ "icu_properties",
+ "icu_provider",
+ "smallvec",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer_data"
+version = "2.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
+
+[[package]]
+name = "icu_properties"
+version = "2.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
+dependencies = [
+ "icu_collections",
+ "icu_locale_core",
+ "icu_properties_data",
+ "icu_provider",
+ "zerotrie",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_properties_data"
+version = "2.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
+
+[[package]]
+name = "icu_provider"
+version = "2.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
+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.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
+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 = "is-docker"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
+dependencies = [
+ "once_cell",
+]
+
+[[package]]
+name = "is-wsl"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
+dependencies = [
+ "is-docker",
+ "once_cell",
+]
+
+[[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-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.119",
+]
+
+[[package]]
+name = "js-sys"
+version = "0.3.103"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
+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.1",
+ "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.189"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
+
+[[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.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
+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.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
+
+[[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 = "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.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
+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.19",
+ "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.1",
+ "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 = "nix"
+version = "0.30.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
+dependencies = [
+ "bitflags 2.13.1",
+ "cfg-if",
+ "cfg_aliases",
+ "libc",
+]
+
+[[package]]
+name = "num-conv"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
+
+[[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.119",
+]
+
+[[package]]
+name = "num_threads"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
+dependencies = [
+ "libc",
+]
+
+[[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.1",
+ "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.1",
+ "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.1",
+ "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.1",
+ "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.1",
+ "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.1",
+ "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.1",
+ "objc2",
+ "objc2-core-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.1",
+ "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.1",
+ "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.1",
+ "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 = "open"
+version = "5.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a0b3d059e795d52b8a72fef45658620edd4d9c359b338564aa14391ffa511ed5"
+dependencies = [
+ "dunce",
+ "is-wsl",
+ "libc",
+]
+
+[[package]]
+name = "option-ext"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
+
+[[package]]
+name = "ordered-stream"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
+dependencies = [
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "os_pipe"
+version = "1.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
+dependencies = [
+ "libc",
+ "windows-sys 0.61.2",
+]
+
+[[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"
+version = "2.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
+
+[[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.119",
+]
+
+[[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 = "piper"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
+dependencies = [
+ "atomic-waker",
+ "fastrand",
+ "futures-io",
+]
+
+[[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.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
+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.1",
+ "crc32fast",
+ "fdeflate",
+ "flate2",
+ "miniz_oxide",
+]
+
+[[package]]
+name = "polling"
+version = "3.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
+dependencies = [
+ "cfg-if",
+ "concurrent-queue",
+ "hermit-abi",
+ "pin-project-lite",
+ "rustix",
+ "windows-sys 0.61.2",
+]
+
+[[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 = "ppv-lite86"
+version = "0.2.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
+dependencies = [
+ "zerocopy",
+]
+
+[[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.13+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.107"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "quick-xml"
+version = "0.38.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.47"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
+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 = "rand"
+version = "0.9.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
+dependencies = [
+ "rand_chacha",
+ "rand_core",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
+dependencies = [
+ "ppv-lite86",
+ "rand_core",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.9.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
+dependencies = [
+ "getrandom 0.3.4",
+]
+
+[[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.1",
+]
+
+[[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.19",
+]
+
+[[package]]
+name = "ref-cast"
+version = "1.0.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
+dependencies = [
+ "ref-cast-impl",
+]
+
+[[package]]
+name = "ref-cast-impl"
+version = "1.0.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 3.0.3",
+]
+
+[[package]]
+name = "regex"
+version = "1.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-automata",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-automata"
+version = "0.4.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
+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-util",
+ "js-sys",
+ "log",
+ "percent-encoding",
+ "pin-project-lite",
+ "serde",
+ "serde_json",
+ "sync_wrapper",
+ "tokio",
+ "tokio-util",
+ "tower",
+ "tower-http",
+ "tower-service",
+ "url",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "wasm-streams",
+ "web-sys",
+]
+
+[[package]]
+name = "rfd"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672"
+dependencies = [
+ "block2",
+ "dispatch2",
+ "glib-sys",
+ "gobject-sys",
+ "gtk-sys",
+ "js-sys",
+ "log",
+ "objc2",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation",
+ "raw-window-handle",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "web-sys",
+ "windows-sys 0.60.2",
+]
+
+[[package]]
+name = "rustc-hash"
+version = "2.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
+
+[[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.1",
+ "errno",
+ "libc",
+ "linux-raw-sys",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "rustversion"
+version = "1.0.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
+
+[[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 = "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.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
+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.119",
+]
+
+[[package]]
+name = "scopeguard"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
+
+[[package]]
+name = "selectors"
+version = "0.36.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c"
+dependencies = [
+ "bitflags 2.13.1",
+ "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.229"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
+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.229"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.229"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 3.0.3",
+]
+
+[[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.119",
+]
+
+[[package]]
+name = "serde_json"
+version = "1.0.151"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
+dependencies = [
+ "itoa",
+ "memchr",
+ "serde",
+ "serde_core",
+ "zmij",
+]
+
+[[package]]
+name = "serde_repr"
+version = "0.1.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 3.0.3",
+]
+
+[[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.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9"
+dependencies = [
+ "base64 0.22.1",
+ "chrono",
+ "hex",
+ "indexmap 1.9.3",
+ "indexmap 2.14.0",
+ "schemars 0.9.0",
+ "schemars 1.2.2",
+ "serde_core",
+ "serde_json",
+ "serde_with_macros",
+ "time",
+]
+
+[[package]]
+name = "serde_with_macros"
+version = "3.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0"
+dependencies = [
+ "darling",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[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.119",
+]
+
+[[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 0.2.17",
+ "digest 0.10.7",
+]
+
+[[package]]
+name = "sha2"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
+dependencies = [
+ "cfg-if",
+ "cpufeatures 0.3.0",
+ "digest 0.11.3",
+]
+
+[[package]]
+name = "shared_child"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e362d9935bc50f019969e2f9ecd66786612daae13e8f277be7bfb66e8bed3f7"
+dependencies = [
+ "libc",
+ "sigchld",
+ "windows-sys 0.60.2",
+]
+
+[[package]]
+name = "shlex"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
+
+[[package]]
+name = "sigchld"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1"
+dependencies = [
+ "libc",
+ "os_pipe",
+ "signal-hook",
+]
+
+[[package]]
+name = "signal-hook"
+version = "0.3.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
+dependencies = [
+ "libc",
+ "signal-hook-registry",
+]
+
+[[package]]
+name = "signal-hook-registry"
+version = "1.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
+dependencies = [
+ "errno",
+ "libc",
+]
+
+[[package]]
+name = "simd-adler32"
+version = "0.3.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
+
+[[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.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
+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 = "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.119"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "syn"
+version = "3.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
+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.119",
+]
+
+[[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.1",
+ "block2",
+ "core-foundation",
+ "core-graphics",
+ "crossbeam-channel",
+ "dbus",
+ "dispatch2",
+ "dlopen2",
+ "dpi",
+ "gdkwayland-sys",
+ "gdkx11-sys",
+ "gtk",
+ "jni",
+ "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.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5f7eeb6d99155545da6150a1795945f16ac9c178deb2a5f2e74d776107bd5849"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[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.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "667b20e2726d572dea2de7370da16e188eb06008faf9a92fab7cdc46791190b5"
+dependencies = [
+ "anyhow",
+ "bytes",
+ "cookie",
+ "dirs",
+ "dunce",
+ "embed_plist",
+ "getrandom 0.3.4",
+ "glob",
+ "gtk",
+ "heck 0.5.0",
+ "http",
+ "jni",
+ "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.19",
+ "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 0.10.9",
+ "syn 2.0.119",
+ "tauri-utils",
+ "thiserror 2.0.19",
+ "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.119",
+ "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-dialog"
+version = "2.7.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b2d3c1dbe38037e7f590cdf2492594d5ceebe031e7bc7e827509b22a999d2940"
+dependencies = [
+ "log",
+ "raw-window-handle",
+ "rfd",
+ "serde",
+ "serde_json",
+ "tauri",
+ "tauri-plugin",
+ "tauri-plugin-fs",
+ "thiserror 2.0.19",
+ "url",
+]
+
+[[package]]
+name = "tauri-plugin-fs"
+version = "2.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b7ecc274121aca0c036a2b42d1cbe83d368d348f54e0bb8a735c2b1548e8f371"
+dependencies = [
+ "anyhow",
+ "dunce",
+ "glob",
+ "log",
+ "objc2-foundation",
+ "percent-encoding",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "serde_repr",
+ "tauri",
+ "tauri-plugin",
+ "tauri-utils",
+ "thiserror 2.0.19",
+ "toml 1.1.4+spec-1.1.0",
+ "url",
+]
+
+[[package]]
+name = "tauri-plugin-log"
+version = "2.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6792296e6f389268016c77db21ebae1fc0568f2fccf88b1ec7e2ea71330afb4c"
+dependencies = [
+ "android_logger",
+ "fern",
+ "log",
+ "objc2",
+ "objc2-foundation",
+ "serde",
+ "serde_json",
+ "serde_repr",
+ "swift-rs",
+ "tauri",
+ "tauri-plugin",
+ "thiserror 2.0.19",
+ "time",
+]
+
+[[package]]
+name = "tauri-plugin-opener"
+version = "2.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17e1bea14edce6b793a04e2417e3fd924b9bc4faae83cdee7d714156cceeed29"
+dependencies = [
+ "dunce",
+ "glob",
+ "objc2-app-kit",
+ "objc2-foundation",
+ "open",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "tauri",
+ "tauri-plugin",
+ "thiserror 2.0.19",
+ "url",
+ "windows",
+ "zbus",
+]
+
+[[package]]
+name = "tauri-plugin-shell"
+version = "2.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8457dbf9e2bab1edd8df22bb2c20857a59a9868e79cb3eac5ed639eec4d0c73b"
+dependencies = [
+ "encoding_rs",
+ "log",
+ "open",
+ "os_pipe",
+ "regex",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "shared_child",
+ "tauri",
+ "tauri-plugin",
+ "thiserror 2.0.19",
+ "tokio",
+]
+
+[[package]]
+name = "tauri-plugin-single-instance"
+version = "2.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b3214becf9ef5783c0ae99a3bb25adf5353a7a16ebf53e74b909e29205735c6c"
+dependencies = [
+ "serde",
+ "serde_json",
+ "tauri",
+ "thiserror 2.0.19",
+ "tokio",
+ "tracing",
+ "windows-sys 0.60.2",
+ "zbus",
+]
+
+[[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",
+ "objc2",
+ "objc2-ui-kit",
+ "objc2-web-kit",
+ "raw-window-handle",
+ "serde",
+ "serde_json",
+ "tauri-utils",
+ "thiserror 2.0.19",
+ "url",
+ "webkit2gtk",
+ "webview2-com",
+ "windows",
+]
+
+[[package]]
+name = "tauri-runtime-wry"
+version = "2.11.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4e6fac707727b7a2f48e4ded90976324267371073edbb415ffb73bb0458d203f"
+dependencies = [
+ "gtk",
+ "http",
+ "jni",
+ "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.19",
+ "toml 1.1.4+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.4+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.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5fed54709c5b3a53d09bb1c113ea4f5ceafd1e772ddcb0030a82e1d56c087b08"
+dependencies = [
+ "new_debug_unreachable",
+]
+
+[[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.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
+dependencies = [
+ "thiserror-impl 2.0.19",
+]
+
+[[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.119",
+]
+
+[[package]]
+name = "thiserror-impl"
+version = "2.0.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 3.0.3",
+]
+
+[[package]]
+name = "time"
+version = "0.3.45"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
+dependencies = [
+ "deranged",
+ "itoa",
+ "libc",
+ "num-conv",
+ "num_threads",
+ "powerfmt",
+ "serde_core",
+ "time-core",
+ "time-macros",
+]
+
+[[package]]
+name = "time-core"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
+
+[[package]]
+name = "time-macros"
+version = "0.2.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd"
+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 = "tokio"
+version = "1.53.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
+dependencies = [
+ "bytes",
+ "libc",
+ "mio",
+ "pin-project-lite",
+ "socket2",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "tokio-util"
+version = "0.7.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
+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.4+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
+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.4",
+]
+
+[[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.13+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
+dependencies = [
+ "indexmap 2.14.0",
+ "toml_datetime 1.1.1+spec-1.1.0",
+ "toml_parser",
+ "winnow 1.0.4",
+]
+
+[[package]]
+name = "toml_parser"
+version = "1.1.3+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
+dependencies = [
+ "winnow 1.0.4",
+]
+
+[[package]]
+name = "toml_writer"
+version = "1.1.2+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
+
+[[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.1",
+ "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-attributes",
+ "tracing-core",
+]
+
+[[package]]
+name = "tracing-attributes"
+version = "0.1.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[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.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "045979e3f037cd18ad1cb2a419dfda133c5c29c9f3453370079f2255d46c257e"
+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.19",
+ "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 = "uds_windows"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
+dependencies = [
+ "memoffset",
+ "tempfile",
+ "windows-sys 0.61.2",
+]
+
+[[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 = "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 = "utf8_iter"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
+
+[[package]]
+name = "uuid"
+version = "1.24.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
+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 = "vidxp-desktop"
+version = "0.2.1-b.1"
+dependencies = [
+ "atomic-write-file",
+ "hex",
+ "log",
+ "serde",
+ "serde_json",
+ "sha2 0.11.0",
+ "tauri",
+ "tauri-build",
+ "tauri-plugin-dialog",
+ "tauri-plugin-log",
+ "tauri-plugin-opener",
+ "tauri-plugin-shell",
+ "tauri-plugin-single-instance",
+ "wait-timeout",
+]
+
+[[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 = "wait-timeout"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
+dependencies = [
+ "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.1+wasi-0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
+dependencies = [
+ "wit-bindgen",
+]
+
+[[package]]
+name = "wasm-bindgen"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
+dependencies = [
+ "cfg-if",
+ "once_cell",
+ "rustversion",
+ "wasm-bindgen-macro",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-futures"
+version = "0.4.76"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
+dependencies = [
+ "js-sys",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "wasm-bindgen-macro"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
+dependencies = [
+ "quote",
+ "wasm-bindgen-macro-support",
+]
+
+[[package]]
+name = "wasm-bindgen-macro-support"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
+dependencies = [
+ "bumpalo",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-shared"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
+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.103"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
+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 = "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.119",
+]
+
+[[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.19",
+ "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.119",
+]
+
+[[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.119",
+]
+
+[[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.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"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "winnow"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
+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.46.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
+
+[[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",
+ "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 0.10.9",
+ "soup3",
+ "tao-macros",
+ "thiserror 2.0.19",
+ "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 = "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.119",
+ "synstructure",
+]
+
+[[package]]
+name = "zbus"
+version = "5.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1bfeff997a0aaa3eb20c4652baf788d2dfa6d2839a0ead0b3ff69ce2f9c4bdd1"
+dependencies = [
+ "async-broadcast",
+ "async-executor",
+ "async-io",
+ "async-lock",
+ "async-process",
+ "async-recursion",
+ "async-task",
+ "async-trait",
+ "blocking",
+ "enumflags2",
+ "event-listener",
+ "futures-core",
+ "futures-lite",
+ "hex",
+ "libc",
+ "ordered-stream",
+ "rustix",
+ "serde",
+ "serde_repr",
+ "tracing",
+ "uds_windows",
+ "uuid",
+ "windows-sys 0.61.2",
+ "winnow 0.7.15",
+ "zbus_macros",
+ "zbus_names",
+ "zvariant",
+]
+
+[[package]]
+name = "zbus_macros"
+version = "5.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0bbd5a90dbe8feee5b13def448427ae314ccd26a49cac47905cafefb9ff846f1"
+dependencies = [
+ "proc-macro-crate 3.5.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+ "zbus_names",
+ "zvariant",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zbus_names"
+version = "4.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f"
+dependencies = [
+ "serde",
+ "winnow 0.7.15",
+ "zvariant",
+]
+
+[[package]]
+name = "zerocopy"
+version = "0.8.55"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
+dependencies = [
+ "zerocopy-derive",
+]
+
+[[package]]
+name = "zerocopy-derive"
+version = "0.8.55"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+]
+
+[[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.119",
+ "synstructure",
+]
+
+[[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.119",
+]
+
+[[package]]
+name = "zmij"
+version = "1.0.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
+
+[[package]]
+name = "zvariant"
+version = "5.9.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "68b64ef4f40c7951337ddc7023dd03528a57a3ce3408ee9da5e948bd29b232c4"
+dependencies = [
+ "endi",
+ "enumflags2",
+ "serde",
+ "winnow 0.7.15",
+ "zvariant_derive",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zvariant_derive"
+version = "5.9.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "484d5d975eb7afb52cc6b929c13d3719a20ad650fea4120e6310de3fc55e415c"
+dependencies = [
+ "proc-macro-crate 3.5.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.119",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zvariant_utils"
+version = "3.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde",
+ "syn 2.0.119",
+ "winnow 0.7.15",
+]
diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml
new file mode 100644
index 0000000..12c9696
--- /dev/null
+++ b/desktop/src-tauri/Cargo.toml
@@ -0,0 +1,30 @@
+[package]
+name = "vidxp-desktop"
+version = "0.2.1-b.1"
+description = "The VidXP desktop launcher and local runtime supervisor"
+edition = "2024"
+rust-version = "1.85"
+license = "MIT"
+
+[lib]
+name = "vidxp_desktop_lib"
+crate-type = ["staticlib", "cdylib", "rlib"]
+
+[build-dependencies]
+serde_json = "1.0.151"
+tauri-build = { version = "2.6.3", features = [] }
+
+[dependencies]
+atomic-write-file = "0.3.0"
+hex = "0.4.3"
+log = "0.4.29"
+serde = { version = "1.0.229", features = ["derive"] }
+serde_json = "1.0.151"
+sha2 = "0.11.0"
+tauri = { version = "2.11.5", features = ["tray-icon"] }
+tauri-plugin-log = "2.9.0"
+tauri-plugin-dialog = "2.6.0"
+tauri-plugin-opener = "2.5.0"
+tauri-plugin-shell = "2.3.5"
+tauri-plugin-single-instance = "2.4.3"
+wait-timeout = "0.2.1"
diff --git a/desktop/src-tauri/build.rs b/desktop/src-tauri/build.rs
new file mode 100644
index 0000000..ae6d059
--- /dev/null
+++ b/desktop/src-tauri/build.rs
@@ -0,0 +1,33 @@
+fn main() {
+ let manifest: serde_json::Value =
+ serde_json::from_slice(include_bytes!("../runtime-manifest.json"))
+ .expect("desktop/runtime-manifest.json must be valid JSON");
+ let expected = manifest["uv_version"]
+ .as_str()
+ .expect("runtime manifest must contain uv_version");
+ let target = std::env::var("TARGET").expect("Cargo must provide TARGET");
+ let suffix = if target.contains("windows") {
+ ".exe"
+ } else {
+ ""
+ };
+ let sidecar = std::path::PathBuf::from("binaries").join(format!("uv-{target}{suffix}"));
+ let output = std::process::Command::new(&sidecar)
+ .arg("--version")
+ .output()
+ .unwrap_or_else(|error| {
+ panic!(
+ "{} is missing or unusable; run the target sidecar fetch script: {error}",
+ sidecar.display()
+ )
+ });
+ let actual = String::from_utf8_lossy(&output.stdout);
+ assert!(
+ output.status.success() && actual.starts_with(&format!("uv {expected}")),
+ "{} reports {:?}; expected uv {}",
+ sidecar.display(),
+ actual.trim(),
+ expected
+ );
+ tauri_build::build()
+}
diff --git a/desktop/src-tauri/capabilities/main.json b/desktop/src-tauri/capabilities/main.json
new file mode 100644
index 0000000..f3f4ca4
--- /dev/null
+++ b/desktop/src-tauri/capabilities/main.json
@@ -0,0 +1,9 @@
+{
+ "$schema": "../gen/schemas/desktop-schema.json",
+ "identifier": "main-window",
+ "description": "The bundled setup interface; no shell or filesystem API is exposed.",
+ "windows": [
+ "main"
+ ],
+ "permissions": []
+}
diff --git a/desktop/src-tauri/icons/128x128.png b/desktop/src-tauri/icons/128x128.png
new file mode 100644
index 0000000..07e4996
Binary files /dev/null and b/desktop/src-tauri/icons/128x128.png differ
diff --git a/desktop/src-tauri/icons/128x128@2x.png b/desktop/src-tauri/icons/128x128@2x.png
new file mode 100644
index 0000000..ebab038
Binary files /dev/null and b/desktop/src-tauri/icons/128x128@2x.png differ
diff --git a/desktop/src-tauri/icons/32x32.png b/desktop/src-tauri/icons/32x32.png
new file mode 100644
index 0000000..28037b4
Binary files /dev/null and b/desktop/src-tauri/icons/32x32.png differ
diff --git a/desktop/src-tauri/icons/icon.icns b/desktop/src-tauri/icons/icon.icns
new file mode 100644
index 0000000..ddcc711
Binary files /dev/null and b/desktop/src-tauri/icons/icon.icns differ
diff --git a/desktop/src-tauri/icons/icon.ico b/desktop/src-tauri/icons/icon.ico
new file mode 100644
index 0000000..e78d13a
Binary files /dev/null and b/desktop/src-tauri/icons/icon.ico differ
diff --git a/desktop/src-tauri/icons/icon.png b/desktop/src-tauri/icons/icon.png
new file mode 100644
index 0000000..aae1a36
Binary files /dev/null and b/desktop/src-tauri/icons/icon.png differ
diff --git a/desktop/src-tauri/nsis-hooks.nsh b/desktop/src-tauri/nsis-hooks.nsh
new file mode 100644
index 0000000..e0bf9c3
--- /dev/null
+++ b/desktop/src-tauri/nsis-hooks.nsh
@@ -0,0 +1,5 @@
+!macro NSIS_HOOK_PREINSTALL
+ ; Keep per-user program files separate from VidXP's shared models and indexes.
+ StrCpy $INSTDIR "$LOCALAPPDATA\Programs\${PRODUCTNAME}"
+ SetOutPath "$INSTDIR"
+!macroend
diff --git a/desktop/src-tauri/src/lib.rs b/desktop/src-tauri/src/lib.rs
new file mode 100644
index 0000000..c831e8d
--- /dev/null
+++ b/desktop/src-tauri/src/lib.rs
@@ -0,0 +1,1700 @@
+use std::{
+ borrow::Cow,
+ collections::{BTreeMap, BTreeSet},
+ env, fs,
+ io::{self, Write},
+ net::{SocketAddr, TcpListener, TcpStream},
+ path::{Path, PathBuf},
+ process::{Child, Command, Output, Stdio},
+ sync::{
+ Mutex,
+ atomic::{AtomicBool, Ordering},
+ },
+ thread,
+ time::{Duration, Instant, SystemTime, UNIX_EPOCH},
+};
+
+use atomic_write_file::AtomicWriteFile;
+use serde::{Deserialize, Serialize};
+use sha2::{Digest, Sha256};
+use tauri::{
+ AppHandle, Manager, RunEvent, WindowEvent,
+ menu::{Menu, MenuItem},
+ tray::TrayIconBuilder,
+};
+use tauri_plugin_dialog::{DialogExt, MessageDialogButtons, MessageDialogKind};
+use tauri_plugin_opener::OpenerExt;
+use tauri_plugin_shell::{
+ ShellExt,
+ process::{Command as ShellCommand, CommandChild, CommandEvent},
+};
+use wait_timeout::ChildExt;
+
+const RUNTIME_MANIFEST_BYTES: &[u8] = include_bytes!("../../runtime-manifest.json");
+const RUNTIME_CONSTRAINTS_BYTES: &[u8] = include_bytes!("../../runtime-constraints.txt");
+const PRODUCT_DATA_DIRECTORY_NAME: &str = "VidXP";
+
+#[derive(Clone, Deserialize, Serialize)]
+struct CapabilitySpec {
+ extra: String,
+ modality: String,
+ label: String,
+}
+
+#[derive(Clone, Deserialize, Serialize)]
+struct SurfaceSpec {
+ extra: String,
+ label: String,
+ description: String,
+ default: bool,
+}
+
+#[derive(Clone, Deserialize, Serialize)]
+struct MediaRuntimeSpec {
+ strategy: String,
+ executables: Vec,
+ reason: String,
+}
+
+#[derive(Clone, Deserialize, Serialize)]
+struct RuntimeManifest {
+ schema_version: u32,
+ desktop_version: String,
+ package_name: String,
+ package_version: String,
+ dependency_index: String,
+ dependency_constraints_sha256: String,
+ python_version: String,
+ uv_version: String,
+ surfaces: BTreeMap,
+ capabilities: BTreeMap,
+ media_runtime: MediaRuntimeSpec,
+}
+
+#[derive(Deserialize)]
+struct InstallRequest {
+ capabilities: Vec,
+ surfaces: Vec,
+ prepare_models: bool,
+ model_directory: Option,
+}
+
+#[derive(Serialize)]
+struct InstallResult {
+ package_version: String,
+ capabilities: Vec,
+ surfaces: Vec,
+ model_directory: String,
+ prepared: bool,
+}
+
+#[derive(Serialize)]
+struct RuntimeStatus {
+ ready: bool,
+ package_version: String,
+ capabilities: Vec,
+ surfaces: Vec,
+ model_directory: String,
+ detail: String,
+}
+
+#[derive(Clone, Serialize)]
+struct MediaRuntimeStatus {
+ ready: bool,
+ ffmpeg_executable: Option,
+ ffprobe_executable: Option,
+ required_encoders: Vec,
+ errors: Vec,
+ package_manager: Option,
+ install_command: Option,
+ automatic_install: bool,
+}
+
+struct VerifiedMediaRuntime {
+ ffmpeg: PathBuf,
+ ffprobe: PathBuf,
+}
+
+struct SystemInstallPlan {
+ manager: String,
+ command: Vec,
+ automatic: bool,
+}
+
+#[derive(Clone, Deserialize, Serialize)]
+struct ActiveRuntime {
+ schema_version: u32,
+ manifest_sha256: String,
+ profile: String,
+ package_version: String,
+ capabilities: Vec,
+ #[serde(default)]
+ surfaces: Vec,
+ #[serde(default)]
+ model_directory: PathBuf,
+}
+
+struct DesktopPaths {
+ private_data: PathBuf,
+ data: PathBuf,
+ cache: PathBuf,
+ repository: PathBuf,
+ runtimes: PathBuf,
+ python: PathBuf,
+ models: PathBuf,
+ active_runtime: PathBuf,
+}
+
+struct ManagedUi {
+ process: Child,
+ url: String,
+}
+
+struct DesktopState {
+ ui_process: Mutex