From b941280689332001c81531734927953d96ce8272 Mon Sep 17 00:00:00 2001 From: Philipp Mandler Date: Thu, 14 May 2026 23:52:34 +0200 Subject: [PATCH 1/9] Add initial desktop application --- desktop/.gitignore | 24 + desktop/README.md | 8 + desktop/index.html | 14 + desktop/package-lock.json | 2069 ++++++++ desktop/package.json | 27 + desktop/src-tauri/.gitignore | 11 + desktop/src-tauri/Cargo.lock | 5229 +++++++++++++++++++ desktop/src-tauri/Cargo.toml | 26 + desktop/src-tauri/build.rs | 3 + desktop/src-tauri/capabilities/default.json | 13 + desktop/src-tauri/icons/icon.png | Bin 0 -> 14183 bytes desktop/src-tauri/src/lib.rs | 30 + desktop/src-tauri/src/main.rs | 6 + desktop/src-tauri/tauri.conf.json | 28 + desktop/src/App.tsx | 22 + desktop/src/main.tsx | 9 + desktop/src/vite-env.d.ts | 1 + desktop/tsconfig.json | 25 + desktop/tsconfig.node.json | 10 + desktop/vite.config.ts | 32 + 20 files changed, 7587 insertions(+) create mode 100644 desktop/.gitignore create mode 100644 desktop/README.md create mode 100644 desktop/index.html create mode 100644 desktop/package-lock.json create mode 100644 desktop/package.json create mode 100644 desktop/src-tauri/.gitignore create mode 100644 desktop/src-tauri/Cargo.lock create mode 100644 desktop/src-tauri/Cargo.toml create mode 100644 desktop/src-tauri/build.rs create mode 100644 desktop/src-tauri/capabilities/default.json create mode 100644 desktop/src-tauri/icons/icon.png create mode 100644 desktop/src-tauri/src/lib.rs create mode 100644 desktop/src-tauri/src/main.rs create mode 100644 desktop/src-tauri/tauri.conf.json create mode 100644 desktop/src/App.tsx create mode 100644 desktop/src/main.tsx create mode 100644 desktop/src/vite-env.d.ts create mode 100644 desktop/tsconfig.json create mode 100644 desktop/tsconfig.node.json create mode 100644 desktop/vite.config.ts diff --git a/desktop/.gitignore b/desktop/.gitignore new file mode 100644 index 00000000..d2ede3d8 --- /dev/null +++ b/desktop/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local +__pycache__ + +# Editor directories and files +.vscode/* +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/desktop/README.md b/desktop/README.md new file mode 100644 index 00000000..ad2b023e --- /dev/null +++ b/desktop/README.md @@ -0,0 +1,8 @@ +# transcribee Desktop + +This folder contains the transcribee Desktop app built with tauri. + +## Develop + +To run the App in develop mode, install the dependencies with npm (`npm i`) +and build & start the app with `npm run tauri dev`. diff --git a/desktop/index.html b/desktop/index.html new file mode 100644 index 00000000..ff93803b --- /dev/null +++ b/desktop/index.html @@ -0,0 +1,14 @@ + + + + + + + Tauri + React + Typescript + + + +
+ + + diff --git a/desktop/package-lock.json b/desktop/package-lock.json new file mode 100644 index 00000000..7be8bdb8 --- /dev/null +++ b/desktop/package-lock.json @@ -0,0 +1,2069 @@ +{ + "name": "transcribee-desktop", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "transcribee-desktop", + "version": "0.1.0", + "dependencies": { + "@tauri-apps/api": "^2", + "@tauri-apps/plugin-opener": "^2", + "@tauri-apps/plugin-shell": "^2.3.5", + "react": "^19.1.0", + "react-dom": "^19.1.0" + }, + "devDependencies": { + "@tauri-apps/cli": "^2", + "@types/react": "^19.1.8", + "@types/react-dom": "^19.1.6", + "@vitejs/plugin-react": "^4.6.0", + "typescript": "~5.8.3", + "vite": "^7.0.4" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.3.tgz", + "integrity": "sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz", + "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz", + "integrity": "sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.3.tgz", + "integrity": "sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.3.tgz", + "integrity": "sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.3.tgz", + "integrity": "sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.3.tgz", + "integrity": "sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.3.tgz", + "integrity": "sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.3.tgz", + "integrity": "sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.3.tgz", + "integrity": "sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.3.tgz", + "integrity": "sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.3.tgz", + "integrity": "sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.3.tgz", + "integrity": "sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.3.tgz", + "integrity": "sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.3.tgz", + "integrity": "sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.3.tgz", + "integrity": "sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.3.tgz", + "integrity": "sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.3.tgz", + "integrity": "sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.3.tgz", + "integrity": "sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.3.tgz", + "integrity": "sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.3.tgz", + "integrity": "sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.3.tgz", + "integrity": "sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.3.tgz", + "integrity": "sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.3.tgz", + "integrity": "sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.3.tgz", + "integrity": "sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.3.tgz", + "integrity": "sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.3.tgz", + "integrity": "sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tauri-apps/api": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.11.0.tgz", + "integrity": "sha512-7CinYODhky9lmO23xHnUFv0Xt43fbtWMyxZcLcRBlFkcgXKuEirBvHpmtJ89YMhyeGcq20Wuc47Fa4XjyniywA==", + "license": "Apache-2.0 OR MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + } + }, + "node_modules/@tauri-apps/cli": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.11.1.tgz", + "integrity": "sha512-rpEbaJ/HzNb6fwsquwoAbq29/Vt4gADhS423A8fdkwL4edJ0wZmoB8ar7O6JPDL834MUKOCm/rrJ7c9oAaEaYQ==", + "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.1", + "@tauri-apps/cli-darwin-x64": "2.11.1", + "@tauri-apps/cli-linux-arm-gnueabihf": "2.11.1", + "@tauri-apps/cli-linux-arm64-gnu": "2.11.1", + "@tauri-apps/cli-linux-arm64-musl": "2.11.1", + "@tauri-apps/cli-linux-riscv64-gnu": "2.11.1", + "@tauri-apps/cli-linux-x64-gnu": "2.11.1", + "@tauri-apps/cli-linux-x64-musl": "2.11.1", + "@tauri-apps/cli-win32-arm64-msvc": "2.11.1", + "@tauri-apps/cli-win32-ia32-msvc": "2.11.1", + "@tauri-apps/cli-win32-x64-msvc": "2.11.1" + } + }, + "node_modules/@tauri-apps/cli-darwin-arm64": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.11.1.tgz", + "integrity": "sha512-6eEKMBXsQPCuM1EmvrjT2+aBuxWQuFdKdW8pzNuNQtpq45nEEpBlD5gr8pUeAyOU1DQKlkFaEc/MPBxb/Pfjtg==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.11.1.tgz", + "integrity": "sha512-LQUO7exfRWjWALNhetph5guWpMeHphRpokOLk0OIbTTExaNwJNFu3I4vb+CCM/4G/QGoZe/5XikZOJdNEFP1ig==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.11.1.tgz", + "integrity": "sha512-5i/awiBCRRhOUG8yjn0fMHXIWD5Ez8eEk5LtvOxyQrKuJkRaZDvnbIjZbE183blAwkoA4xN3aO/prJiqscl02Q==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.11.1.tgz", + "integrity": "sha512-9LrwDw3S9Fygtw/Q6WDhOP+3svJRGAsejeE+GKrc0eO1ThMVhwi2LL6hw4dlKw93IfS7VY1G19sWGxJ/NcU4nA==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.11.1.tgz", + "integrity": "sha512-mNA5dbbqPqDUdTIwdUYYuhO2GvIe9UnB2r0VU2njxBOS3Opbx4gKNC5yP0Iu4rYmEmqdlwry9VzGZQ3wq9dyFg==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.11.1.tgz", + "integrity": "sha512-fZj3Gwq+6fUs305T5WQiD5iSGJw+j/4w/HGmk4sHDAcy+rp9zU5eaxB7nOyz5/I/nkNAuKPqfp6uIbiUBXkBCw==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.11.1.tgz", + "integrity": "sha512-XFxGxOvHM7jjeD6ozCKdGfhzJ7lERYDGZl1/Kb4fsvchaJsfLJ981TlyTG8Qy/gFq+f5GitH3bfrX9JAkjPEyw==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.11.1.tgz", + "integrity": "sha512-d5C2/Zm+68v7R9wTuTCjRQEVrWjcdMkJBZ1+rXse+QdMMlTB9+u9PDNDLw9PQflWxYLaYZ7tjxxL9Nb9II6PbA==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.11.1.tgz", + "integrity": "sha512-YdeVWFAR1pTXzUU6NLstPq4G6OLxuDrXCXEBdmBH+5EZIDXUx0D2kJlz3+YjpazkKvAzYpgziTsyRagls0OfRQ==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.11.1.tgz", + "integrity": "sha512-VBGkuH0eB9K9LLSMv361Gzr5Ou72sCS4+ztpmkWEQ+wd/amhcYOsf3X6qn1RJZDzIhiOYHJEOysZUC3baD01rA==", + "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.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.11.1.tgz", + "integrity": "sha512-b3ORhIAKgp9ZYY+zBt7b7r0kLU2kjvyGF0+MS2SBym3emsweGPybEqocJcmtMuxyBhkOKHP4CiuEJEDuAlTx6A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 OR MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tauri-apps/plugin-opener": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.5.4.tgz", + "integrity": "sha512-1HnPkb+AmgO29HBazm4uPLKB+r7zzcTBW1d0fyYp1uP+jwtpoiNDGKMMzz58SFp49nOIrxdE3aUJtT57lfO9CQ==", + "license": "MIT OR Apache-2.0", + "dependencies": { + "@tauri-apps/api": "^2.11.0" + } + }, + "node_modules/@tauri-apps/plugin-shell": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-shell/-/plugin-shell-2.3.5.tgz", + "integrity": "sha512-jewtULhiQ7lI7+owCKAjc8tYLJr92U16bPOeAa472LHJdgaibLP83NcfAF2e+wkEcA53FxKQAZ7byDzs2eeizg==", + "license": "MIT OR Apache-2.0", + "dependencies": { + "@tauri-apps/api": "^2.10.1" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", + "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.27", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.29", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.29.tgz", + "integrity": "sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/browserslist": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001792", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz", + "integrity": "sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.355", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.355.tgz", + "integrity": "sha512-LUPZhKzZPYSPme1jEYohpkA+ybYCJztr1quAdBd7E7h3+VOBVcKkwwtBJu41nrjawrRzfb8mtMfzWozoaK0ZIQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.44", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.44.tgz", + "integrity": "sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/react": { + "version": "19.2.6", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz", + "integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.6", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz", + "integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.6" + } + }, + "node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.3.tgz", + "integrity": "sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.3", + "@rollup/rollup-android-arm64": "4.60.3", + "@rollup/rollup-darwin-arm64": "4.60.3", + "@rollup/rollup-darwin-x64": "4.60.3", + "@rollup/rollup-freebsd-arm64": "4.60.3", + "@rollup/rollup-freebsd-x64": "4.60.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.3", + "@rollup/rollup-linux-arm-musleabihf": "4.60.3", + "@rollup/rollup-linux-arm64-gnu": "4.60.3", + "@rollup/rollup-linux-arm64-musl": "4.60.3", + "@rollup/rollup-linux-loong64-gnu": "4.60.3", + "@rollup/rollup-linux-loong64-musl": "4.60.3", + "@rollup/rollup-linux-ppc64-gnu": "4.60.3", + "@rollup/rollup-linux-ppc64-musl": "4.60.3", + "@rollup/rollup-linux-riscv64-gnu": "4.60.3", + "@rollup/rollup-linux-riscv64-musl": "4.60.3", + "@rollup/rollup-linux-s390x-gnu": "4.60.3", + "@rollup/rollup-linux-x64-gnu": "4.60.3", + "@rollup/rollup-linux-x64-musl": "4.60.3", + "@rollup/rollup-openbsd-x64": "4.60.3", + "@rollup/rollup-openharmony-arm64": "4.60.3", + "@rollup/rollup-win32-arm64-msvc": "4.60.3", + "@rollup/rollup-win32-ia32-msvc": "4.60.3", + "@rollup/rollup-win32-x64-gnu": "4.60.3", + "@rollup/rollup-win32-x64-msvc": "4.60.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/vite": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.3.tgz", + "integrity": "sha512-/4XH147Ui7OGTjg3HbdWe5arnZQSbfuRzdr9Ec7TQi5I7R+ir0Rlc9GIvD4v0XZurELqA035KVXJXpR61xhiTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.27.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + } + } +} diff --git a/desktop/package.json b/desktop/package.json new file mode 100644 index 00000000..6bd73b5d --- /dev/null +++ b/desktop/package.json @@ -0,0 +1,27 @@ +{ + "name": "transcribee-desktop", + "private": true, + "version": "0.1.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "tauri": "tauri" + }, + "dependencies": { + "@tauri-apps/api": "^2", + "@tauri-apps/plugin-opener": "^2", + "@tauri-apps/plugin-shell": "^2.3.5", + "react": "^19.1.0", + "react-dom": "^19.1.0" + }, + "devDependencies": { + "@tauri-apps/cli": "^2", + "@types/react": "^19.1.8", + "@types/react-dom": "^19.1.6", + "@vitejs/plugin-react": "^4.6.0", + "typescript": "~5.8.3", + "vite": "^7.0.4" + } +} diff --git a/desktop/src-tauri/.gitignore b/desktop/src-tauri/.gitignore new file mode 100644 index 00000000..9e71ab1e --- /dev/null +++ b/desktop/src-tauri/.gitignore @@ -0,0 +1,11 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Generated by Tauri +# will have schema files for capabilities auto-completion +/gen/schemas + +# native dependencies +.native-deps-dl +native-deps diff --git a/desktop/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock new file mode 100644 index 00000000..fe650559 --- /dev/null +++ b/desktop/src-tauri/Cargo.lock @@ -0,0 +1,5229 @@ +# 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.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "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.117", +] + +[[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.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "atk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" +dependencies = [ + "atk-sys", + "glib", + "libc", +] + +[[package]] +name = "atk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[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.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" +dependencies = [ + "serde_core", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + +[[package]] +name = "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.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bs58" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "bumpalo" +version = "3.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" + +[[package]] +name = "bytemuck" +version = "1.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" +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.11.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.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.18", +] + +[[package]] +name = "cargo_toml" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" +dependencies = [ + "serde", + "toml 0.9.12+spec-1.1.0", +] + +[[package]] +name = "cc" +version = "1.2.62" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cfb" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" +dependencies = [ + "byteorder", + "fnv", + "uuid", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "chrono" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" +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 = "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.11.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.11.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 = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "cssparser" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn 2.0.117", +] + +[[package]] +name = "ctor" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98" +dependencies = [ + "ctor-proc-macro", + "dtor", +] + +[[package]] +name = "ctor-proc-macro" +version = "0.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" + +[[package]] +name = "darling" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" +dependencies = [ + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.117", +] + +[[package]] +name = "darling_macro" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "dbus" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b942602992bb7acfd1f51c49811c58a610ef9181b6e66f3e519d79b540a3bf73" +dependencies = [ + "libc", + "libdbus-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "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.117", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", +] + +[[package]] +name = "dispatch2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" +dependencies = [ + "bitflags 2.11.1", + "block2", + "libc", + "objc2", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[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.117", +] + +[[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 0.2.0", + "html5ever", + "precomputed-hash", + "selectors", + "tendril", +] + +[[package]] +name = "dpi" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" +dependencies = [ + "serde", +] + +[[package]] +name = "dtoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "dtor" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4" +dependencies = [ + "dtor-proc-macro", +] + +[[package]] +name = "dtor-proc-macro" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + +[[package]] +name = "embed-resource" +version = "3.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31a88c8d26de40ed18fe748c547845aa39de1db3afd958f8cb91579f3644bcb" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml 1.1.2+spec-1.1.0", + "vswhom", + "winreg", +] + +[[package]] +name = "embed_plist" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" + +[[package]] +name = "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.117", +] + +[[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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" +dependencies = [ + "concurrent-queue", + "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.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "field-offset" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" +dependencies = [ + "memoffset", + "rustc_version", +] + +[[package]] +name = "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.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "foreign-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" +dependencies = [ + "foreign-types-macros", + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "foreign-types-shared" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-executor" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-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.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "gdk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" +dependencies = [ + "cairo-rs", + "gdk-pixbuf", + "gdk-sys", + "gio", + "glib", + "libc", + "pango", +] + +[[package]] +name = "gdk-pixbuf" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" +dependencies = [ + "gdk-pixbuf-sys", + "gio", + "glib", + "libc", + "once_cell", +] + +[[package]] +name = "gdk-pixbuf-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gdk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkwayland-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" +dependencies = [ + "gdk-sys", + "glib-sys", + "gobject-sys", + "libc", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkx11" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" +dependencies = [ + "gdk", + "gdkx11-sys", + "gio", + "glib", + "libc", + "x11", +] + +[[package]] +name = "gdkx11-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" +dependencies = [ + "gdk-sys", + "glib-sys", + "libc", + "system-deps", + "x11", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi 5.3.0", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", + "wasip2", + "wasip3", +] + +[[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.11.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.117", +] + +[[package]] +name = "glib-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" +dependencies = [ + "libc", + "system-deps", +] + +[[package]] +name = "glob" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" + +[[package]] +name = "gobject-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gtk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" +dependencies = [ + "atk", + "cairo-rs", + "field-offset", + "futures-channel", + "gdk", + "gdk-pixbuf", + "gio", + "glib", + "gtk-sys", + "gtk3-macros", + "libc", + "pango", + "pkg-config", +] + +[[package]] +name = "gtk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" +dependencies = [ + "atk-sys", + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "gtk3-macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash 0.1.5", +] + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca" +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.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", + "serde", + "serde_core", +] + +[[package]] +name = "infer" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" +dependencies = [ + "cfb", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "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.117", +] + +[[package]] +name = "js-sys" +version = "0.3.98" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08" +dependencies = [ + "cfg-if", + "futures-util", + "once_cell", + "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.11.1", + "serde", + "unicode-segmentation", +] + +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + +[[package]] +name = "libappindicator" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" +dependencies = [ + "glib", + "gtk", + "gtk-sys", + "libappindicator-sys", + "log", +] + +[[package]] +name = "libappindicator-sys" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" +dependencies = [ + "gtk-sys", + "libloading", + "once_cell", +] + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "libdbus-sys" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043" +dependencies = [ + "pkg-config", +] + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + +[[package]] +name = "libredox" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c" +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.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "muda" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ae8844f63b5b118e334e205585b8c5c17b984121dbdb179d44aeb087ffad3cb" +dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "once_cell", + "png 0.18.1", + "serde", + "thiserror 2.0.18", + "windows-sys 0.61.2", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.11.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 = "num-conv" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967" + +[[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.117", +] + +[[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.11.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.11.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.11.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.11.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.11.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.11.1", + "block2", + "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.11.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.11.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.11.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.11.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.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fbaa89d2ddc8473c78a3adf69eea8cffa28c483b8e02a971ef31527cd0fc92c" +dependencies = [ + "dunce", + "is-wsl", + "libc", + "pathdiff", +] + +[[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 = "pathdiff" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" + +[[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.117", +] + +[[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.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1" +dependencies = [ + "base64 0.22.1", + "indexmap 2.14.0", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "png" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" +dependencies = [ + "bitflags 2.11.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 = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn 2.0.117", +] + +[[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.11+spec-1.1.0", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-xml" +version = "0.39.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "raw-window-handle" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.11.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.18", +] + +[[package]] +name = "ref-cast" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" + +[[package]] +name = "reqwest" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0" +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 = "rustc-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +dependencies = [ + "bitflags 2.11.1", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schemars" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +dependencies = [ + "dyn-clone", + "indexmap 1.9.3", + "schemars_derive", + "serde", + "serde_json", + "url", + "uuid", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars_derive" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.117", +] + +[[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.11.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.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde-untagged" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" +dependencies = [ + "erased-serde", + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[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.117", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_repr" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[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.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2" +dependencies = [ + "base64 0.22.1", + "bs58", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.14.0", + "schemars 0.9.0", + "schemars 1.2.1", + "serde_core", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[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.117", +] + +[[package]] +name = "servo_arc" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "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 = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[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.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" + +[[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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +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.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +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.117", +] + +[[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.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a33f7f9e486ade65fcf1e45c440f9236c904f5c1002cdc7fc6ae582777345ce4" +dependencies = [ + "bitflags 2.11.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.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b93bd86d231f0a8138f11a02a584769fe4b703dc36ae133d783228dbc4801405" +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.18", + "tokio", + "tray-icon", + "url", + "webkit2gtk", + "webview2-com", + "window-vibrancy", + "windows", +] + +[[package]] +name = "tauri-build" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a318b234cc2dea65f575467bafcfb76286bce228ebc3778e337d61d03213007" +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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bd11644962add2549a60b7e7c6800f17d7020156e02f516021d8103e80cc528" +dependencies = [ + "base64 0.22.1", + "brotli", + "ico", + "json-patch", + "plist", + "png 0.17.16", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", + "syn 2.0.117", + "tauri-utils", + "thiserror 2.0.18", + "time", + "url", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-macros" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fed9d3742a37a355d2e47c9af924e9fbc112abb76f9835d35d4780e318419502" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", + "tauri-codegen", + "tauri-utils", +] + +[[package]] +name = "tauri-plugin" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eefb2c18e8a605c23edb48fc56bb77381199e1a1e7f6ff0c9b970afe7b3cb8ee" +dependencies = [ + "anyhow", + "glob", + "plist", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri-utils", + "walkdir", +] + +[[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.18", + "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.18", + "tokio", +] + +[[package]] +name = "tauri-runtime" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fef478ba1d2ac21c2d528740b24d0cb315e1e8b1111aae53fafac34804371fc" +dependencies = [ + "cookie", + "dpi", + "gtk", + "http", + "jni", + "objc2", + "objc2-ui-kit", + "objc2-web-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webview2-com", + "windows", +] + +[[package]] +name = "tauri-runtime-wry" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3989df2ae1c476404fe0a2e8ffc4cfbde97e51efd613c2bb5355fbc9ab52cf0" +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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d57200389a2f82b4b0a40ae29ca19b6978116e8f4d4e974c3234ce40c0ffbdec" +dependencies = [ + "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dom_query", + "dunce", + "glob", + "http", + "infer", + "json-patch", + "log", + "memchr", + "phf", + "plist", + "proc-macro2", + "quote", + "regex", + "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", + "thiserror 2.0.18", + "toml 1.1.2+spec-1.1.0", + "url", + "urlpattern", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-winres" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc65d45c68858bfe420dd29e834b5d15dbecf8a07a8a16cf4d532c7b1f69d4b6" +dependencies = [ + "dunce", + "embed-resource", + "toml 1.1.2+spec-1.1.0", +] + +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.4.2", + "once_cell", + "rustix", + "windows-sys 0.61.2", +] + +[[package]] +name = "tendril" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24" +dependencies = [ + "new_debug_unreachable", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "time" +version = "0.3.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" + +[[package]] +name = "time-macros" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.52.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "socket2", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" +dependencies = [ + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "toml" +version = "0.9.12+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" +dependencies = [ + "indexmap 2.14.0", + "serde_core", + "serde_spanned 1.1.1", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 0.7.15", +] + +[[package]] +name = "toml" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee" +dependencies = [ + "indexmap 2.14.0", + "serde_core", + "serde_spanned 1.1.1", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 1.0.2", +] + +[[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.11+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b" +dependencies = [ + "indexmap 2.14.0", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "winnow 1.0.2", +] + +[[package]] +name = "toml_parser" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" +dependencies = [ + "winnow 1.0.2", +] + +[[package]] +name = "toml_writer" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db" + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51" +dependencies = [ + "bitflags 2.11.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.117", +] + +[[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 = "transcribee-desktop" +version = "0.1.0" +dependencies = [ + "serde", + "serde_json", + "tauri", + "tauri-build", + "tauri-plugin-opener", + "tauri-plugin-shell", +] + +[[package]] +name = "tray-icon" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15edbb0d80583e85ee8df283410038e17314df5cba30da2087a54a85216c0773" +dependencies = [ + "crossbeam-channel", + "dirs", + "libappindicator", + "muda", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "once_cell", + "png 0.18.1", + "serde", + "thiserror 2.0.18", + "windows-sys 0.61.2", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + +[[package]] +name = "typenum" +version = "1.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de" + +[[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.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", + "serde_derive", +] + +[[package]] +name = "urlpattern" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" +dependencies = [ + "regex", + "serde", + "unic-ucd-ident", + "url", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76" +dependencies = [ + "getrandom 0.4.2", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "version-compare" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "vswhom" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" +dependencies = [ + "libc", + "vswhom-sys", +] + +[[package]] +name = "vswhom-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.3+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6" +dependencies = [ + "wit-bindgen 0.57.1", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +dependencies = [ + "wit-bindgen 0.51.0", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.71" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.117", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap 2.14.0", + "wasm-encoder", + "wasmparser", +] + +[[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 = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags 2.11.1", + "hashbrown 0.15.5", + "indexmap 2.14.0", + "semver", +] + +[[package]] +name = "web-sys" +version = "0.3.98" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web_atoms" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538" +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.117", +] + +[[package]] +name = "webview2-com-sys" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c" +dependencies = [ + "thiserror 2.0.18", + "windows", + "windows-core 0.61.2", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "window-vibrancy" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" +dependencies = [ + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "raw-window-handle", + "windows-sys 0.59.0", + "windows-version", +] + +[[package]] +name = "windows" +version = "0.61.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +dependencies = [ + "windows-collections", + "windows-core 0.61.2", + "windows-future", + "windows-link 0.1.3", + "windows-numerics", +] + +[[package]] +name = "windows-collections" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" +dependencies = [ + "windows-core 0.61.2", +] + +[[package]] +name = "windows-core" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", +] + +[[package]] +name = "windows-future" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[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.117", +] + +[[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" + +[[package]] +name = "winnow" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0" +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.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck 0.5.0", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck 0.5.0", + "indexmap 2.14.0", + "prettyplease", + "syn 2.0.117", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.117", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags 2.11.1", + "indexmap 2.14.0", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap 2.14.0", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + +[[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", + "soup3", + "tao-macros", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webkit2gtk-sys", + "webview2-com", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "x11" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "x11-dl" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" +dependencies = [ + "libc", + "once_cell", + "pkg-config", +] + +[[package]] +name = "yoke" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca" +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.117", + "synstructure", +] + +[[package]] +name = "zbus" +version = "5.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3bcbf15c8708d7fc1be0c993622e0a5cbd5e8b52bfa40afa4c3e0cd8d724ac1" +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 1.0.2", + "zbus_macros", + "zbus_names", + "zvariant", +] + +[[package]] +name = "zbus_macros" +version = "5.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51fa5406ad9175a8c825a931f8cf347116b531b3634fcb0b627c290f1f2516ff" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", + "zbus_names", + "zvariant", + "zvariant_utils", +] + +[[package]] +name = "zbus_names" +version = "4.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7074f3e50b894eac91750142016d30d0a89be8e67dbfd9704fb875825760e52d" +dependencies = [ + "serde", + "winnow 1.0.2", + "zvariant", +] + +[[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.117", + "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.117", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" + +[[package]] +name = "zvariant" +version = "5.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c1567a6ec68df868cbbfde844cfc6d81649fe5109a62b116b19fabd53e618ee" +dependencies = [ + "endi", + "enumflags2", + "serde", + "winnow 1.0.2", + "zvariant_derive", + "zvariant_utils", +] + +[[package]] +name = "zvariant_derive" +version = "5.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7d5b780599bbde114e39d9a0799577fad1ced5105d38515745f7b3099d8ceda" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", + "zvariant_utils", +] + +[[package]] +name = "zvariant_utils" +version = "3.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d464f5733ffa07a3164d656f18533caace9d0638596721355d73256a410d691" +dependencies = [ + "proc-macro2", + "quote", + "serde", + "syn 2.0.117", + "winnow 1.0.2", +] diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml new file mode 100644 index 00000000..0edd5e2d --- /dev/null +++ b/desktop/src-tauri/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "transcribee-desktop" +version = "0.1.0" +description = "A Tauri App" +authors = ["you"] +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[lib] +# The `_lib` suffix may seem redundant but it is necessary +# to make the lib name unique and wouldn't conflict with the bin name. +# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 +name = "transcribee_desktop_lib" +crate-type = ["staticlib", "cdylib", "rlib"] + +[build-dependencies] +tauri-build = { version = "2", features = [] } + +[dependencies] +tauri = { version = "2", features = [] } +tauri-plugin-opener = "2" +serde = { version = "1", features = ["derive"] } +serde_json = "1" +tauri-plugin-shell = "2" + diff --git a/desktop/src-tauri/build.rs b/desktop/src-tauri/build.rs new file mode 100644 index 00000000..d860e1e6 --- /dev/null +++ b/desktop/src-tauri/build.rs @@ -0,0 +1,3 @@ +fn main() { + tauri_build::build() +} diff --git a/desktop/src-tauri/capabilities/default.json b/desktop/src-tauri/capabilities/default.json new file mode 100644 index 00000000..9b67b667 --- /dev/null +++ b/desktop/src-tauri/capabilities/default.json @@ -0,0 +1,13 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Capability for the main window", + "windows": [ + "main" + ], + "permissions": [ + "core:default", + "opener:default", + "shell:default" + ] +} \ No newline at end of file diff --git a/desktop/src-tauri/icons/icon.png b/desktop/src-tauri/icons/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e1cd2619e0b5ec089cbba5ec7b03ddf2b1dfceb6 GIT binary patch literal 14183 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

5l#v3A#xI3*z~1~fvo9Q(N^(==!|_FZ z*duZ=+M1~)8E|otX8KNZlr?qels#x_1Xq@9IIw~@9uAREJVH)Xw^}UclF6327}E42 zT)E&?U%TK?(+K7%R!`H5oX0i)4Qn5??Iw3p5J~6_u+aWehY{DSn}3V2p$bgjnAu?o)v@iC254fXeMv50$9YrpU`N?u@QIWs)T?SP|fa}(|9 zqAX+!7`cx=4)cCBg5h~pu(?@9`)aCr#oyz$ld=#RFxYCNZCZls@4v2~*e-t6PEVvV z&bbK3b3wt(Coc!ufAbXXC<**#HQ%J9k`New6iG<5RjtO4XVO?dCvwxD{kJ#tfQr(X zg^NTwF-FwAeS_{V4bfel8l`~NbfrTR2s!G>WduFWxH(t~aK4q=6rEE^$+Uox>gJO2 z{L<;6Q6nHa5#ZEM>H58not!)z(6*_=^~8}jWf*IG$AUKVWOZ4?)GfF z+BM#*wKKmLFD7E~W3U!$IVm$k_k1f&Kz6WV8@55P?r~bcg-Za-!rvW?ns&)KOGT2~ zlkAyqhQj=P$Eg3w#K~}zH@J5bo-BfHjInKSz$@?+Z)NPD4pHj^_Qxmi`UqoTy=`sV zLVxrXGuBr=QRm|}wg75yetQQK4fY3#P_~J}zEfPnb2C4Wo!E(d*(cA;b?7$g2in<( zPn)ghX}nzJPmb6(3Dpeg_GW~Hc}Lt=lgsSZz z!5QXyz7KaR;D`3Ee}d`af{H>WWZ|Io1QI3~4Ll_`g1(cRnhLK73Ro)7zPCd={1W2x zRp%Xlvv4>!<2@}$hz|!V{T}_eHx2xkLl^hQoZTCnsjCl|W_@5Fx2(+j0ogy&Y+;L- z<)G$*CiN7hOm^s!{U>1F7U=iNk{+u~dAC!eDz%=|glFW0jEZU1&o(G_c#wTxUjnG} z#cg3>jEpUi#Mlq@t?Msg_#geK^Lx@DyHWf7=AS5vVyM7YOjvUVCfcpVR<(+5!H?9- zySI6s>o3m&*zr||=wcPGyBkQV`EWJl@bH8qobjOp+sXL*)=&yX)8aAbf~tGv?a2SN zu^Ddo-z?DWk9h9Yz#5p^NU#x~wYSd?H@w@!2Gb4G)6-utEMV~~M85Br5ff(v5O1|T z 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 Result { + let shell = app_handle.shell(); + let output = tauri::async_runtime::block_on(async move { + shell + .command("ffmpeg") + .args(["--help"]) + .output() + .await + .unwrap() + }); + + if output.status.success() { + Ok(format!("Result: {}", String::from_utf8(output.stdout).unwrap())) + } else { + Err(format!("Exit with code: {}", output.status.code().unwrap())) + } +} + +#[cfg_attr(mobile, tauri::mobile_entry_point)] +pub fn run() { + tauri::Builder::default() + .plugin(tauri_plugin_shell::init()) + .plugin(tauri_plugin_opener::init()) + .invoke_handler(tauri::generate_handler![ffmpeg_help]) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} diff --git a/desktop/src-tauri/src/main.rs b/desktop/src-tauri/src/main.rs new file mode 100644 index 00000000..a84f192a --- /dev/null +++ b/desktop/src-tauri/src/main.rs @@ -0,0 +1,6 @@ +// Prevents additional console window on Windows in release, DO NOT REMOVE!! +#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] + +fn main() { + transcribee_desktop_lib::run() +} diff --git a/desktop/src-tauri/tauri.conf.json b/desktop/src-tauri/tauri.conf.json new file mode 100644 index 00000000..62fdacbc --- /dev/null +++ b/desktop/src-tauri/tauri.conf.json @@ -0,0 +1,28 @@ +{ + "$schema": "https://schema.tauri.app/config/2", + "productName": "transcribee-desktop", + "version": "0.1.0", + "identifier": "org.bugbakery.transcribee-desktop", + "build": { + "beforeDevCommand": "npm run dev", + "devUrl": "http://localhost:1420", + "beforeBuildCommand": "npm run build", + "frontendDist": "../dist" + }, + "app": { + "windows": [ + { + "title": "transcribee-desktop", + "width": 800, + "height": 600 + } + ], + "security": { + "csp": null + } + }, + "bundle": { + "active": true, + "targets": "all" + } +} diff --git a/desktop/src/App.tsx b/desktop/src/App.tsx new file mode 100644 index 00000000..38b16f5c --- /dev/null +++ b/desktop/src/App.tsx @@ -0,0 +1,22 @@ +import { useState } from "react"; +import { invoke } from "@tauri-apps/api/core"; + +function App() { + const [msg, setMsg] = useState(""); + + async function greet() { + // Learn more about Tauri commands at https://tauri.app/develop/calling-rust/ + setMsg(await invoke("ffmpeg_help", { })); + } + + return ( +

+

Welcome to Tauri + React

+ + +

{msg}

+
+ ); +} + +export default App; diff --git a/desktop/src/main.tsx b/desktop/src/main.tsx new file mode 100644 index 00000000..2be325ed --- /dev/null +++ b/desktop/src/main.tsx @@ -0,0 +1,9 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import App from "./App"; + +ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( + + + , +); diff --git a/desktop/src/vite-env.d.ts b/desktop/src/vite-env.d.ts new file mode 100644 index 00000000..11f02fe2 --- /dev/null +++ b/desktop/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/desktop/tsconfig.json b/desktop/tsconfig.json new file mode 100644 index 00000000..a7fc6fbf --- /dev/null +++ b/desktop/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "ES2020", + "useDefineForClassFields": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["src"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/desktop/tsconfig.node.json b/desktop/tsconfig.node.json new file mode 100644 index 00000000..42872c59 --- /dev/null +++ b/desktop/tsconfig.node.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "composite": true, + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/desktop/vite.config.ts b/desktop/vite.config.ts new file mode 100644 index 00000000..ddad22a3 --- /dev/null +++ b/desktop/vite.config.ts @@ -0,0 +1,32 @@ +import { defineConfig } from "vite"; +import react from "@vitejs/plugin-react"; + +// @ts-expect-error process is a nodejs global +const host = process.env.TAURI_DEV_HOST; + +// https://vite.dev/config/ +export default defineConfig(async () => ({ + plugins: [react()], + + // Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build` + // + // 1. prevent Vite from obscuring rust errors + clearScreen: false, + // 2. tauri expects a fixed port, fail if that port is not available + server: { + port: 1420, + strictPort: true, + host: host || false, + hmr: host + ? { + protocol: "ws", + host, + port: 1421, + } + : undefined, + watch: { + // 3. tell Vite to ignore watching `src-tauri` + ignored: ["**/src-tauri/**"], + }, + }, +})); From da12dfd641fc3f5ceef4954a3b3661834d99b099 Mon Sep 17 00:00:00 2001 From: Jaro Habiger Date: Sat, 16 May 2026 13:34:09 +0200 Subject: [PATCH 2/9] add icons to transcribee-desktop --- desktop/src-tauri/icons/128x128.png | Bin 0 -> 4876 bytes desktop/src-tauri/icons/128x128@2x.png | Bin 0 -> 9996 bytes desktop/src-tauri/icons/32x32.png | Bin 0 -> 1227 bytes desktop/src-tauri/icons/64x64.png | Bin 0 -> 2459 bytes desktop/src-tauri/icons/generate_icons.sh | 23 +++++++ desktop/src-tauri/icons/icon.icns | Bin 0 -> 115361 bytes desktop/src-tauri/icons/icon.ico | Bin 0 -> 40514 bytes desktop/src-tauri/icons/icon.svg | 79 ++++++++++++++++++++++ desktop/src-tauri/tauri.conf.json | 9 ++- 9 files changed, 110 insertions(+), 1 deletion(-) create mode 100644 desktop/src-tauri/icons/128x128.png create mode 100644 desktop/src-tauri/icons/128x128@2x.png create mode 100644 desktop/src-tauri/icons/32x32.png create mode 100644 desktop/src-tauri/icons/64x64.png create mode 100755 desktop/src-tauri/icons/generate_icons.sh create mode 100644 desktop/src-tauri/icons/icon.icns create mode 100644 desktop/src-tauri/icons/icon.ico create mode 100644 desktop/src-tauri/icons/icon.svg diff --git a/desktop/src-tauri/icons/128x128.png b/desktop/src-tauri/icons/128x128.png new file mode 100644 index 0000000000000000000000000000000000000000..812c203227be01680dd2736c6a759c23f8a96757 GIT binary patch literal 4876 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 literal 0 HcmV?d00001 diff --git a/desktop/src-tauri/icons/128x128@2x.png b/desktop/src-tauri/icons/128x128@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..ff7459a93c5c86a51946c3063643cb57a7446bb1 GIT binary patch literal 9996 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

VK`_)sbP~8;3`M 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 literal 0 HcmV?d00001 diff --git a/desktop/src-tauri/icons/icon.ico b/desktop/src-tauri/icons/icon.ico new file mode 100644 index 0000000000000000000000000000000000000000..372c305f0a6adb5f577e2c9055afc3dd96e786f7 GIT binary patch literal 40514 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 literal 0 HcmV?d00001 diff --git a/desktop/src-tauri/icons/icon.svg b/desktop/src-tauri/icons/icon.svg new file mode 100644 index 00000000..208d3f7b --- /dev/null +++ b/desktop/src-tauri/icons/icon.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + diff --git a/desktop/src-tauri/tauri.conf.json b/desktop/src-tauri/tauri.conf.json index 62fdacbc..2324343e 100644 --- a/desktop/src-tauri/tauri.conf.json +++ b/desktop/src-tauri/tauri.conf.json @@ -23,6 +23,13 @@ }, "bundle": { "active": true, - "targets": "all" + "targets": "all", + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ] } } From bafdc1ff961ba1b1b7bf55e8f7379aaed6e9d78b Mon Sep 17 00:00:00 2001 From: Jaro Habiger Date: Sat, 16 May 2026 17:59:33 +0200 Subject: [PATCH 3/9] include worker bundles in tauri app --- desktop/src-tauri/.gitignore | 4 +--- desktop/src-tauri/prepare_worker.py | 31 +++++++++++++++++++++++++++++ desktop/src-tauri/tauri.conf.json | 7 ++++--- worker/packaging/run_worker.sh.tmpl | 0 4 files changed, 36 insertions(+), 6 deletions(-) create mode 100644 desktop/src-tauri/prepare_worker.py mode change 100644 => 100755 worker/packaging/run_worker.sh.tmpl diff --git a/desktop/src-tauri/.gitignore b/desktop/src-tauri/.gitignore index 9e71ab1e..5edd0c6c 100644 --- a/desktop/src-tauri/.gitignore +++ b/desktop/src-tauri/.gitignore @@ -6,6 +6,4 @@ # will have schema files for capabilities auto-completion /gen/schemas -# native dependencies -.native-deps-dl -native-deps +worker/ diff --git a/desktop/src-tauri/prepare_worker.py b/desktop/src-tauri/prepare_worker.py new file mode 100644 index 00000000..cbd2cd65 --- /dev/null +++ b/desktop/src-tauri/prepare_worker.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 +import os +import tarfile +from pathlib import Path +from subprocess import check_call + +if __name__ == "__main__": + platform = os.environ["TAURI_ENV_PLATFORM"] + arch = os.environ["TAURI_ENV_ARCH"] + target = f"{platform}-{arch}" + + worker_dir = Path(__file__).parent.parent.parent / "worker" / "packaging" + check_call(["python", "build_worker_bundle.py", target], cwd=worker_dir) + worker_tar = worker_dir / "build" / f"worker-{target}.tar" + + worker_target_dir = Path(__file__).parent / "worker" + worker_platform_file = worker_target_dir / ".platform" + + if ( + worker_platform_file.exists() + and worker_platform_file.stat().st_mtime > worker_tar.stat().st_mtime + and worker_platform_file.read_text() == target + ): + print("worker is already up to date. not extracting again.") + exit(0) + + print("extracting worker...") + with tarfile.open(worker_tar) as tar: + tar.extractall(worker_target_dir, filter="data") + + worker_platform_file.touch() diff --git a/desktop/src-tauri/tauri.conf.json b/desktop/src-tauri/tauri.conf.json index 2324343e..0713bc97 100644 --- a/desktop/src-tauri/tauri.conf.json +++ b/desktop/src-tauri/tauri.conf.json @@ -4,9 +4,9 @@ "version": "0.1.0", "identifier": "org.bugbakery.transcribee-desktop", "build": { - "beforeDevCommand": "npm run dev", + "beforeDevCommand": "python src-tauri/prepare_worker.py && npm run dev", "devUrl": "http://localhost:1420", - "beforeBuildCommand": "npm run build", + "beforeBuildCommand": "python src-tauri/prepare_worker.py && npm run build", "frontendDist": "../dist" }, "app": { @@ -30,6 +30,7 @@ "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" - ] + ], + "resources": ["worker"] } } diff --git a/worker/packaging/run_worker.sh.tmpl b/worker/packaging/run_worker.sh.tmpl old mode 100644 new mode 100755 From 90b7f0aac2ee356d7fbd0dbc97c0e7883e1ac6f6 Mon Sep 17 00:00:00 2001 From: Jaro Habiger Date: Sat, 16 May 2026 20:45:56 +0200 Subject: [PATCH 4/9] run worker in tauri app & add more beautiful logging --- desktop/package-lock.json | 10 + desktop/package.json | 1 + desktop/src-tauri/Cargo.lock | 366 ++++++++++++++++++++ desktop/src-tauri/Cargo.toml | 4 +- desktop/src-tauri/capabilities/default.json | 5 +- desktop/src-tauri/src/lib.rs | 31 +- desktop/src-tauri/src/worker_plugin.rs | 87 +++++ 7 files changed, 500 insertions(+), 4 deletions(-) create mode 100644 desktop/src-tauri/src/worker_plugin.rs diff --git a/desktop/package-lock.json b/desktop/package-lock.json index 7be8bdb8..566f968f 100644 --- a/desktop/package-lock.json +++ b/desktop/package-lock.json @@ -9,6 +9,7 @@ "version": "0.1.0", "dependencies": { "@tauri-apps/api": "^2", + "@tauri-apps/plugin-log": "^2.8.0", "@tauri-apps/plugin-opener": "^2", "@tauri-apps/plugin-shell": "^2.3.5", "react": "^19.1.0", @@ -1381,6 +1382,15 @@ "node": ">= 10" } }, + "node_modules/@tauri-apps/plugin-log": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-log/-/plugin-log-2.8.0.tgz", + "integrity": "sha512-a+7rOq3MJwpTOLLKbL8d0qGZ85hgHw5pNOWusA9o3cf7cEgtYHiGY/+O8fj8MvywQIGqFv0da2bYQDlrqLE7rw==", + "license": "MIT OR Apache-2.0", + "dependencies": { + "@tauri-apps/api": "^2.8.0" + } + }, "node_modules/@tauri-apps/plugin-opener": { "version": "2.5.4", "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.5.4.tgz", diff --git a/desktop/package.json b/desktop/package.json index 6bd73b5d..12960935 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -11,6 +11,7 @@ }, "dependencies": { "@tauri-apps/api": "^2", + "@tauri-apps/plugin-log": "^2.8.0", "@tauri-apps/plugin-opener": "^2", "@tauri-apps/plugin-shell": "^2.3.5", "react": "^19.1.0", diff --git a/desktop/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock index fe650559..44640a2e 100644 --- a/desktop/src-tauri/Cargo.lock +++ b/desktop/src-tauri/Cargo.lock @@ -8,6 +8,17 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" +[[package]] +name = "ahash" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom 0.2.17", + "once_cell", + "version_check", +] + [[package]] name = "aho-corasick" version = "1.1.4" @@ -32,6 +43,23 @@ 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" @@ -47,6 +75,12 @@ version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + [[package]] name = "async-broadcast" version = "0.7.2" @@ -255,6 +289,18 @@ dependencies = [ "serde_core", ] +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + [[package]] name = "block-buffer" version = "0.10.4" @@ -286,6 +332,30 @@ dependencies = [ "piper", ] +[[package]] +name = "borsh" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a" +dependencies = [ + "borsh-derive", + "bytes", + "cfg_aliases", +] + +[[package]] +name = "borsh-derive" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59" +dependencies = [ + "once_cell", + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "brotli" version = "8.0.2" @@ -322,6 +392,40 @@ version = "3.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" +[[package]] +name = "byte-unit" +version = "5.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d" +dependencies = [ + "rust_decimal", + "schemars 1.2.1", + "serde", + "utf8-width", +] + +[[package]] +name = "bytecheck" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" +dependencies = [ + "bytecheck_derive", + "ptr_meta", + "simdutf8", +] + +[[package]] +name = "bytecheck_derive" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "bytemuck" version = "1.25.0" @@ -453,6 +557,12 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + [[package]] name = "chrono" version = "0.4.44" @@ -465,6 +575,15 @@ dependencies = [ "windows-link 0.2.1", ] +[[package]] +name = "colored" +version = "3.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" +dependencies = [ + "windows-sys 0.61.2", +] + [[package]] name = "combine" version = "4.6.7" @@ -891,6 +1010,16 @@ dependencies = [ "syn 2.0.117", ] +[[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" @@ -954,6 +1083,15 @@ 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" @@ -1034,6 +1172,12 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + [[package]] name = "futures-channel" version = "0.3.32" @@ -1416,6 +1560,9 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash", +] [[package]] name = "hashbrown" @@ -1962,6 +2109,9 @@ name = "log" version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" +dependencies = [ + "value-bag", +] [[package]] name = "markup5ever" @@ -2104,6 +2254,15 @@ dependencies = [ "syn 2.0.117", ] +[[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" @@ -2553,6 +2712,15 @@ 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" @@ -2631,6 +2799,26 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "ptr_meta" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" +dependencies = [ + "ptr_meta_derive", +] + +[[package]] +name = "ptr_meta_derive" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "quick-xml" version = "0.39.4" @@ -2661,6 +2849,42 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + [[package]] name = "raw-window-handle" version = "0.6.2" @@ -2736,6 +2960,15 @@ version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" +[[package]] +name = "rend" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" +dependencies = [ + "bytecheck", +] + [[package]] name = "reqwest" version = "0.13.3" @@ -2770,6 +3003,52 @@ dependencies = [ "web-sys", ] +[[package]] +name = "rkyv" +version = "0.7.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" +dependencies = [ + "bitvec", + "bytecheck", + "bytes", + "hashbrown 0.12.3", + "ptr_meta", + "rend", + "rkyv_derive", + "seahash", + "tinyvec", + "uuid", +] + +[[package]] +name = "rkyv_derive" +version = "0.7.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "rust_decimal" +version = "1.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c5108e3d4d903e21aac27f12ba5377b6b34f9f44b325e4894c7924169d06995" +dependencies = [ + "arrayvec", + "borsh", + "bytes", + "num-traits", + "rand", + "rkyv", + "serde", + "serde_json", + "wasm-bindgen", +] + [[package]] name = "rustc-hash" version = "2.1.2" @@ -2870,6 +3149,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" +[[package]] +name = "seahash" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" + [[package]] name = "selectors" version = "0.36.1" @@ -3122,6 +3407,12 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + [[package]] name = "siphasher" version = "1.0.3" @@ -3252,6 +3543,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ "proc-macro2", + "quote", "unicode-ident", ] @@ -3350,6 +3642,12 @@ dependencies = [ "syn 2.0.117", ] +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + [[package]] name = "target-lexicon" version = "0.12.16" @@ -3485,6 +3783,28 @@ dependencies = [ "walkdir", ] +[[package]] +name = "tauri-plugin-log" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93" +dependencies = [ + "android_logger", + "byte-unit", + "fern", + "log", + "objc2", + "objc2-foundation", + "serde", + "serde_json", + "serde_repr", + "swift-rs", + "tauri", + "tauri-plugin", + "thiserror 2.0.18", + "time", +] + [[package]] name = "tauri-plugin-opener" version = "2.5.4" @@ -3699,7 +4019,9 @@ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" dependencies = [ "deranged", "itoa", + "libc", "num-conv", + "num_threads", "powerfmt", "serde_core", "time-core", @@ -3974,10 +4296,13 @@ dependencies = [ name = "transcribee-desktop" version = "0.1.0" dependencies = [ + "colored", + "log", "serde", "serde_json", "tauri", "tauri-build", + "tauri-plugin-log", "tauri-plugin-opener", "tauri-plugin-shell", ] @@ -4123,6 +4448,12 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" +[[package]] +name = "utf8-width" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" + [[package]] name = "utf8_iter" version = "1.0.4" @@ -4141,6 +4472,12 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "value-bag" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" + [[package]] name = "version-compare" version = "0.2.1" @@ -5023,6 +5360,15 @@ dependencies = [ "x11-dl", ] +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + [[package]] name = "x11" version = "2.21.0" @@ -5128,6 +5474,26 @@ dependencies = [ "zvariant", ] +[[package]] +name = "zerocopy" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "zerofrom" version = "0.1.8" diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml index 0edd5e2d..b554a7da 100644 --- a/desktop/src-tauri/Cargo.toml +++ b/desktop/src-tauri/Cargo.toml @@ -23,4 +23,6 @@ tauri-plugin-opener = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" tauri-plugin-shell = "2" - +log = "0.4.29" +tauri-plugin-log = "2" +colored = "3.1.1" diff --git a/desktop/src-tauri/capabilities/default.json b/desktop/src-tauri/capabilities/default.json index 9b67b667..4baa7d5d 100644 --- a/desktop/src-tauri/capabilities/default.json +++ b/desktop/src-tauri/capabilities/default.json @@ -8,6 +8,7 @@ "permissions": [ "core:default", "opener:default", - "shell:default" + "shell:default", + "log:default" ] -} \ No newline at end of file +} diff --git a/desktop/src-tauri/src/lib.rs b/desktop/src-tauri/src/lib.rs index 8d21d882..16999273 100644 --- a/desktop/src-tauri/src/lib.rs +++ b/desktop/src-tauri/src/lib.rs @@ -1,5 +1,10 @@ +use colored::Color; +use log::Level; +use tauri_plugin_log::fern; use tauri_plugin_shell::ShellExt; +mod worker_plugin; + #[tauri::command] fn ffmpeg_help(app_handle: tauri::AppHandle) -> Result { let shell = app_handle.shell(); @@ -13,7 +18,10 @@ fn ffmpeg_help(app_handle: tauri::AppHandle) -> Result { }); if output.status.success() { - Ok(format!("Result: {}", String::from_utf8(output.stdout).unwrap())) + Ok(format!( + "Result: {}", + String::from_utf8(output.stdout).unwrap() + )) } else { Err(format!("Exit with code: {}", output.status.code().unwrap())) } @@ -22,6 +30,27 @@ fn ffmpeg_help(app_handle: tauri::AppHandle) -> Result { #[cfg_attr(mobile, tauri::mobile_entry_point)] pub fn run() { tauri::Builder::default() + .plugin( + tauri_plugin_log::Builder::new() + .level(tauri_plugin_log::log::LevelFilter::Info) + .format(|callback: fern::FormatCallback, message, record| { + let mut color = match record.metadata().target() { + "worker" => Color::Blue, + _ => Color::Black, + }; + if record.metadata().level() == Level::Error { + color = Color::Red; + } + + callback.finish(format_args!( + "{color_line}{target: <8}| {message}\x1B[0m", + color_line = format_args!("\x1B[{}m", color.to_fg_str()), + target = record.target(), + message = message, + )) + }) + .build(), + ) .plugin(tauri_plugin_shell::init()) .plugin(tauri_plugin_opener::init()) .invoke_handler(tauri::generate_handler![ffmpeg_help]) diff --git a/desktop/src-tauri/src/worker_plugin.rs b/desktop/src-tauri/src/worker_plugin.rs new file mode 100644 index 00000000..c4a5a300 --- /dev/null +++ b/desktop/src-tauri/src/worker_plugin.rs @@ -0,0 +1,87 @@ +use log::{error, info, log, Level}; +use tauri::Manager; +use tauri::{ + path::BaseDirectory, + plugin::{Builder, TauriPlugin}, + Runtime, +}; +use tauri_plugin_shell::ShellExt; + +pub fn init() -> TauriPlugin { + // Make the plugin config optional + // by using `Builder::>` instead + Builder::::new("transcribee-worker") + .setup(|app, _| { + let ext = if cfg!(target_family = "windows") { + "bat" + } else { + "sh" + }; + let resource_path = app + .path() + .resolve(format!("worker/run_worker.{ext}"), BaseDirectory::Resource) + .map_err(|e| e.to_string())?; + println!("{:?}", resource_path); + + let app = app.clone(); + tauri::async_runtime::spawn(async move { + let shell = app.shell(); + + loop { + info!(target: "worker", "starting worker"); + let (mut events, _) = shell + .command(resource_path.clone()) + .args(["--help"]) + .spawn() + .unwrap(); + + let mut stderr = Vec::new(); + let mut stdout = Vec::new(); + + fn output_buffer(buf: &mut Vec, level: Level, always_output: bool) { + while let Some(pos) = buf.iter().position(|b| *b == '\n' as u8) { + let line = String::from_utf8_lossy(&buf[..pos]); + log!(target: "worker", level, "{}", line); + buf.drain(..pos+1); + } + if always_output { + let line = String::from_utf8_lossy(&buf); + if !line.is_empty() { + log!(target: "worker", level, "{}", line); + } + buf.drain(..); + } + } + + while let Some(event) = events.recv().await { + match event { + tauri_plugin_shell::process::CommandEvent::Stderr(v) => stderr.extend_from_slice(&v), + tauri_plugin_shell::process::CommandEvent::Stdout(v) => stdout.extend_from_slice(&v), + tauri_plugin_shell::process::CommandEvent::Error(e) => error!(target: "worker", "error: {e}"), + tauri_plugin_shell::process::CommandEvent::Terminated( + terminated_payload, + ) => { + for (buf, level) in [(&mut stderr, Level::Error), (&mut stdout, Level::Info)] { + output_buffer(buf, level, true); + } + if let Some(code) = terminated_payload.code { + error!(target: "worker", "worker terminated with exit code {code}") + } else if let Some(signal) = terminated_payload.signal { + error!(target: "worker", "worker terminated by signal {signal}") + } else { + error!(target: "worker", "worker terminated") + } + }, + _ => {}, + } + + for (buf, level) in [(&mut stderr, Level::Error), (&mut stdout, Level::Info)] { + output_buffer(buf, level, false); + } + } + } + }); + Ok(()) + }) + .build() +} From 01b60718615060e2b92a34835cb9d6a9196a3ef1 Mon Sep 17 00:00:00 2001 From: pajowu Date: Sat, 16 May 2026 18:39:27 +0200 Subject: [PATCH 5/9] =?UTF-8?q?=F0=9F=8E=89=20Add=20desktop=20backend=20st?= =?UTF-8?q?ub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- desktop/src-tauri/Cargo.lock | 246 +++++++++++++++++++++--- desktop/src-tauri/Cargo.toml | 3 + desktop/src-tauri/src/backend.rs | 40 ++++ desktop/src-tauri/src/backend_plugin.rs | 22 +++ desktop/src-tauri/src/lib.rs | 4 + 5 files changed, 286 insertions(+), 29 deletions(-) create mode 100644 desktop/src-tauri/src/backend.rs create mode 100644 desktop/src-tauri/src/backend_plugin.rs diff --git a/desktop/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock index 44640a2e..e2f3b79c 100644 --- a/desktop/src-tauri/Cargo.lock +++ b/desktop/src-tauri/Cargo.lock @@ -247,6 +247,61 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" +[[package]] +name = "axum" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90" +dependencies = [ + "axum-core", + "base64 0.22.1", + "bytes", + "form_urlencoded", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde_core", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sha1", + "sync_wrapper", + "tokio", + "tokio-tungstenite", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-core" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "base64" version = "0.21.7" @@ -769,6 +824,12 @@ dependencies = [ "syn 2.0.117", ] +[[package]] +name = "data-encoding" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" + [[package]] name = "dbus" version = "0.9.11" @@ -1652,6 +1713,12 @@ version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + [[package]] name = "hyper" version = "1.9.0" @@ -1665,6 +1732,7 @@ dependencies = [ "http", "http-body", "httparse", + "httpdate", "itoa", "pin-project-lite", "smallvec", @@ -2124,6 +2192,12 @@ dependencies = [ "web_atoms", ] +[[package]] +name = "matchit" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" + [[package]] name = "memchr" version = "2.8.0" @@ -2862,8 +2936,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", - "rand_chacha", - "rand_core", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.5", ] [[package]] @@ -2873,7 +2957,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.6.4", +] + +[[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 0.9.5", ] [[package]] @@ -2885,6 +2979,15 @@ dependencies = [ "getrandom 0.2.17", ] +[[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" @@ -3042,7 +3145,7 @@ dependencies = [ "borsh", "bytes", "num-traits", - "rand", + "rand 0.8.6", "rkyv", "serde", "serde_json", @@ -3083,6 +3186,12 @@ version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + [[package]] name = "same-file" version = "1.0.6" @@ -3250,6 +3359,17 @@ dependencies = [ "zmij", ] +[[package]] +name = "serde_path_to_error" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" +dependencies = [ + "itoa", + "serde", + "serde_core", +] + [[package]] name = "serde_repr" version = "0.1.20" @@ -3279,6 +3399,18 @@ dependencies = [ "serde_core", ] +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + [[package]] name = "serde_with" version = "3.20.0" @@ -3342,6 +3474,17 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + [[package]] name = "sha2" version = "0.10.9" @@ -3656,9 +3799,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tauri" -version = "2.11.1" +version = "2.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b93bd86d231f0a8138f11a02a584769fe4b703dc36ae133d783228dbc4801405" +checksum = "437404997acf375d85f1177afa7e11bb971f274ed6a7b83a2a3e339015f4cc28" dependencies = [ "anyhow", "bytes", @@ -3707,9 +3850,9 @@ dependencies = [ [[package]] name = "tauri-build" -version = "2.6.1" +version = "2.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a318b234cc2dea65f575467bafcfb76286bce228ebc3778e337d61d03213007" +checksum = "4aa1f9055fc23919a54e4e125052bed16ed04aef0487086e758fe01a67b451c7" dependencies = [ "anyhow", "cargo_toml", @@ -3728,9 +3871,9 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "2.6.1" +version = "2.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bd11644962add2549a60b7e7c6800f17d7020156e02f516021d8103e80cc528" +checksum = "e4a0319528a025a38c4078e7dae2c446f4e63620ddb0659a643ede1cb38f90e9" dependencies = [ "base64 0.22.1", "brotli", @@ -3755,9 +3898,9 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "2.6.1" +version = "2.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed9d3742a37a355d2e47c9af924e9fbc112abb76f9835d35d4780e318419502" +checksum = "ae6cb4e3896c21d2f6da5b31251d2faea0153bba56ed0e970f918115dbee4924" dependencies = [ "heck 0.5.0", "proc-macro2", @@ -3769,9 +3912,9 @@ dependencies = [ [[package]] name = "tauri-plugin" -version = "2.6.1" +version = "2.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eefb2c18e8a605c23edb48fc56bb77381199e1a1e7f6ff0c9b970afe7b3cb8ee" +checksum = "e126abc9e84e35cdfd01596140a73a1850cdb0df0a23acf0185776c30b469a6e" dependencies = [ "anyhow", "glob", @@ -3850,9 +3993,9 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "2.11.1" +version = "2.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fef478ba1d2ac21c2d528740b24d0cb315e1e8b1111aae53fafac34804371fc" +checksum = "48222d7116c8807eaa6fe2f372e023fae125084e61e6eca6d70b7961cdf129ef" dependencies = [ "cookie", "dpi", @@ -3875,9 +4018,9 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "2.11.1" +version = "2.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3989df2ae1c476404fe0a2e8ffc4cfbde97e51efd613c2bb5355fbc9ab52cf0" +checksum = "b83849ee63ecb27a8e8d0fe51915ca215076914aca43f96db1179f0f415f6cd9" dependencies = [ "gtk", "http", @@ -3901,9 +4044,9 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.9.1" +version = "2.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d57200389a2f82b4b0a40ae29ca19b6978116e8f4d4e974c3234ce40c0ffbdec" +checksum = "092379df9a707631978e6c56b1bc2401d387f01e2d4a3c123360d167bbb9aa95" dependencies = [ "anyhow", "brotli", @@ -4080,9 +4223,33 @@ dependencies = [ "mio", "pin-project-lite", "socket2", + "tokio-macros", "windows-sys 0.61.2", ] +[[package]] +name = "tokio-macros" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite", +] + [[package]] name = "tokio-util" version = "0.7.18" @@ -4135,7 +4302,7 @@ dependencies = [ "toml_datetime 1.1.1+spec-1.1.0", "toml_parser", "toml_writer", - "winnow 1.0.2", + "winnow 1.0.3", ] [[package]] @@ -4198,7 +4365,7 @@ dependencies = [ "indexmap 2.14.0", "toml_datetime 1.1.1+spec-1.1.0", "toml_parser", - "winnow 1.0.2", + "winnow 1.0.3", ] [[package]] @@ -4207,7 +4374,7 @@ version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" dependencies = [ - "winnow 1.0.2", + "winnow 1.0.3", ] [[package]] @@ -4229,6 +4396,7 @@ dependencies = [ "tokio", "tower-layer", "tower-service", + "tracing", ] [[package]] @@ -4267,6 +4435,7 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ + "log", "pin-project-lite", "tracing-attributes", "tracing-core", @@ -4296,6 +4465,7 @@ dependencies = [ name = "transcribee-desktop" version = "0.1.0" dependencies = [ + "axum", "colored", "log", "serde", @@ -4305,6 +4475,8 @@ dependencies = [ "tauri-plugin-log", "tauri-plugin-opener", "tauri-plugin-shell", + "tokio", + "tokio-tungstenite", ] [[package]] @@ -4335,6 +4507,22 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +[[package]] +name = "tungstenite" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8" +dependencies = [ + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "rand 0.9.4", + "sha1", + "thiserror 2.0.18", +] + [[package]] name = "typeid" version = "1.0.3" @@ -5199,9 +5387,9 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" [[package]] name = "winnow" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0" +checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" dependencies = [ "memchr", ] @@ -5442,7 +5630,7 @@ dependencies = [ "uds_windows", "uuid", "windows-sys 0.61.2", - "winnow 1.0.2", + "winnow 1.0.3", "zbus_macros", "zbus_names", "zvariant", @@ -5470,7 +5658,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7074f3e50b894eac91750142016d30d0a89be8e67dbfd9704fb875825760e52d" dependencies = [ "serde", - "winnow 1.0.2", + "winnow 1.0.3", "zvariant", ] @@ -5563,7 +5751,7 @@ dependencies = [ "endi", "enumflags2", "serde", - "winnow 1.0.2", + "winnow 1.0.3", "zvariant_derive", "zvariant_utils", ] @@ -5591,5 +5779,5 @@ dependencies = [ "quote", "serde", "syn 2.0.117", - "winnow 1.0.2", + "winnow 1.0.3", ] diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml index b554a7da..c396202e 100644 --- a/desktop/src-tauri/Cargo.toml +++ b/desktop/src-tauri/Cargo.toml @@ -26,3 +26,6 @@ tauri-plugin-shell = "2" log = "0.4.29" tauri-plugin-log = "2" colored = "3.1.1" +axum = { version = "0.8.9", features = ["http1", "ws", "tokio"] } +tokio-tungstenite = "0.29.0" +tokio = "1.52.3" diff --git a/desktop/src-tauri/src/backend.rs b/desktop/src-tauri/src/backend.rs new file mode 100644 index 00000000..ef050f84 --- /dev/null +++ b/desktop/src-tauri/src/backend.rs @@ -0,0 +1,40 @@ +use std::future::IntoFuture; +use std::net::SocketAddr; + +use axum::{routing::get, Router}; + +pub struct Backend { + listener: Option, + token: Option, +} + +impl Backend { + pub fn new() -> Self { + return Backend { + listener: None, + token: None, + }; + } + pub fn bind(&mut self) -> std::io::Result { + let listener = std::net::TcpListener::bind("127.0.0.1:0")?; + listener.set_nonblocking(true)?; + let addr = listener.local_addr(); + self.listener = Some(listener); + addr + } + pub fn with_token(mut self, token: String) -> Self { + self.token = Some(token); + self + } + + pub async fn serve(self) -> std::io::Result<()> { + let service = self.get_router(); + let listener = tokio::net::TcpListener::from_std(self.listener.unwrap())?; + axum::serve(listener, service).await + } + + fn get_router(&self) -> Router { + let app = Router::new().route("/", get(|| async { "Hello, World!" })); + return app; + } +} diff --git a/desktop/src-tauri/src/backend_plugin.rs b/desktop/src-tauri/src/backend_plugin.rs new file mode 100644 index 00000000..12b918c2 --- /dev/null +++ b/desktop/src-tauri/src/backend_plugin.rs @@ -0,0 +1,22 @@ +use crate::backend::Backend; + +use tauri::Manager; +use tauri::{ + plugin::{Builder, TauriPlugin}, + Runtime, +}; +use tauri_plugin_log::log; + +pub fn init() -> TauriPlugin { + Builder::new("transcribee_backend") + .setup(|app, _api| { + let mut backend = Backend::new(); + let local_addr = backend.bind().unwrap(); + log::info!("starting backend on http://{:?}", local_addr); + + app.manage(local_addr); + tauri::async_runtime::spawn(async move { backend.serve().await }); + Ok(()) + }) + .build() +} diff --git a/desktop/src-tauri/src/lib.rs b/desktop/src-tauri/src/lib.rs index 16999273..c11a31a5 100644 --- a/desktop/src-tauri/src/lib.rs +++ b/desktop/src-tauri/src/lib.rs @@ -3,6 +3,8 @@ use log::Level; use tauri_plugin_log::fern; use tauri_plugin_shell::ShellExt; +mod backend; +mod backend_plugin; mod worker_plugin; #[tauri::command] @@ -53,6 +55,8 @@ pub fn run() { ) .plugin(tauri_plugin_shell::init()) .plugin(tauri_plugin_opener::init()) + .plugin(worker_plugin::init()) + .plugin(backend_plugin::init()) .invoke_handler(tauri::generate_handler![ffmpeg_help]) .run(tauri::generate_context!()) .expect("error while running tauri application"); From c05c09f0d8ca6c511b2036e5be3c9664505b49cf Mon Sep 17 00:00:00 2001 From: pajowu Date: Sat, 16 May 2026 20:45:34 +0200 Subject: [PATCH 6/9] Move backend to own crate & add standalone bin --- .vscode/settings.json | 4 + desktop/desktop-backend/Cargo.lock | 761 ++++++++++++++++++ desktop/desktop-backend/Cargo.toml | 19 + desktop/desktop-backend/src/backend.rs | 77 ++ desktop/desktop-backend/src/bin/standalone.rs | 11 + desktop/desktop-backend/src/lib.rs | 2 + desktop/src-tauri/Cargo.lock | 12 + desktop/src-tauri/Cargo.toml | 15 +- desktop/src-tauri/src/backend.rs | 40 - desktop/src-tauri/src/backend_plugin.rs | 13 +- desktop/src-tauri/src/lib.rs | 1 - 11 files changed, 904 insertions(+), 51 deletions(-) create mode 100644 desktop/desktop-backend/Cargo.lock create mode 100644 desktop/desktop-backend/Cargo.toml create mode 100644 desktop/desktop-backend/src/backend.rs create mode 100644 desktop/desktop-backend/src/bin/standalone.rs create mode 100644 desktop/desktop-backend/src/lib.rs delete mode 100644 desktop/src-tauri/src/backend.rs diff --git a/.vscode/settings.json b/.vscode/settings.json index 5940f5fe..14f08fb4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,4 +11,8 @@ "nixEnvSelector.nixFile": "${workspaceFolder}/flake.nix", "nixEnvSelector.useFlakes": true, "nixEnvSelector.flakeShell": "default", + "rust-analyzer.linkedProjects": [ + "desktop/src-tauri/Cargo.toml", + "desktop/desktop-backend/Cargo.toml" + ] } diff --git a/desktop/desktop-backend/Cargo.lock b/desktop/desktop-backend/Cargo.lock new file mode 100644 index 00000000..1cc23bde --- /dev/null +++ b/desktop/desktop-backend/Cargo.lock @@ -0,0 +1,761 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "axum" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90" +dependencies = [ + "axum-core", + "bytes", + "form_urlencoded", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde_core", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-core" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "bumpalo" +version = "3.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "desktop-backend" +version = "0.1.0" +dependencies = [ + "axum", + "env_logger", + "log", + "serde", + "tokio", + "uuid", +] + +[[package]] +name = "env_filter" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef" +dependencies = [ + "log", + "regex", +] + +[[package]] +name = "env_logger" +version = "0.11.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a" +dependencies = [ + "anstream", + "anstyle", + "env_filter", + "jiff", + "log", +] + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-task", + "pin-project-lite", + "slab", +] + +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "bytes", + "http", + "http-body", + "hyper", + "pin-project-lite", + "tokio", + "tower-service", +] + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "jiff" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d" +dependencies = [ + "jiff-static", + "log", + "portable-atomic", + "portable-atomic-util", + "serde_core", +] + +[[package]] +name = "jiff-static" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "js-sys" +version = "0.3.98" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08" +dependencies = [ + "cfg-if", + "futures-util", + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "matchit" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mio" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" +dependencies = [ + "libc", + "wasi", + "windows-sys", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "portable-atomic" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" + +[[package]] +name = "portable-atomic-util" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618" +dependencies = [ + "portable-atomic", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_path_to_error" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" +dependencies = [ + "itoa", + "serde", + "serde_core", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +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" + +[[package]] +name = "tokio" +version = "1.52.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" +dependencies = [ + "libc", + "mio", + "pin-project-lite", + "socket2", + "tokio-macros", + "windows-sys", +] + +[[package]] +name = "tokio-macros" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[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", + "tracing", +] + +[[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 = [ + "log", + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "uuid" +version = "1.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76" +dependencies = [ + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.121" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/desktop/desktop-backend/Cargo.toml b/desktop/desktop-backend/Cargo.toml new file mode 100644 index 00000000..36399525 --- /dev/null +++ b/desktop/desktop-backend/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "desktop-backend" +version = "0.1.0" +edition = "2024" + +[dependencies] +axum = "0.8.9" +env_logger = { version = "0.11.10", optional = true } +log = "0.4.29" +serde = { version = "1.0.228", features = ["derive"] } +tokio = { version = "1.52.3", features = ["rt-multi-thread"] } +uuid = { version = "1.23.1", features = ["serde"] } + +[features] +standalone = ["dep:env_logger"] + +[[bin]] +name = "standalone" +required-features = ["standalone"] diff --git a/desktop/desktop-backend/src/backend.rs b/desktop/desktop-backend/src/backend.rs new file mode 100644 index 00000000..1f32b969 --- /dev/null +++ b/desktop/desktop-backend/src/backend.rs @@ -0,0 +1,77 @@ +use axum::Json; +use axum::extract::State; +use axum::response::IntoResponse; +use axum::{Router, routing::get}; +use serde::Serialize; +use std::collections::HashMap; +use std::net::SocketAddr; +use uuid::Uuid; + +#[derive(Clone, Debug, Serialize)] +struct Task { + // id: uuid.UUID + // state: TaskState + // dependencies: List[uuid.UUID] + // current_attempt: Optional[TaskAttemptResponse] +} + +#[derive(Clone, Debug, Serialize)] +struct ApiState { + token: String, + documents: HashMap>, + tasks: HashMap, +} + +pub struct Backend { + listener: Option, + token: Option, +} + +async fn list_tasks(State(state): State) -> impl IntoResponse { + Json(state.tasks) +} + +impl Backend { + pub fn new() -> Self { + return Backend { + listener: None, + token: None, + }; + } + pub fn bind(&mut self) -> std::io::Result { + let listener = std::net::TcpListener::bind("127.0.0.1:0")?; + listener.set_nonblocking(true)?; + let addr = listener.local_addr(); + self.listener = Some(listener); + addr + } + pub fn with_token(mut self, token: String) -> Self { + self.token = Some(token); + self + } + + pub async fn serve(self) -> std::io::Result<()> { + let service = self.get_router(); + let listener = tokio::net::TcpListener::from_std(self.listener.unwrap())?; + axum::serve(listener, service).await + } + + fn get_router(&self) -> Router { + let app = Router::new() + .route("/", get(async |State(state): State| Json(state))) + .route("/api/v1/tasks", get(list_tasks)) + .with_state(ApiState { + token: self.token.clone().unwrap(), + documents: HashMap::new(), + tasks: HashMap::new(), + }); + // tasks/claim_unassigned_task/ + // tasks/{task_id}/keepalive/ + // f"documents/{task.document.id}/add_media_file/", + // self.api_client.post(url=f"tasks/{task_id}/mark_completed/", json=body) + // self.api_client.post(url=f"tasks/{task_id}/mark_failed/", json=body) + // self.api_client.post(f"tasks/{task_id}/keepalive/", json=body) + + return app; + } +} diff --git a/desktop/desktop-backend/src/bin/standalone.rs b/desktop/desktop-backend/src/bin/standalone.rs new file mode 100644 index 00000000..d5f9911d --- /dev/null +++ b/desktop/desktop-backend/src/bin/standalone.rs @@ -0,0 +1,11 @@ +use desktop_backend::Backend; + +#[tokio::main] +async fn main() -> std::io::Result<()> { + env_logger::init(); + let token = "SECRET_TOKEN".to_string(); // TODO: generate random token + let mut backend = Backend::new().with_token(token.clone()); + let local_addr = backend.bind().unwrap(); + log::info!("starting backend on http://{:?}", local_addr); + backend.serve().await +} diff --git a/desktop/desktop-backend/src/lib.rs b/desktop/desktop-backend/src/lib.rs new file mode 100644 index 00000000..4b08e7b4 --- /dev/null +++ b/desktop/desktop-backend/src/lib.rs @@ -0,0 +1,2 @@ +pub mod backend; +pub use backend::Backend; diff --git a/desktop/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock index e2f3b79c..2c21e1f7 100644 --- a/desktop/src-tauri/Cargo.lock +++ b/desktop/src-tauri/Cargo.lock @@ -872,6 +872,17 @@ dependencies = [ "syn 2.0.117", ] +[[package]] +name = "desktop-backend" +version = "0.1.0" +dependencies = [ + "axum", + "log", + "serde", + "tokio", + "uuid", +] + [[package]] name = "digest" version = "0.10.7" @@ -4467,6 +4478,7 @@ version = "0.1.0" dependencies = [ "axum", "colored", + "desktop-backend", "log", "serde", "serde_json", diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml index c396202e..922f6666 100644 --- a/desktop/src-tauri/Cargo.toml +++ b/desktop/src-tauri/Cargo.toml @@ -18,14 +18,15 @@ crate-type = ["staticlib", "cdylib", "rlib"] tauri-build = { version = "2", features = [] } [dependencies] -tauri = { version = "2", features = [] } -tauri-plugin-opener = "2" +axum = { version = "0.8.9", features = ["http1", "ws", "tokio"] } +colored = "3.1.1" +desktop-backend = { path = "../desktop-backend/" } +log = "0.4.29" serde = { version = "1", features = ["derive"] } serde_json = "1" -tauri-plugin-shell = "2" -log = "0.4.29" +tauri = { version = "2", features = [] } tauri-plugin-log = "2" -colored = "3.1.1" -axum = { version = "0.8.9", features = ["http1", "ws", "tokio"] } -tokio-tungstenite = "0.29.0" +tauri-plugin-opener = "2" +tauri-plugin-shell = "2" tokio = "1.52.3" +tokio-tungstenite = "0.29.0" diff --git a/desktop/src-tauri/src/backend.rs b/desktop/src-tauri/src/backend.rs deleted file mode 100644 index ef050f84..00000000 --- a/desktop/src-tauri/src/backend.rs +++ /dev/null @@ -1,40 +0,0 @@ -use std::future::IntoFuture; -use std::net::SocketAddr; - -use axum::{routing::get, Router}; - -pub struct Backend { - listener: Option, - token: Option, -} - -impl Backend { - pub fn new() -> Self { - return Backend { - listener: None, - token: None, - }; - } - pub fn bind(&mut self) -> std::io::Result { - let listener = std::net::TcpListener::bind("127.0.0.1:0")?; - listener.set_nonblocking(true)?; - let addr = listener.local_addr(); - self.listener = Some(listener); - addr - } - pub fn with_token(mut self, token: String) -> Self { - self.token = Some(token); - self - } - - pub async fn serve(self) -> std::io::Result<()> { - let service = self.get_router(); - let listener = tokio::net::TcpListener::from_std(self.listener.unwrap())?; - axum::serve(listener, service).await - } - - fn get_router(&self) -> Router { - let app = Router::new().route("/", get(|| async { "Hello, World!" })); - return app; - } -} diff --git a/desktop/src-tauri/src/backend_plugin.rs b/desktop/src-tauri/src/backend_plugin.rs index 12b918c2..6b2bc133 100644 --- a/desktop/src-tauri/src/backend_plugin.rs +++ b/desktop/src-tauri/src/backend_plugin.rs @@ -1,4 +1,6 @@ -use crate::backend::Backend; +use std::net::SocketAddr; + +use desktop_backend::Backend; use tauri::Manager; use tauri::{ @@ -7,14 +9,19 @@ use tauri::{ }; use tauri_plugin_log::log; +struct BackendState { + local_addr: SocketAddr, + token: String, +} pub fn init() -> TauriPlugin { Builder::new("transcribee_backend") .setup(|app, _api| { - let mut backend = Backend::new(); + let token = "SECRET_TOKEN".to_string(); // TODO: generate random token + let mut backend = Backend::new().with_token(token.clone()); let local_addr = backend.bind().unwrap(); log::info!("starting backend on http://{:?}", local_addr); - app.manage(local_addr); + app.manage(BackendState { local_addr, token }); tauri::async_runtime::spawn(async move { backend.serve().await }); Ok(()) }) diff --git a/desktop/src-tauri/src/lib.rs b/desktop/src-tauri/src/lib.rs index c11a31a5..9c713230 100644 --- a/desktop/src-tauri/src/lib.rs +++ b/desktop/src-tauri/src/lib.rs @@ -3,7 +3,6 @@ use log::Level; use tauri_plugin_log::fern; use tauri_plugin_shell::ShellExt; -mod backend; mod backend_plugin; mod worker_plugin; From 0b29b0f8dcc661d5df36de511b3601e4744b28f4 Mon Sep 17 00:00:00 2001 From: pajowu Date: Sat, 16 May 2026 23:13:29 +0200 Subject: [PATCH 7/9] =?UTF-8?q?=E2=9C=A8=20Desktop=20backend:=20first=20ro?= =?UTF-8?q?utes,=20cli=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + desktop/desktop-backend/Cargo.lock | 330 ++++++++++++++++++ desktop/desktop-backend/Cargo.toml | 8 +- desktop/desktop-backend/src/backend.rs | 164 +++++++-- desktop/desktop-backend/src/bin/standalone.rs | 35 +- desktop/desktop-backend/src/lib.rs | 2 +- desktop/src-tauri/Cargo.lock | 39 +++ desktop/src-tauri/src/backend_plugin.rs | 4 +- 8 files changed, 542 insertions(+), 41 deletions(-) diff --git a/.gitignore b/.gitignore index 30c4e184..285fa1c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .direnv .DS_Store .ruff_cache +target diff --git a/desktop/desktop-backend/Cargo.lock b/desktop/desktop-backend/Cargo.lock index 1cc23bde..51ecdd68 100644 --- a/desktop/desktop-backend/Cargo.lock +++ b/desktop/desktop-backend/Cargo.lock @@ -61,6 +61,12 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + [[package]] name = "atomic-waker" version = "1.1.2" @@ -119,6 +125,37 @@ dependencies = [ "tracing", ] +[[package]] +name = "axum-extra" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be44683b41ccb9ab2d23a5230015c9c3c55be97a25e4428366de8873103f7970" +dependencies = [ + "axum", + "axum-core", + "bytes", + "form_urlencoded", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "serde_core", + "serde_html_form", + "serde_path_to_error", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "bitflags" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" + [[package]] name = "bumpalo" version = "3.20.2" @@ -137,6 +174,33 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" +[[package]] +name = "clap" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_lex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" + [[package]] name = "colorchoice" version = "1.0.5" @@ -148,6 +212,8 @@ name = "desktop-backend" version = "0.1.0" dependencies = [ "axum", + "axum-extra", + "clap", "env_logger", "log", "serde", @@ -178,6 +244,18 @@ dependencies = [ "log", ] +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + [[package]] name = "form_urlencoded" version = "1.2.2" @@ -220,6 +298,40 @@ dependencies = [ "slab", ] +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", + "wasip3", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + [[package]] name = "http" version = "1.4.0" @@ -300,6 +412,24 @@ dependencies = [ "tower-service", ] +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + +[[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 = "is_terminal_polyfill" version = "1.70.2" @@ -348,6 +478,12 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + [[package]] name = "libc" version = "0.2.186" @@ -428,6 +564,16 @@ dependencies = [ "portable-atomic", ] +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn", +] + [[package]] name = "proc-macro2" version = "1.0.106" @@ -446,6 +592,12 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + [[package]] name = "regex" version = "1.12.3" @@ -487,6 +639,12 @@ version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + [[package]] name = "serde" version = "1.0.228" @@ -517,6 +675,19 @@ dependencies = [ "syn", ] +[[package]] +name = "serde_html_form" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" +dependencies = [ + "form_urlencoded", + "indexmap", + "itoa", + "ryu", + "serde_core", +] + [[package]] name = "serde_json" version = "1.0.149" @@ -575,6 +746,12 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + [[package]] name = "syn" version = "2.0.117" @@ -671,6 +848,12 @@ version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + [[package]] name = "utf8parse" version = "0.2.2" @@ -683,6 +866,7 @@ version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76" dependencies = [ + "getrandom", "js-sys", "serde_core", "wasm-bindgen", @@ -694,6 +878,24 @@ 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.3+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6" +dependencies = [ + "wit-bindgen 0.57.1", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +dependencies = [ + "wit-bindgen 0.51.0", +] + [[package]] name = "wasm-bindgen" version = "0.2.121" @@ -739,6 +941,40 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags", + "hashbrown 0.15.5", + "indexmap", + "semver", +] + [[package]] name = "windows-link" version = "0.2.1" @@ -754,6 +990,100 @@ dependencies = [ "windows-link", ] +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck", + "indexmap", + "prettyplease", + "syn", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags", + "indexmap", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + [[package]] name = "zmij" version = "1.0.21" diff --git a/desktop/desktop-backend/Cargo.toml b/desktop/desktop-backend/Cargo.toml index 36399525..1758511c 100644 --- a/desktop/desktop-backend/Cargo.toml +++ b/desktop/desktop-backend/Cargo.toml @@ -5,14 +5,16 @@ edition = "2024" [dependencies] axum = "0.8.9" +axum-extra = { version = "0.12.6", features = ["query"] } +clap = { version = "4.6.1", optional = true, features = ["cargo"] } env_logger = { version = "0.11.10", optional = true } log = "0.4.29" -serde = { version = "1.0.228", features = ["derive"] } +serde = { version = "1.0.228", features = ["derive", "rc"] } tokio = { version = "1.52.3", features = ["rt-multi-thread"] } -uuid = { version = "1.23.1", features = ["serde"] } +uuid = { version = "1.23.1", features = ["serde", "v4"] } [features] -standalone = ["dep:env_logger"] +standalone = ["dep:env_logger", "dep:clap"] [[bin]] name = "standalone" diff --git a/desktop/desktop-backend/src/backend.rs b/desktop/desktop-backend/src/backend.rs index 1f32b969..45d225fe 100644 --- a/desktop/desktop-backend/src/backend.rs +++ b/desktop/desktop-backend/src/backend.rs @@ -1,54 +1,147 @@ use axum::Json; use axum::extract::State; -use axum::response::IntoResponse; +use axum::routing::post; use axum::{Router, routing::get}; -use serde::Serialize; +use axum_extra::extract::Query; +use serde::{Deserialize, Serialize}; use std::collections::HashMap; -use std::net::SocketAddr; +use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4}; +use std::sync::{Arc, Mutex}; use uuid::Uuid; -#[derive(Clone, Debug, Serialize)] +#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] +enum TaskState { + NEW, + ASSIGNED, + COMPLETED, + FAILED, +} + +#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] +#[serde(rename_all = "SCREAMING_SNAKE_CASE")] +enum TaskType { + IdentifySpeakers, + Transcribe, + Align, + Reencode, + Export, +} + +#[derive(Clone, Debug, Deserialize, Serialize)] +struct TaskAttempt { + progress: Option, +} + +#[derive(Clone, Debug, Deserialize, Serialize)] struct Task { - // id: uuid.UUID - // state: TaskState - // dependencies: List[uuid.UUID] - // current_attempt: Optional[TaskAttemptResponse] + id: Uuid, + task_type: TaskType, + state: TaskState, + dependencies: Vec, + current_attempt: Option, } #[derive(Clone, Debug, Serialize)] -struct ApiState { - token: String, +struct BackendState { documents: HashMap>, tasks: HashMap, } -pub struct Backend { - listener: Option, - token: Option, +#[derive(Clone, Debug, Serialize)] +struct ApiState { + token: String, + state: Arc>, +} + +impl BackendState { + fn add_task(&mut self, task: Task) { + self.tasks.insert(task.id, task); + } } -async fn list_tasks(State(state): State) -> impl IntoResponse { - Json(state.tasks) +#[derive(Deserialize)] +struct GetUnassingedTaskQuery { + task_types: Vec, } -impl Backend { +fn get_ready_task(tasks: &HashMap, task_types: &[TaskType]) -> Option { + 'task_loop: for task in tasks.values() { + if !task_types.contains(&task.task_type) { + continue; + } + for dependency in &task.dependencies { + if let Some(dep_task) = tasks.get(dependency) + && dep_task.state != TaskState::COMPLETED + { + continue 'task_loop; + } + } + if task.current_attempt.is_some() || task.state != TaskState::NEW { + continue; + } + return Some(task.id); + } + None +} + +async fn claim_unassigned_task( + State(state): State, + Query(query): Query, +) -> Json> { + let mut state = state.state.lock().unwrap(); + if let Some(task_id) = get_ready_task(&state.tasks, &query.task_types) { + let task = state.tasks.get_mut(&task_id).unwrap(); + (*task).current_attempt = Some(TaskAttempt { progress: None }); + (*task).state = TaskState::ASSIGNED; + return Json(Some(task.clone())); + } + return Json(None); +} + +async fn noop() -> Json<()> { + Json(()) +} +async fn dump_state(State(state): State) -> Json { + return Json(state.state.lock().unwrap().clone()); +} + +pub struct BackendBuilder { + port: Option, + listener: Option, + token: Option, + state: Arc>, +} + +impl BackendBuilder { pub fn new() -> Self { - return Backend { + return BackendBuilder { + port: None, listener: None, token: None, + state: Arc::new(Mutex::new(BackendState { + documents: HashMap::new(), + tasks: HashMap::new(), + })), }; } + pub fn with_token(mut self, token: String) -> Self { + self.token = Some(token.clone()); + self + } + pub fn with_port(mut self, port: u16) -> Self { + self.port = Some(port); + self + } pub fn bind(&mut self) -> std::io::Result { - let listener = std::net::TcpListener::bind("127.0.0.1:0")?; + let listener = std::net::TcpListener::bind(SocketAddrV4::new( + Ipv4Addr::new(127, 0, 0, 1), + self.port.unwrap_or(0), + ))?; listener.set_nonblocking(true)?; let addr = listener.local_addr(); self.listener = Some(listener); addr } - pub fn with_token(mut self, token: String) -> Self { - self.token = Some(token); - self - } pub async fn serve(self) -> std::io::Result<()> { let service = self.get_router(); @@ -57,16 +150,25 @@ impl Backend { } fn get_router(&self) -> Router { + self.state.lock().unwrap().add_task(Task { + id: Uuid::new_v4(), + task_type: TaskType::Reencode, + state: TaskState::NEW, + dependencies: Vec::new(), + current_attempt: None, + }); + let state = ApiState { + token: self.token.clone().unwrap(), + state: self.state.clone(), + }; let app = Router::new() - .route("/", get(async |State(state): State| Json(state))) - .route("/api/v1/tasks", get(list_tasks)) - .with_state(ApiState { - token: self.token.clone().unwrap(), - documents: HashMap::new(), - tasks: HashMap::new(), - }); - // tasks/claim_unassigned_task/ - // tasks/{task_id}/keepalive/ + .route("/", get(dump_state)) + .route( + "/api/v1/tasks/claim_unassigned_task/", + post(claim_unassigned_task), + ) + .route("/api/v1/tasks/{task_id}/keepalive/", post(noop)) + .with_state(state); // f"documents/{task.document.id}/add_media_file/", // self.api_client.post(url=f"tasks/{task_id}/mark_completed/", json=body) // self.api_client.post(url=f"tasks/{task_id}/mark_failed/", json=body) diff --git a/desktop/desktop-backend/src/bin/standalone.rs b/desktop/desktop-backend/src/bin/standalone.rs index d5f9911d..ed20c6c1 100644 --- a/desktop/desktop-backend/src/bin/standalone.rs +++ b/desktop/desktop-backend/src/bin/standalone.rs @@ -1,10 +1,37 @@ -use desktop_backend::Backend; - +use clap::arg; +use clap::command; +use clap::value_parser; +use desktop_backend::BackendBuilder; #[tokio::main] async fn main() -> std::io::Result<()> { env_logger::init(); - let token = "SECRET_TOKEN".to_string(); // TODO: generate random token - let mut backend = Backend::new().with_token(token.clone()); + let matches = command!() + .arg( + arg!( + -p --port "Backend port" + ) + .value_parser(value_parser!(u16)) + .required(false), + ) + .arg( + arg!( + -t --token "Worker token" + ) + .required(false), + ) + .get_matches(); + + let token = if let Some(token) = matches.get_one::("token") { + token.clone() + } else { + "SECRET_TOKEN".to_string() // TODO: generate random + }; + + let mut backend = BackendBuilder::new().with_token(token.clone()); + if let Some(port) = matches.get_one::("port") { + backend = backend.with_port(*port); + } + let local_addr = backend.bind().unwrap(); log::info!("starting backend on http://{:?}", local_addr); backend.serve().await diff --git a/desktop/desktop-backend/src/lib.rs b/desktop/desktop-backend/src/lib.rs index 4b08e7b4..af218c03 100644 --- a/desktop/desktop-backend/src/lib.rs +++ b/desktop/desktop-backend/src/lib.rs @@ -1,2 +1,2 @@ pub mod backend; -pub use backend::Backend; +pub use backend::BackendBuilder; diff --git a/desktop/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock index 2c21e1f7..e011cf6d 100644 --- a/desktop/src-tauri/Cargo.lock +++ b/desktop/src-tauri/Cargo.lock @@ -302,6 +302,31 @@ dependencies = [ "tracing", ] +[[package]] +name = "axum-extra" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be44683b41ccb9ab2d23a5230015c9c3c55be97a25e4428366de8873103f7970" +dependencies = [ + "axum", + "axum-core", + "bytes", + "form_urlencoded", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "serde_core", + "serde_html_form", + "serde_path_to_error", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "base64" version = "0.21.7" @@ -877,6 +902,7 @@ name = "desktop-backend" version = "0.1.0" dependencies = [ "axum", + "axum-extra", "log", "serde", "tokio", @@ -3357,6 +3383,19 @@ dependencies = [ "syn 2.0.117", ] +[[package]] +name = "serde_html_form" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" +dependencies = [ + "form_urlencoded", + "indexmap 2.14.0", + "itoa", + "ryu", + "serde_core", +] + [[package]] name = "serde_json" version = "1.0.149" diff --git a/desktop/src-tauri/src/backend_plugin.rs b/desktop/src-tauri/src/backend_plugin.rs index 6b2bc133..b08686ab 100644 --- a/desktop/src-tauri/src/backend_plugin.rs +++ b/desktop/src-tauri/src/backend_plugin.rs @@ -1,6 +1,6 @@ use std::net::SocketAddr; -use desktop_backend::Backend; +use desktop_backend::BackendBuilder; use tauri::Manager; use tauri::{ @@ -17,7 +17,7 @@ pub fn init() -> TauriPlugin { Builder::new("transcribee_backend") .setup(|app, _api| { let token = "SECRET_TOKEN".to_string(); // TODO: generate random token - let mut backend = Backend::new().with_token(token.clone()); + let mut backend = BackendBuilder::new().with_token(token.clone()); let local_addr = backend.bind().unwrap(); log::info!("starting backend on http://{:?}", local_addr); From 47ed7b505cb62367d4121602a45d81222988aa35 Mon Sep 17 00:00:00 2001 From: pajowu Date: Sat, 16 May 2026 23:39:20 +0200 Subject: [PATCH 8/9] =?UTF-8?q?=E2=9C=A8=20Desktop:=20Integrate=20backend?= =?UTF-8?q?=20with=20worker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- desktop/desktop-backend/src/backend.rs | 1 + desktop/src-tauri/src/backend_plugin.rs | 6 +++--- desktop/src-tauri/src/lib.rs | 2 +- desktop/src-tauri/src/worker_plugin.rs | 10 ++++++---- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/desktop/desktop-backend/src/backend.rs b/desktop/desktop-backend/src/backend.rs index 45d225fe..a605c1b6 100644 --- a/desktop/desktop-backend/src/backend.rs +++ b/desktop/desktop-backend/src/backend.rs @@ -61,6 +61,7 @@ impl BackendState { #[derive(Deserialize)] struct GetUnassingedTaskQuery { + #[serde(rename = "task_type")] task_types: Vec, } diff --git a/desktop/src-tauri/src/backend_plugin.rs b/desktop/src-tauri/src/backend_plugin.rs index b08686ab..fff42edd 100644 --- a/desktop/src-tauri/src/backend_plugin.rs +++ b/desktop/src-tauri/src/backend_plugin.rs @@ -9,9 +9,9 @@ use tauri::{ }; use tauri_plugin_log::log; -struct BackendState { - local_addr: SocketAddr, - token: String, +pub struct BackendState { + pub local_addr: SocketAddr, + pub token: String, } pub fn init() -> TauriPlugin { Builder::new("transcribee_backend") diff --git a/desktop/src-tauri/src/lib.rs b/desktop/src-tauri/src/lib.rs index 9c713230..36bc1fa1 100644 --- a/desktop/src-tauri/src/lib.rs +++ b/desktop/src-tauri/src/lib.rs @@ -54,8 +54,8 @@ pub fn run() { ) .plugin(tauri_plugin_shell::init()) .plugin(tauri_plugin_opener::init()) - .plugin(worker_plugin::init()) .plugin(backend_plugin::init()) + .plugin(worker_plugin::init()) .invoke_handler(tauri::generate_handler![ffmpeg_help]) .run(tauri::generate_context!()) .expect("error while running tauri application"); diff --git a/desktop/src-tauri/src/worker_plugin.rs b/desktop/src-tauri/src/worker_plugin.rs index c4a5a300..fb3d87dc 100644 --- a/desktop/src-tauri/src/worker_plugin.rs +++ b/desktop/src-tauri/src/worker_plugin.rs @@ -7,10 +7,10 @@ use tauri::{ }; use tauri_plugin_shell::ShellExt; +use crate::backend_plugin::BackendState; + pub fn init() -> TauriPlugin { - // Make the plugin config optional - // by using `Builder::>` instead - Builder::::new("transcribee-worker") + Builder::new("transcribee-worker") .setup(|app, _| { let ext = if cfg!(target_family = "windows") { "bat" @@ -24,14 +24,16 @@ pub fn init() -> TauriPlugin { println!("{:?}", resource_path); let app = app.clone(); + tauri::async_runtime::spawn(async move { let shell = app.shell(); + let backend_state = app.state::(); loop { info!(target: "worker", "starting worker"); let (mut events, _) = shell .command(resource_path.clone()) - .args(["--help"]) + .args(["--coordinator", &format!("http://{}:{}/", backend_state.local_addr.ip(), backend_state.local_addr.port()), "--token", &backend_state.token]) .spawn() .unwrap(); From e0bd109702fef219b48006775e5c8b8d9f1e9b99 Mon Sep 17 00:00:00 2001 From: pajowu Date: Sun, 17 May 2026 20:26:27 +0200 Subject: [PATCH 9/9] =?UTF-8?q?=E2=9C=A8=20Desktop:=20More=20routes,=20loc?= =?UTF-8?q?al=20media=20support=20in=20worker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/openapi-schema.yml | 93 ++++++++--- .../transcribee_backend/models/document.py | 4 +- backend/transcribee_backend/models/task.py | 2 +- .../transcribee_backend/routers/document.py | 4 +- desktop/desktop-backend/Cargo.lock | 157 ++++++++++++++++++ desktop/desktop-backend/Cargo.toml | 5 +- desktop/desktop-backend/src/backend.rs | 147 ++++------------ .../src/bin/standalone-backend.rs | 65 ++++++++ desktop/desktop-backend/src/bin/standalone.rs | 38 ----- desktop/desktop-backend/src/handlers.rs | 25 +++ desktop/desktop-backend/src/lib.rs | 2 + desktop/desktop-backend/src/state.rs | 145 ++++++++++++++++ desktop/src-tauri/Cargo.lock | 3 + frontend/src/openapi-schema.ts | 51 ++++-- proto/transcribee_proto/api.py | 28 +++- worker/transcribee_worker/config.py | 4 +- worker/transcribee_worker/worker.py | 38 +++-- 17 files changed, 592 insertions(+), 219 deletions(-) create mode 100644 desktop/desktop-backend/src/bin/standalone-backend.rs delete mode 100644 desktop/desktop-backend/src/bin/standalone.rs create mode 100644 desktop/desktop-backend/src/handlers.rs create mode 100644 desktop/desktop-backend/src/state.rs diff --git a/backend/openapi-schema.yml b/backend/openapi-schema.yml index 7e43287b..4d5be4ed 100644 --- a/backend/openapi-schema.yml +++ b/backend/openapi-schema.yml @@ -33,7 +33,7 @@ components: type: string media_files: items: - $ref: '#/components/schemas/DocumentMedia' + $ref: '#/components/schemas/RemoteDocumentMedia' title: Media Files type: array name: @@ -66,7 +66,7 @@ components: title: Dependencies type: array document: - $ref: '#/components/schemas/Document' + $ref: '#/components/schemas/RemoteDocument' document_id: format: uuid title: Document Id @@ -229,7 +229,9 @@ components: type: string media_files: items: - $ref: '#/components/schemas/DocumentMedia' + anyOf: + - $ref: '#/components/schemas/LocalDocumentMedia' + - $ref: '#/components/schemas/RemoteDocumentMedia' title: Media Files type: array name: @@ -243,25 +245,6 @@ components: - media_files title: Document type: object - DocumentMedia: - properties: - content_type: - title: Content Type - type: string - tags: - items: - type: string - title: Tags - type: array - url: - title: Url - type: string - required: - - url - - content_type - - tags - title: DocumentMedia - type: object DocumentShareTokenBase: properties: can_write: @@ -325,7 +308,7 @@ components: type: string media_files: items: - $ref: '#/components/schemas/DocumentMedia' + $ref: '#/components/schemas/RemoteDocumentMedia' title: Media Files type: array name: @@ -422,6 +405,21 @@ components: title: Progress title: KeepaliveBody type: object + LocalDocumentMedia: + properties: + path: + title: Path + type: string + tags: + items: + type: string + title: Tags + type: array + required: + - tags + - path + title: LocalDocumentMedia + type: object LoginResponse: properties: token: @@ -458,6 +456,53 @@ components: title: Logged Out Redirect Url title: PublicConfig type: object + RemoteDocument: + properties: + changed_at: + title: Changed At + type: string + created_at: + title: Created At + type: string + id: + format: uuid + title: Id + type: string + media_files: + items: + $ref: '#/components/schemas/RemoteDocumentMedia' + title: Media Files + type: array + name: + title: Name + type: string + required: + - id + - name + - created_at + - changed_at + - media_files + title: RemoteDocument + type: object + RemoteDocumentMedia: + properties: + content_type: + title: Content Type + type: string + tags: + items: + type: string + title: Tags + type: array + url: + title: Url + type: string + required: + - tags + - url + - content_type + title: RemoteDocumentMedia + type: object SetDurationRequest: properties: duration: @@ -1166,7 +1211,7 @@ paths: application/json: schema: items: - $ref: '#/components/schemas/DocumentMedia' + $ref: '#/components/schemas/RemoteDocumentMedia' title: Response Get Document Media Api V1 Documents Document Id Media Files Get type: array diff --git a/backend/transcribee_backend/models/document.py b/backend/transcribee_backend/models/document.py index dde333ff..8a54f82b 100644 --- a/backend/transcribee_backend/models/document.py +++ b/backend/transcribee_backend/models/document.py @@ -3,8 +3,8 @@ from pydantic.types import AwareDatetime from sqlmodel import DateTime, Field, Relationship, SQLModel -from transcribee_proto.api import Document as ApiDocument -from transcribee_proto.api import DocumentMedia as ApiDocumentMedia +from transcribee_proto.api import RemoteDocument as ApiDocument +from transcribee_proto.api import RemoteDocumentMedia as ApiDocumentMedia from transcribee_backend import media_storage from transcribee_backend.util.base_url import BaseUrl diff --git a/backend/transcribee_backend/models/task.py b/backend/transcribee_backend/models/task.py index 88c33215..ffeb6d3e 100644 --- a/backend/transcribee_backend/models/task.py +++ b/backend/transcribee_backend/models/task.py @@ -5,8 +5,8 @@ from typing import Any, Dict, List, Literal, Optional from sqlmodel import JSON, Column, Field, ForeignKey, Relationship, SQLModel, Uuid -from transcribee_proto.api import Document as ApiDocument from transcribee_proto.api import ExportTaskParameters, TaskType +from transcribee_proto.api import RemoteDocument as ApiDocument from typing_extensions import Self from transcribee_backend.config import settings diff --git a/backend/transcribee_backend/routers/document.py b/backend/transcribee_backend/routers/document.py index 932fedda..4717c1b3 100644 --- a/backend/transcribee_backend/routers/document.py +++ b/backend/transcribee_backend/routers/document.py @@ -27,8 +27,8 @@ from sqlalchemy.sql.expression import desc from sqlmodel import Session, col, select from transcribee_proto.api import Document as ApiDocument -from transcribee_proto.api import DocumentMedia, ExportTaskParameters from transcribee_proto.api import DocumentWithAccessInfo as ApiDocumentWithAccessInfo +from transcribee_proto.api import ExportTaskParameters, RemoteDocumentMedia from transcribee_backend.auth import ( generate_share_token, @@ -442,7 +442,7 @@ def get_document( def get_document_media( auth: AuthInfo = Depends(get_doc_min_readonly_auth), baseUrl: BaseUrl = Depends(get_base_url), -) -> List[DocumentMedia]: +) -> List[RemoteDocumentMedia]: return auth.document.as_api_document(baseUrl=baseUrl).media_files diff --git a/desktop/desktop-backend/Cargo.lock b/desktop/desktop-backend/Cargo.lock index 51ecdd68..a111bdf4 100644 --- a/desktop/desktop-backend/Cargo.lock +++ b/desktop/desktop-backend/Cargo.lock @@ -11,6 +11,15 @@ dependencies = [ "memchr", ] +[[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 = "anstream" version = "1.0.0" @@ -73,6 +82,12 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + [[package]] name = "axum" version = "0.8.9" @@ -168,12 +183,36 @@ version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" +[[package]] +name = "cc" +version = "1.2.62" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98" +dependencies = [ + "find-msvc-tools", + "shlex", +] + [[package]] name = "cfg-if" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" +[[package]] +name = "chrono" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" +dependencies = [ + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link", +] + [[package]] name = "clap" version = "4.6.1" @@ -181,6 +220,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" dependencies = [ "clap_builder", + "clap_derive", ] [[package]] @@ -195,6 +235,18 @@ dependencies = [ "strsim", ] +[[package]] +name = "clap_derive" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "clap_lex" version = "1.1.0" @@ -207,12 +259,19 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + [[package]] name = "desktop-backend" version = "0.1.0" dependencies = [ "axum", "axum-extra", + "chrono", "clap", "env_logger", "log", @@ -250,6 +309,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + [[package]] name = "foldhash" version = "0.1.5" @@ -412,6 +477,30 @@ dependencies = [ "tower-service", ] +[[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", +] + +[[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 = "id-arena" version = "2.3.0" @@ -525,6 +614,15 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + [[package]] name = "once_cell" version = "1.21.4" @@ -724,6 +822,12 @@ dependencies = [ "serde", ] +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + [[package]] name = "slab" version = "0.4.12" @@ -975,12 +1079,65 @@ dependencies = [ "semver", ] +[[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", + "windows-result", + "windows-strings", +] + +[[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", +] + +[[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", +] + [[package]] name = "windows-link" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-sys" version = "0.61.2" diff --git a/desktop/desktop-backend/Cargo.toml b/desktop/desktop-backend/Cargo.toml index 1758511c..3f6443b3 100644 --- a/desktop/desktop-backend/Cargo.toml +++ b/desktop/desktop-backend/Cargo.toml @@ -6,7 +6,8 @@ edition = "2024" [dependencies] axum = "0.8.9" axum-extra = { version = "0.12.6", features = ["query"] } -clap = { version = "4.6.1", optional = true, features = ["cargo"] } +chrono = { version = "0.4.44", features = ["serde"] } +clap = { version = "4.6.1", optional = true, features = ["cargo", "derive"] } env_logger = { version = "0.11.10", optional = true } log = "0.4.29" serde = { version = "1.0.228", features = ["derive", "rc"] } @@ -17,5 +18,5 @@ uuid = { version = "1.23.1", features = ["serde", "v4"] } standalone = ["dep:env_logger", "dep:clap"] [[bin]] -name = "standalone" +name = "standalone-backend" required-features = ["standalone"] diff --git a/desktop/desktop-backend/src/backend.rs b/desktop/desktop-backend/src/backend.rs index a605c1b6..8946e8b6 100644 --- a/desktop/desktop-backend/src/backend.rs +++ b/desktop/desktop-backend/src/backend.rs @@ -1,116 +1,39 @@ -use axum::Json; -use axum::extract::State; +use axum::extract::{Request, State}; +use axum::http::{StatusCode, header}; +use axum::middleware; +use axum::middleware::Next; +use axum::response::Response; use axum::routing::post; use axum::{Router, routing::get}; -use axum_extra::extract::Query; -use serde::{Deserialize, Serialize}; -use std::collections::HashMap; use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4}; -use std::sync::{Arc, Mutex}; -use uuid::Uuid; -#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] -enum TaskState { - NEW, - ASSIGNED, - COMPLETED, - FAILED, -} - -#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] -#[serde(rename_all = "SCREAMING_SNAKE_CASE")] -enum TaskType { - IdentifySpeakers, - Transcribe, - Align, - Reencode, - Export, -} - -#[derive(Clone, Debug, Deserialize, Serialize)] -struct TaskAttempt { - progress: Option, -} - -#[derive(Clone, Debug, Deserialize, Serialize)] -struct Task { - id: Uuid, - task_type: TaskType, - state: TaskState, - dependencies: Vec, - current_attempt: Option, -} - -#[derive(Clone, Debug, Serialize)] -struct BackendState { - documents: HashMap>, - tasks: HashMap, -} - -#[derive(Clone, Debug, Serialize)] -struct ApiState { +use crate::handlers::{claim_unassigned_task, dump_state, noop}; +#[derive(Clone, Debug)] +struct ApiConfig { token: String, - state: Arc>, } -impl BackendState { - fn add_task(&mut self, task: Task) { - self.tasks.insert(task.id, task); +async fn worker_auth( + State(state): State, + req: Request, + next: Next, +) -> Result { + let auth_header = req + .headers() + .get(header::AUTHORIZATION) + .and_then(|header| header.to_str().ok()) + .ok_or(StatusCode::UNAUTHORIZED)?; + if auth_header == format!("Worker {}", state.token) { + Ok(next.run(req).await) + } else { + Err(StatusCode::UNAUTHORIZED) } } -#[derive(Deserialize)] -struct GetUnassingedTaskQuery { - #[serde(rename = "task_type")] - task_types: Vec, -} - -fn get_ready_task(tasks: &HashMap, task_types: &[TaskType]) -> Option { - 'task_loop: for task in tasks.values() { - if !task_types.contains(&task.task_type) { - continue; - } - for dependency in &task.dependencies { - if let Some(dep_task) = tasks.get(dependency) - && dep_task.state != TaskState::COMPLETED - { - continue 'task_loop; - } - } - if task.current_attempt.is_some() || task.state != TaskState::NEW { - continue; - } - return Some(task.id); - } - None -} - -async fn claim_unassigned_task( - State(state): State, - Query(query): Query, -) -> Json> { - let mut state = state.state.lock().unwrap(); - if let Some(task_id) = get_ready_task(&state.tasks, &query.task_types) { - let task = state.tasks.get_mut(&task_id).unwrap(); - (*task).current_attempt = Some(TaskAttempt { progress: None }); - (*task).state = TaskState::ASSIGNED; - return Json(Some(task.clone())); - } - return Json(None); -} - -async fn noop() -> Json<()> { - Json(()) -} -async fn dump_state(State(state): State) -> Json { - return Json(state.state.lock().unwrap().clone()); -} - pub struct BackendBuilder { port: Option, listener: Option, token: Option, - state: Arc>, } impl BackendBuilder { @@ -119,10 +42,6 @@ impl BackendBuilder { port: None, listener: None, token: None, - state: Arc::new(Mutex::new(BackendState { - documents: HashMap::new(), - tasks: HashMap::new(), - })), }; } pub fn with_token(mut self, token: String) -> Self { @@ -151,16 +70,8 @@ impl BackendBuilder { } fn get_router(&self) -> Router { - self.state.lock().unwrap().add_task(Task { - id: Uuid::new_v4(), - task_type: TaskType::Reencode, - state: TaskState::NEW, - dependencies: Vec::new(), - current_attempt: None, - }); - let state = ApiState { + let state = ApiConfig { token: self.token.clone().unwrap(), - state: self.state.clone(), }; let app = Router::new() .route("/", get(dump_state)) @@ -169,11 +80,15 @@ impl BackendBuilder { post(claim_unassigned_task), ) .route("/api/v1/tasks/{task_id}/keepalive/", post(noop)) + .route("/api/v1/tasks/{task_id}/mark_completed/", post(noop)) + .route("/api/v1/tasks/{task_id}/mark_failed/", post(noop)) + .route("/api/v1/documents/{document_id}/set_duration/", post(noop)) + .route( + "/api/v1/documents/{document_id}/add_media_file/", + post(noop), + ) + .route_layer(middleware::from_fn_with_state(state.clone(), worker_auth)) .with_state(state); - // f"documents/{task.document.id}/add_media_file/", - // self.api_client.post(url=f"tasks/{task_id}/mark_completed/", json=body) - // self.api_client.post(url=f"tasks/{task_id}/mark_failed/", json=body) - // self.api_client.post(f"tasks/{task_id}/keepalive/", json=body) return app; } diff --git a/desktop/desktop-backend/src/bin/standalone-backend.rs b/desktop/desktop-backend/src/bin/standalone-backend.rs new file mode 100644 index 00000000..d4842bd0 --- /dev/null +++ b/desktop/desktop-backend/src/bin/standalone-backend.rs @@ -0,0 +1,65 @@ +use std::collections::HashMap; + +use clap::Parser; +use clap::arg; +use clap::command; +use clap::value_parser; +use desktop_backend::BackendBuilder; +use desktop_backend::state::BACKEND_STATE; +use desktop_backend::state::Document; +use desktop_backend::state::MediaFile; +use desktop_backend::state::Task; +use desktop_backend::state::TaskParameters; +use desktop_backend::state::TaskState; +use desktop_backend::state::TaskType; +use uuid::Uuid; + +#[derive(Parser, Debug)] +#[command(version, about, long_about = None)] +struct Args { + #[arg(short, long)] + port: Option, + + #[arg(short, long)] + token: Option, + + #[arg(short, long)] + media_file: Option, +} + +#[tokio::main] +async fn main() -> std::io::Result<()> { + env_logger::init(); + + let args = Args::parse(); + + let token = args.token.unwrap_or("SECRET_TOKEN".to_string()); // TODO: generate random + let media_files = if let Some(path) = args.media_file { + vec![MediaFile::new(path)] + } else { + Vec::new() + }; + + let document = Document::new("Test".to_string(), media_files); + + let id = document.id; + BACKEND_STATE.lock().unwrap().add_document(document); + BACKEND_STATE.lock().unwrap().add_task(Task { + id: Uuid::new_v4(), + task_type: TaskType::Reencode, + state: TaskState::New, + dependencies: Vec::new(), + current_attempt: None, + document: id, + task_parameters: TaskParameters::NoParameters(HashMap::new()), + }); + + let mut backend = BackendBuilder::new().with_token(token.clone()); + if let Some(port) = args.port { + backend = backend.with_port(port); + } + + let local_addr = backend.bind().unwrap(); + log::info!("starting backend on http://{:?}", local_addr); + backend.serve().await +} diff --git a/desktop/desktop-backend/src/bin/standalone.rs b/desktop/desktop-backend/src/bin/standalone.rs deleted file mode 100644 index ed20c6c1..00000000 --- a/desktop/desktop-backend/src/bin/standalone.rs +++ /dev/null @@ -1,38 +0,0 @@ -use clap::arg; -use clap::command; -use clap::value_parser; -use desktop_backend::BackendBuilder; -#[tokio::main] -async fn main() -> std::io::Result<()> { - env_logger::init(); - let matches = command!() - .arg( - arg!( - -p --port "Backend port" - ) - .value_parser(value_parser!(u16)) - .required(false), - ) - .arg( - arg!( - -t --token "Worker token" - ) - .required(false), - ) - .get_matches(); - - let token = if let Some(token) = matches.get_one::("token") { - token.clone() - } else { - "SECRET_TOKEN".to_string() // TODO: generate random - }; - - let mut backend = BackendBuilder::new().with_token(token.clone()); - if let Some(port) = matches.get_one::("port") { - backend = backend.with_port(*port); - } - - let local_addr = backend.bind().unwrap(); - log::info!("starting backend on http://{:?}", local_addr); - backend.serve().await -} diff --git a/desktop/desktop-backend/src/handlers.rs b/desktop/desktop-backend/src/handlers.rs new file mode 100644 index 00000000..cce33905 --- /dev/null +++ b/desktop/desktop-backend/src/handlers.rs @@ -0,0 +1,25 @@ +use crate::state::{BACKEND_STATE, BackendState, Task, TaskType}; +use axum::{Json, body::Bytes}; +use axum_extra::extract::Query; +use serde::Deserialize; + +#[derive(Deserialize)] +pub struct GetUnassingedTaskQuery { + #[serde(rename = "task_type")] + task_types: Vec, +} + +pub async fn claim_unassigned_task( + Query(query): Query, +) -> Json> { + let mut state = BACKEND_STATE.lock().unwrap(); + return Json(state.claim_unassigned_task(&query.task_types)); +} + +pub async fn noop(body: Bytes) -> Json<()> { + log::debug!("noop req: {:?}", body); + Json(()) +} +pub async fn dump_state() -> Json { + return Json(BACKEND_STATE.lock().unwrap().clone()); +} diff --git a/desktop/desktop-backend/src/lib.rs b/desktop/desktop-backend/src/lib.rs index af218c03..cf6281bd 100644 --- a/desktop/desktop-backend/src/lib.rs +++ b/desktop/desktop-backend/src/lib.rs @@ -1,2 +1,4 @@ pub mod backend; pub use backend::BackendBuilder; +mod handlers; +pub mod state; diff --git a/desktop/desktop-backend/src/state.rs b/desktop/desktop-backend/src/state.rs new file mode 100644 index 00000000..17b6d547 --- /dev/null +++ b/desktop/desktop-backend/src/state.rs @@ -0,0 +1,145 @@ +use serde::{Deserialize, Serialize, Serializer}; +use std::collections::HashMap; +use std::sync::{LazyLock, Mutex}; +use uuid::Uuid; + +pub static BACKEND_STATE: LazyLock> = LazyLock::new(|| { + Mutex::new(BackendState { + documents: HashMap::new(), + tasks: HashMap::new(), + }) +}); + +#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] +#[serde(rename_all = "SCREAMING_SNAKE_CASE")] +pub enum TaskState { + New, + Assigned, + Completed, + Failed, +} + +#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] +#[serde(rename_all = "SCREAMING_SNAKE_CASE")] +pub enum TaskType { + IdentifySpeakers, + Transcribe, + Align, + Reencode, + Export, +} + +#[derive(Clone, Debug, Deserialize, Serialize)] +pub struct TaskAttempt { + progress: Option, +} + +#[derive(Clone, Debug, Deserialize, Serialize)] +pub struct MediaFile { + tags: Vec, + path: String, +} + +impl MediaFile { + pub fn new(path: String) -> Self { + MediaFile { + tags: Vec::new(), + path, + } + } +} +#[derive(Clone, Debug, Deserialize, Serialize)] +pub struct Document { + pub id: uuid::Uuid, + pub name: String, + pub created_at: chrono::DateTime, + pub changed_at: chrono::DateTime, + pub media_files: Vec, +} + +impl Document { + pub fn new(name: String, media_files: Vec) -> Self { + Document { + id: Uuid::new_v4(), + name, + created_at: chrono::Local::now(), + changed_at: chrono::Local::now(), + media_files, + } + } +} + +fn get_document(doc_uuid: &Uuid, serializer: S) -> Result +where + S: Serializer, +{ + return BACKEND_STATE + .lock() + .unwrap() + .documents + .get(doc_uuid) + .serialize(serializer); +} +#[derive(Clone, Debug, Deserialize, Serialize)] +#[serde(untagged)] +pub enum TaskParameters { + NoParameters(HashMap<(), ()>), +} +#[derive(Clone, Debug, Deserialize, Serialize)] +pub struct Task { + pub id: Uuid, + pub task_type: TaskType, + pub state: TaskState, + pub dependencies: Vec, + pub current_attempt: Option, + #[serde(serialize_with = "get_document")] + pub document: Uuid, + pub task_parameters: TaskParameters, +} + +#[derive(Clone, Debug, Serialize)] +pub struct BackendState { + documents: HashMap, + tasks: HashMap, +} + +impl BackendState { + pub fn add_task(&mut self, task: Task) { + self.tasks.insert(task.id, task); + } + pub fn add_document(&mut self, document: Document) { + self.documents.insert(document.id, document); + } + + fn get_ready_task<'a>(&'a mut self, task_types: &[TaskType]) -> Option<&'a mut Task> { + let uncompleted_tasks: Vec = self + .tasks + .values() + .filter(|t| t.state != TaskState::Completed) + .map(|x| x.id) + .collect(); + 'task_loop: for task in self.tasks.values_mut() { + if !task_types.contains(&task.task_type) { + continue; + } + for dependency in &task.dependencies { + if uncompleted_tasks.contains(dependency) { + continue 'task_loop; + } + } + if task.current_attempt.is_some() || task.state != TaskState::New { + continue; + } + return Some(task); + } + None + } + pub fn claim_unassigned_task(&mut self, task_types: &[TaskType]) -> Option { + if let Some(task) = self.get_ready_task(task_types) { + (*task).current_attempt = Some(TaskAttempt { progress: None }); + (*task).state = TaskState::Assigned; + return Some(task.clone()); + } + return None; + } +} diff --git a/desktop/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock index e011cf6d..58902843 100644 --- a/desktop/src-tauri/Cargo.lock +++ b/desktop/src-tauri/Cargo.lock @@ -650,8 +650,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" dependencies = [ "iana-time-zone", + "js-sys", "num-traits", "serde", + "wasm-bindgen", "windows-link 0.2.1", ] @@ -903,6 +905,7 @@ version = "0.1.0" dependencies = [ "axum", "axum-extra", + "chrono", "log", "serde", "tokio", diff --git a/frontend/src/openapi-schema.ts b/frontend/src/openapi-schema.ts index 84852b56..8de6d664 100644 --- a/frontend/src/openapi-schema.ts +++ b/frontend/src/openapi-schema.ts @@ -172,7 +172,7 @@ export interface components { */ id: string; /** Media Files */ - media_files: components["schemas"]["DocumentMedia"][]; + media_files: components["schemas"]["RemoteDocumentMedia"][]; /** Name */ name: string; /** Tasks */ @@ -183,7 +183,7 @@ export interface components { current_attempt: components["schemas"]["TaskAttemptResponse"] | null; /** Dependencies */ dependencies: string[]; - document: components["schemas"]["Document"]; + document: components["schemas"]["RemoteDocument"]; /** * Document Id * Format: uuid @@ -282,19 +282,10 @@ export interface components { */ id: string; /** Media Files */ - media_files: components["schemas"]["DocumentMedia"][]; + media_files: (components["schemas"]["LocalDocumentMedia"] | components["schemas"]["RemoteDocumentMedia"])[]; /** Name */ name: string; }; - /** DocumentMedia */ - DocumentMedia: { - /** Content Type */ - content_type: string; - /** Tags */ - tags: string[]; - /** Url */ - url: string; - }; /** DocumentShareTokenBase */ DocumentShareTokenBase: { /** Can Write */ @@ -337,7 +328,7 @@ export interface components { */ id: string; /** Media Files */ - media_files: components["schemas"]["DocumentMedia"][]; + media_files: components["schemas"]["RemoteDocumentMedia"][]; /** Name */ name: string; }; @@ -391,6 +382,13 @@ export interface components { /** Progress */ progress?: number | null; }; + /** LocalDocumentMedia */ + LocalDocumentMedia: { + /** Path */ + path: string; + /** Tags */ + tags: string[]; + }; /** LoginResponse */ LoginResponse: { /** Token */ @@ -410,6 +408,31 @@ export interface components { /** Logged Out Redirect Url */ logged_out_redirect_url?: string | null; }; + /** RemoteDocument */ + RemoteDocument: { + /** Changed At */ + changed_at: string; + /** Created At */ + created_at: string; + /** + * Id + * Format: uuid + */ + id: string; + /** Media Files */ + media_files: components["schemas"]["RemoteDocumentMedia"][]; + /** Name */ + name: string; + }; + /** RemoteDocumentMedia */ + RemoteDocumentMedia: { + /** Content Type */ + content_type: string; + /** Tags */ + tags: string[]; + /** Url */ + url: string; + }; /** SetDurationRequest */ SetDurationRequest: { /** Duration */ @@ -868,7 +891,7 @@ export interface operations { /** @description Successful Response */ 200: { content: { - "application/json": components["schemas"]["DocumentMedia"][]; + "application/json": components["schemas"]["RemoteDocumentMedia"][]; }; }; /** @description Validation Error */ diff --git a/proto/transcribee_proto/api.py b/proto/transcribee_proto/api.py index 9e6bb691..fa648439 100644 --- a/proto/transcribee_proto/api.py +++ b/proto/transcribee_proto/api.py @@ -1,7 +1,7 @@ from __future__ import annotations import enum -from typing import Any, Dict, List, Literal, Optional +from typing import Any, Dict, Literal, Optional from uuid import UUID from pydantic import BaseModel @@ -15,10 +15,20 @@ class TaskType(str, enum.Enum): EXPORT = "EXPORT" -class DocumentMedia(BaseModel): +class BaseDocumentMedia(BaseModel): + tags: list[str] + + +class RemoteDocumentMedia(BaseDocumentMedia): url: str content_type: str - tags: List[str] + + +class LocalDocumentMedia(BaseDocumentMedia): + path: str + + +DocumentMedia = LocalDocumentMedia | RemoteDocumentMedia class Document(BaseModel): @@ -26,10 +36,18 @@ class Document(BaseModel): name: str created_at: str changed_at: str - media_files: List[DocumentMedia] + media_files: list[DocumentMedia] + + +class RemoteDocument(BaseModel): + id: UUID + name: str + created_at: str + changed_at: str + media_files: list[RemoteDocumentMedia] -class DocumentWithAccessInfo(Document): +class DocumentWithAccessInfo(RemoteDocument): can_write: bool has_full_access: bool diff --git a/worker/transcribee_worker/config.py b/worker/transcribee_worker/config.py index 01a549cb..f3002be1 100644 --- a/worker/transcribee_worker/config.py +++ b/worker/transcribee_worker/config.py @@ -1,7 +1,7 @@ import os from dataclasses import dataclass from pathlib import Path -from typing import Dict, Optional +from typing import Dict, Literal, Optional from pydantic_settings import BaseSettings, SettingsConfigDict @@ -61,6 +61,8 @@ class Settings(BaseSettings): COMPUTE_TYPE: str = "int8" + WORKER_TYPE: Literal["web", "desktop"] = "web" + model_config = SettingsConfigDict(env_file=".env") def setup_env_vars(self): diff --git a/worker/transcribee_worker/worker.py b/worker/transcribee_worker/worker.py index e2ca34d4..2069caa5 100644 --- a/worker/transcribee_worker/worker.py +++ b/worker/transcribee_worker/worker.py @@ -6,7 +6,7 @@ import traceback from contextlib import asynccontextmanager from pathlib import Path -from typing import Any, AsyncGenerator, Optional, Tuple +from typing import Any, AsyncGenerator, Optional from uuid import UUID import automerge @@ -15,9 +15,12 @@ from transcribee_proto.api import ( AlignTask, AssignedTask, + BaseDocumentMedia, ExportFormat, ExportTask, + LocalDocumentMedia, ReencodeTask, + RemoteDocumentMedia, SpeakerIdentificationTask, TaskType, TranscribeTask, @@ -124,29 +127,36 @@ def _get_tmpfile(self, filename: str) -> Path: raise ValueError("`tmpdir` must be set") return self.tmpdir / filename - def get_document_audio_bytes( + def download_media(self, media_file: RemoteDocumentMedia) -> Path: + logging.debug(f"loading audio. {media_file=}") + response = self.api_client.get(media_file.url) + extension = mimetypes.guess_extension(media_file.content_type) + path = self._get_tmpfile(f"doc_audio{extension}") + with open(path, "wb") as f: + f.write(response.content) + return path + + def find_document_audio_media_file( self, document: ApiDocument - ) -> Optional[Tuple[bytes, str]]: + ) -> BaseDocumentMedia | None: logging.debug(f"Getting audio. {document=}") if not document.media_files: return - media_file = document.media_files[0] + media_file: BaseDocumentMedia = document.media_files[0] for mf in document.media_files: if "profile:mp3" in mf.tags: media_file = mf break - response = self.api_client.get(media_file.url) - return response.content, media_file.content_type + return media_file def get_document_audio_path(self, document: ApiDocument) -> Optional[Path]: - b = self.get_document_audio_bytes(document=document) - if b is not None: - b, ct = b - extension = mimetypes.guess_extension(ct) - path = self._get_tmpfile(f"doc_audio{extension}") - with open(path, "wb") as f: - f.write(b) - return path + mf = self.find_document_audio_media_file(document) + if not mf: + return + if settings.WORKER_TYPE == "web" and isinstance(mf, RemoteDocumentMedia): + return self.download_media(mf) + elif settings.WORKER_TYPE == "desktop" and isinstance(mf, LocalDocumentMedia): + return Path(mf.path) if mf.path else None def load_document_audio(self, document: ApiDocument) -> npt.NDArray: document_audio = self.get_document_audio_path(document)