From 90f0dcf8c63b5fa3bd404b2bde274e5321553210 Mon Sep 17 00:00:00 2001 From: Suyog Tandel Date: Thu, 8 Jan 2026 18:47:52 +0530 Subject: [PATCH] first commit --- .gitignore | 13 + LICENSE | 235 + README.md | 229 + components.json | 16 + deno.lock | 1054 +++ package.json | 38 + src-tauri/.gitignore | 7 + src-tauri/Cargo.lock | 5655 +++++++++++++++++ src-tauri/Cargo.toml | 31 + src-tauri/build.rs | 3 + src-tauri/capabilities/default.json | 15 + src-tauri/icons/128x128.png | Bin 0 -> 1492 bytes src-tauri/icons/128x128@2x.png | Bin 0 -> 2823 bytes src-tauri/icons/32x32.png | Bin 0 -> 448 bytes src-tauri/icons/64x64.png | Bin 0 -> 801 bytes src-tauri/icons/Square107x107Logo.png | Bin 0 -> 1237 bytes src-tauri/icons/Square142x142Logo.png | Bin 0 -> 1643 bytes src-tauri/icons/Square150x150Logo.png | Bin 0 -> 1743 bytes src-tauri/icons/Square284x284Logo.png | Bin 0 -> 3161 bytes src-tauri/icons/Square30x30Logo.png | Bin 0 -> 439 bytes src-tauri/icons/Square310x310Logo.png | Bin 0 -> 3520 bytes src-tauri/icons/Square44x44Logo.png | Bin 0 -> 564 bytes src-tauri/icons/Square71x71Logo.png | Bin 0 -> 860 bytes src-tauri/icons/Square89x89Logo.png | Bin 0 -> 1075 bytes src-tauri/icons/StoreLogo.png | Bin 0 -> 656 bytes .../android/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../icons/android/mipmap-hdpi/ic_launcher.png | Bin 0 -> 1175 bytes .../mipmap-hdpi/ic_launcher_foreground.png | Bin 0 -> 1802 bytes .../android/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 1336 bytes .../icons/android/mipmap-mdpi/ic_launcher.png | Bin 0 -> 1151 bytes .../mipmap-mdpi/ic_launcher_foreground.png | Bin 0 -> 1228 bytes .../android/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 1326 bytes .../android/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 2430 bytes .../mipmap-xhdpi/ic_launcher_foreground.png | Bin 0 -> 2440 bytes .../mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 2780 bytes .../android/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 3584 bytes .../mipmap-xxhdpi/ic_launcher_foreground.png | Bin 0 -> 3673 bytes .../mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 4249 bytes .../android/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 4743 bytes .../mipmap-xxxhdpi/ic_launcher_foreground.png | Bin 0 -> 4967 bytes .../mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 5638 bytes .../android/values/ic_launcher_background.xml | 4 + src-tauri/icons/icon.icns | Bin 0 -> 36334 bytes src-tauri/icons/icon.ico | Bin 0 -> 7616 bytes src-tauri/icons/icon.png | Bin 0 -> 5982 bytes src-tauri/icons/ios/AppIcon-20x20@1x.png | Bin 0 -> 307 bytes src-tauri/icons/ios/AppIcon-20x20@2x-1.png | Bin 0 -> 540 bytes src-tauri/icons/ios/AppIcon-20x20@2x.png | Bin 0 -> 540 bytes src-tauri/icons/ios/AppIcon-20x20@3x.png | Bin 0 -> 741 bytes src-tauri/icons/ios/AppIcon-29x29@1x.png | Bin 0 -> 444 bytes src-tauri/icons/ios/AppIcon-29x29@2x-1.png | Bin 0 -> 717 bytes src-tauri/icons/ios/AppIcon-29x29@2x.png | Bin 0 -> 717 bytes src-tauri/icons/ios/AppIcon-29x29@3x.png | Bin 0 -> 1039 bytes src-tauri/icons/ios/AppIcon-40x40@1x.png | Bin 0 -> 540 bytes src-tauri/icons/ios/AppIcon-40x40@2x-1.png | Bin 0 -> 965 bytes src-tauri/icons/ios/AppIcon-40x40@2x.png | Bin 0 -> 965 bytes src-tauri/icons/ios/AppIcon-40x40@3x.png | Bin 0 -> 1390 bytes src-tauri/icons/ios/AppIcon-512@2x.png | Bin 0 -> 13729 bytes src-tauri/icons/ios/AppIcon-60x60@2x.png | Bin 0 -> 1390 bytes src-tauri/icons/ios/AppIcon-60x60@3x.png | Bin 0 -> 2024 bytes src-tauri/icons/ios/AppIcon-76x76@1x.png | Bin 0 -> 893 bytes src-tauri/icons/ios/AppIcon-76x76@2x.png | Bin 0 -> 1716 bytes src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png | Bin 0 -> 1866 bytes src-tauri/src/lib.rs | 411 ++ src-tauri/src/main.rs | 6 + src-tauri/tauri.conf.json | 37 + src/app.css | 121 + src/app.html | 13 + .../alert-dialog/alert-dialog-action.svelte | 18 + .../alert-dialog/alert-dialog-cancel.svelte | 18 + .../alert-dialog/alert-dialog-content.svelte | 29 + .../alert-dialog-description.svelte | 17 + .../alert-dialog/alert-dialog-footer.svelte | 20 + .../alert-dialog/alert-dialog-header.svelte | 20 + .../alert-dialog/alert-dialog-overlay.svelte | 20 + .../alert-dialog/alert-dialog-portal.svelte | 7 + .../ui/alert-dialog/alert-dialog-title.svelte | 17 + .../alert-dialog/alert-dialog-trigger.svelte | 7 + .../ui/alert-dialog/alert-dialog.svelte | 7 + src/lib/components/ui/alert-dialog/index.ts | 37 + .../ui/alert/alert-description.svelte | 23 + .../components/ui/alert/alert-title.svelte | 20 + src/lib/components/ui/alert/alert.svelte | 44 + src/lib/components/ui/alert/index.ts | 14 + src/lib/components/ui/badge/badge.svelte | 50 + src/lib/components/ui/badge/index.ts | 2 + src/lib/components/ui/button/button.svelte | 82 + src/lib/components/ui/button/index.ts | 17 + src/lib/components/ui/card/card-action.svelte | 20 + .../components/ui/card/card-content.svelte | 15 + .../ui/card/card-description.svelte | 20 + src/lib/components/ui/card/card-footer.svelte | 20 + src/lib/components/ui/card/card-header.svelte | 23 + src/lib/components/ui/card/card-title.svelte | 20 + src/lib/components/ui/card/card.svelte | 23 + src/lib/components/ui/card/index.ts | 25 + src/lib/components/ui/input/index.ts | 7 + src/lib/components/ui/input/input.svelte | 52 + src/lib/components/ui/label/index.ts | 7 + src/lib/components/ui/label/label.svelte | 20 + src/lib/components/ui/popover/index.ts | 19 + .../ui/popover/popover-close.svelte | 7 + .../ui/popover/popover-content.svelte | 31 + .../ui/popover/popover-portal.svelte | 7 + .../ui/popover/popover-trigger.svelte | 17 + src/lib/components/ui/popover/popover.svelte | 7 + src/lib/components/ui/scroll-area/index.ts | 10 + .../scroll-area/scroll-area-scrollbar.svelte | 31 + .../ui/scroll-area/scroll-area.svelte | 43 + src/lib/components/ui/select/index.ts | 37 + .../ui/select/select-content.svelte | 45 + .../ui/select/select-group-heading.svelte | 21 + .../components/ui/select/select-group.svelte | 7 + .../components/ui/select/select-item.svelte | 38 + .../components/ui/select/select-label.svelte | 20 + .../components/ui/select/select-portal.svelte | 7 + .../select/select-scroll-down-button.svelte | 20 + .../ui/select/select-scroll-up-button.svelte | 20 + .../ui/select/select-separator.svelte | 18 + .../ui/select/select-trigger.svelte | 29 + src/lib/components/ui/select/select.svelte | 11 + src/lib/components/ui/separator/index.ts | 7 + .../components/ui/separator/separator.svelte | 21 + src/lib/components/ui/sheet/index.ts | 34 + .../components/ui/sheet/sheet-close.svelte | 7 + .../components/ui/sheet/sheet-content.svelte | 60 + .../ui/sheet/sheet-description.svelte | 17 + .../components/ui/sheet/sheet-footer.svelte | 20 + .../components/ui/sheet/sheet-header.svelte | 20 + .../components/ui/sheet/sheet-overlay.svelte | 20 + .../components/ui/sheet/sheet-portal.svelte | 7 + .../components/ui/sheet/sheet-title.svelte | 17 + .../components/ui/sheet/sheet-trigger.svelte | 7 + src/lib/components/ui/sheet/sheet.svelte | 7 + src/lib/components/ui/sidebar/constants.ts | 6 + .../components/ui/sidebar/context.svelte.ts | 81 + src/lib/components/ui/sidebar/index.ts | 75 + .../ui/sidebar/sidebar-content.svelte | 24 + .../ui/sidebar/sidebar-footer.svelte | 21 + .../ui/sidebar/sidebar-group-action.svelte | 36 + .../ui/sidebar/sidebar-group-content.svelte | 21 + .../ui/sidebar/sidebar-group-label.svelte | 34 + .../ui/sidebar/sidebar-group.svelte | 21 + .../ui/sidebar/sidebar-header.svelte | 21 + .../ui/sidebar/sidebar-input.svelte | 21 + .../ui/sidebar/sidebar-inset.svelte | 24 + .../ui/sidebar/sidebar-menu-action.svelte | 43 + .../ui/sidebar/sidebar-menu-badge.svelte | 29 + .../ui/sidebar/sidebar-menu-button.svelte | 103 + .../ui/sidebar/sidebar-menu-item.svelte | 21 + .../ui/sidebar/sidebar-menu-skeleton.svelte | 36 + .../ui/sidebar/sidebar-menu-sub-button.svelte | 43 + .../ui/sidebar/sidebar-menu-sub-item.svelte | 21 + .../ui/sidebar/sidebar-menu-sub.svelte | 25 + .../components/ui/sidebar/sidebar-menu.svelte | 21 + .../ui/sidebar/sidebar-provider.svelte | 53 + .../components/ui/sidebar/sidebar-rail.svelte | 36 + .../ui/sidebar/sidebar-separator.svelte | 19 + .../ui/sidebar/sidebar-trigger.svelte | 35 + src/lib/components/ui/sidebar/sidebar.svelte | 104 + src/lib/components/ui/skeleton/index.ts | 7 + .../components/ui/skeleton/skeleton.svelte | 17 + src/lib/components/ui/spinner/index.ts | 1 + src/lib/components/ui/spinner/spinner.svelte | 14 + src/lib/components/ui/switch/index.ts | 7 + src/lib/components/ui/switch/switch.svelte | 29 + src/lib/components/ui/tooltip/index.ts | 19 + .../ui/tooltip/tooltip-content.svelte | 52 + .../ui/tooltip/tooltip-portal.svelte | 7 + .../ui/tooltip/tooltip-provider.svelte | 7 + .../ui/tooltip/tooltip-trigger.svelte | 7 + src/lib/components/ui/tooltip/tooltip.svelte | 7 + src/lib/hooks/is-mobile.svelte.ts | 9 + src/lib/utils.ts | 13 + src/routes/+layout.svelte | 6 + src/routes/+layout.ts | 5 + src/routes/+page.svelte | 819 +++ static/build-configure-symbolic.svg | 2 + static/favicon.png | Bin 0 -> 1571 bytes static/pico-forge.svg | 25 + static/svelte.svg | 1 + static/tauri.svg | 6 + static/vite.svg | 1 + svelte.config.js | 22 + tsconfig.json | 19 + vite.config.js | 36 + 186 files changed, 11415 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 components.json create mode 100644 deno.lock create mode 100644 package.json create mode 100644 src-tauri/.gitignore create mode 100644 src-tauri/Cargo.lock create mode 100644 src-tauri/Cargo.toml create mode 100644 src-tauri/build.rs create mode 100644 src-tauri/capabilities/default.json create mode 100644 src-tauri/icons/128x128.png create mode 100644 src-tauri/icons/128x128@2x.png create mode 100644 src-tauri/icons/32x32.png create mode 100644 src-tauri/icons/64x64.png create mode 100644 src-tauri/icons/Square107x107Logo.png create mode 100644 src-tauri/icons/Square142x142Logo.png create mode 100644 src-tauri/icons/Square150x150Logo.png create mode 100644 src-tauri/icons/Square284x284Logo.png create mode 100644 src-tauri/icons/Square30x30Logo.png create mode 100644 src-tauri/icons/Square310x310Logo.png create mode 100644 src-tauri/icons/Square44x44Logo.png create mode 100644 src-tauri/icons/Square71x71Logo.png create mode 100644 src-tauri/icons/Square89x89Logo.png create mode 100644 src-tauri/icons/StoreLogo.png create mode 100644 src-tauri/icons/android/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src-tauri/icons/android/mipmap-hdpi/ic_launcher.png create mode 100644 src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png create mode 100644 src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png create mode 100644 src-tauri/icons/android/mipmap-mdpi/ic_launcher.png create mode 100644 src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png create mode 100644 src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png create mode 100644 src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png create mode 100644 src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png create mode 100644 src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png create mode 100644 src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png create mode 100644 src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png create mode 100644 src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src-tauri/icons/android/values/ic_launcher_background.xml create mode 100644 src-tauri/icons/icon.icns create mode 100644 src-tauri/icons/icon.ico create mode 100644 src-tauri/icons/icon.png create mode 100644 src-tauri/icons/ios/AppIcon-20x20@1x.png create mode 100644 src-tauri/icons/ios/AppIcon-20x20@2x-1.png create mode 100644 src-tauri/icons/ios/AppIcon-20x20@2x.png create mode 100644 src-tauri/icons/ios/AppIcon-20x20@3x.png create mode 100644 src-tauri/icons/ios/AppIcon-29x29@1x.png create mode 100644 src-tauri/icons/ios/AppIcon-29x29@2x-1.png create mode 100644 src-tauri/icons/ios/AppIcon-29x29@2x.png create mode 100644 src-tauri/icons/ios/AppIcon-29x29@3x.png create mode 100644 src-tauri/icons/ios/AppIcon-40x40@1x.png create mode 100644 src-tauri/icons/ios/AppIcon-40x40@2x-1.png create mode 100644 src-tauri/icons/ios/AppIcon-40x40@2x.png create mode 100644 src-tauri/icons/ios/AppIcon-40x40@3x.png create mode 100644 src-tauri/icons/ios/AppIcon-512@2x.png create mode 100644 src-tauri/icons/ios/AppIcon-60x60@2x.png create mode 100644 src-tauri/icons/ios/AppIcon-60x60@3x.png create mode 100644 src-tauri/icons/ios/AppIcon-76x76@1x.png create mode 100644 src-tauri/icons/ios/AppIcon-76x76@2x.png create mode 100644 src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png create mode 100644 src-tauri/src/lib.rs create mode 100644 src-tauri/src/main.rs create mode 100644 src-tauri/tauri.conf.json create mode 100644 src/app.css create mode 100644 src/app.html create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-action.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-cancel.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-content.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-description.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-footer.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-header.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-overlay.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-portal.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-title.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog-trigger.svelte create mode 100644 src/lib/components/ui/alert-dialog/alert-dialog.svelte create mode 100644 src/lib/components/ui/alert-dialog/index.ts create mode 100644 src/lib/components/ui/alert/alert-description.svelte create mode 100644 src/lib/components/ui/alert/alert-title.svelte create mode 100644 src/lib/components/ui/alert/alert.svelte create mode 100644 src/lib/components/ui/alert/index.ts create mode 100644 src/lib/components/ui/badge/badge.svelte create mode 100644 src/lib/components/ui/badge/index.ts create mode 100644 src/lib/components/ui/button/button.svelte create mode 100644 src/lib/components/ui/button/index.ts create mode 100644 src/lib/components/ui/card/card-action.svelte create mode 100644 src/lib/components/ui/card/card-content.svelte create mode 100644 src/lib/components/ui/card/card-description.svelte create mode 100644 src/lib/components/ui/card/card-footer.svelte create mode 100644 src/lib/components/ui/card/card-header.svelte create mode 100644 src/lib/components/ui/card/card-title.svelte create mode 100644 src/lib/components/ui/card/card.svelte create mode 100644 src/lib/components/ui/card/index.ts create mode 100644 src/lib/components/ui/input/index.ts create mode 100644 src/lib/components/ui/input/input.svelte create mode 100644 src/lib/components/ui/label/index.ts create mode 100644 src/lib/components/ui/label/label.svelte create mode 100644 src/lib/components/ui/popover/index.ts create mode 100644 src/lib/components/ui/popover/popover-close.svelte create mode 100644 src/lib/components/ui/popover/popover-content.svelte create mode 100644 src/lib/components/ui/popover/popover-portal.svelte create mode 100644 src/lib/components/ui/popover/popover-trigger.svelte create mode 100644 src/lib/components/ui/popover/popover.svelte create mode 100644 src/lib/components/ui/scroll-area/index.ts create mode 100644 src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte create mode 100644 src/lib/components/ui/scroll-area/scroll-area.svelte create mode 100644 src/lib/components/ui/select/index.ts create mode 100644 src/lib/components/ui/select/select-content.svelte create mode 100644 src/lib/components/ui/select/select-group-heading.svelte create mode 100644 src/lib/components/ui/select/select-group.svelte create mode 100644 src/lib/components/ui/select/select-item.svelte create mode 100644 src/lib/components/ui/select/select-label.svelte create mode 100644 src/lib/components/ui/select/select-portal.svelte create mode 100644 src/lib/components/ui/select/select-scroll-down-button.svelte create mode 100644 src/lib/components/ui/select/select-scroll-up-button.svelte create mode 100644 src/lib/components/ui/select/select-separator.svelte create mode 100644 src/lib/components/ui/select/select-trigger.svelte create mode 100644 src/lib/components/ui/select/select.svelte create mode 100644 src/lib/components/ui/separator/index.ts create mode 100644 src/lib/components/ui/separator/separator.svelte create mode 100644 src/lib/components/ui/sheet/index.ts create mode 100644 src/lib/components/ui/sheet/sheet-close.svelte create mode 100644 src/lib/components/ui/sheet/sheet-content.svelte create mode 100644 src/lib/components/ui/sheet/sheet-description.svelte create mode 100644 src/lib/components/ui/sheet/sheet-footer.svelte create mode 100644 src/lib/components/ui/sheet/sheet-header.svelte create mode 100644 src/lib/components/ui/sheet/sheet-overlay.svelte create mode 100644 src/lib/components/ui/sheet/sheet-portal.svelte create mode 100644 src/lib/components/ui/sheet/sheet-title.svelte create mode 100644 src/lib/components/ui/sheet/sheet-trigger.svelte create mode 100644 src/lib/components/ui/sheet/sheet.svelte create mode 100644 src/lib/components/ui/sidebar/constants.ts create mode 100644 src/lib/components/ui/sidebar/context.svelte.ts create mode 100644 src/lib/components/ui/sidebar/index.ts create mode 100644 src/lib/components/ui/sidebar/sidebar-content.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-footer.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-group-action.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-group-content.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-group-label.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-group.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-header.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-input.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-inset.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-action.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-badge.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-button.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-item.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-skeleton.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-sub-button.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-sub-item.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu-sub.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-menu.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-provider.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-rail.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-separator.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar-trigger.svelte create mode 100644 src/lib/components/ui/sidebar/sidebar.svelte create mode 100644 src/lib/components/ui/skeleton/index.ts create mode 100644 src/lib/components/ui/skeleton/skeleton.svelte create mode 100644 src/lib/components/ui/spinner/index.ts create mode 100644 src/lib/components/ui/spinner/spinner.svelte create mode 100644 src/lib/components/ui/switch/index.ts create mode 100644 src/lib/components/ui/switch/switch.svelte create mode 100644 src/lib/components/ui/tooltip/index.ts create mode 100644 src/lib/components/ui/tooltip/tooltip-content.svelte create mode 100644 src/lib/components/ui/tooltip/tooltip-portal.svelte create mode 100644 src/lib/components/ui/tooltip/tooltip-provider.svelte create mode 100644 src/lib/components/ui/tooltip/tooltip-trigger.svelte create mode 100644 src/lib/components/ui/tooltip/tooltip.svelte create mode 100644 src/lib/hooks/is-mobile.svelte.ts create mode 100644 src/lib/utils.ts create mode 100644 src/routes/+layout.svelte create mode 100644 src/routes/+layout.ts create mode 100644 src/routes/+page.svelte create mode 100644 static/build-configure-symbolic.svg create mode 100644 static/favicon.png create mode 100644 static/pico-forge.svg create mode 100644 static/svelte.svg create mode 100644 static/tauri.svg create mode 100644 static/vite.svg create mode 100644 svelte.config.js create mode 100644 tsconfig.json create mode 100644 vite.config.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4a20a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example +vite.config.js.timestamp-* +vite.config.ts.timestamp-* + +# IDE: +.vscode diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0c97efd --- /dev/null +++ b/LICENSE @@ -0,0 +1,235 @@ +GNU AFFERO GENERAL PUBLIC LICENSE +Version 3, 19 November 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + + Preamble + +The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. + +A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. + +The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. + +An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. + +The precise terms and conditions for copying, distribution and modification follow. + + TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU Affero General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the Program. + +To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Remote Network Interaction; Use with the GNU General Public License. + +Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. + +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . diff --git a/README.md b/README.md new file mode 100644 index 0000000..f78e122 --- /dev/null +++ b/README.md @@ -0,0 +1,229 @@ +# PicoForge + +
+ +![PicoForge Logo](static/pico-forge.svg) + +**An open source commissioning tool for Pico FIDO security keys** + +[![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL%203.0-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) +[![GitHub issues](https://img.shields.io/github/issues/librekeys/picoforge)](https://github.com/librekeys/picoforge/issues) +[![GitHub stars](https://img.shields.io/github/stars/librekeys/picoforge)](https://github.com/librekeys/picoforge/stargazers) + +
+ +## About + +PicoForge is a modern desktop application for configuring and managing Pico FIDO security keys. Built with Rust, Tauri, and Svelte, it provides an intuitive interface for: + +- Reading device information and firmware details +- Configuring USB VID/PID and product names +- Adjusting LED settings (GPIO, brightness, driver) +- Managing security features (secure boot, firmware locking) +- Real-time system logging and diagnostics +- Support for multiple hardware variants and vendors + +## Features + +- **Device Configuration** - Customize USB identifiers, LED behavior, and hardware settings +- **Security Management** - Enable secure boot and firmware verification (experimental) +- **Real-time Monitoring** - View flash usage, connection status, and system logs +- **Modern UI** - Clean, responsive interface built with Svelte and shadcn-svelte +- **Multi-Vendor Support** - Preset configurations for YubiKey, Nitrokey, SoloKeys, and more +- **Cross-Platform** - Works on Windows, macOS, and Linux + +## Requirements + +### Runtime Requirements + +- Smart Card Reader (PC/SC compatible) +- Pico FIDO device in Rescue mode + +### Development Requirements + +To contribute to PicoForge, you'll need: + +- **[Deno](https://deno.land/)** - JavaScript/TypeScript runtime +- **[Rust](https://www.rust-lang.org/)** - System programming language (1.70+) +- **PC/SC Middleware**: + - Linux: `pcscd` (usually pre-installed) + - macOS: Built-in + - Windows: Built-in + +## Building from Source + +### 1. Clone the Repository + +```bash +git clone https://github.com/librekeys/picoforge.git +cd picoforge +``` + +### 2. Install Dependencies + +```bash +deno install +``` + +### 3. Build the Application + +#### Development Build + +```bash +deno task tauri dev +``` + +#### Production Build + +```bash +deno task tauri build +``` + +The compiled binaries will be available in: +- **Linux**: `src-tauri/target/release/bundle/` +- **macOS**: `src-tauri/target/release/bundle/dmg/` +- **Windows**: `src-tauri/target/release/bundle/` + +### Platform-Specific Notes + +#### Linux + +Install PC/SC dependencies: + +```bash +sudo apt install libpcsclite-dev pcscd +``` + +Start the PC/SC daemon: + +```bash +sudo systemctl start pcscd +sudo systemctl enable pcscd +``` + +#### macOS + +No additional setup required. PC/SC framework is built-in. + +#### Windows + +Ensure Smart Card service is running: + +```powershell +Get-Service SCardSvr | Start-Service +``` + +## Usage + +1. Connect your smart card reader +2. Insert your Pico FIDO device (in Rescue mode) +3. Launch PicoForge +4. Click **Connect Device** to detect your key +5. Navigate through the sidebar to configure settings: + - **Home** - Device overview and quick actions + - **Configuration** - USB settings, LED options + - **Security** - Secure boot management (experimental) + - **Logs** - Real-time event monitoring + - **About** - Application information + +### Configuration Options + +#### USB Identity +- **VID/PID** - Vendor and Product IDs (hex format) +- **Product Name** - Device name shown to host system +- **Vendor Presets** - Quick selection for common manufacturers + +#### LED Settings +- **GPIO Pin** - Hardware pin for LED control +- **Brightness** - Intensity level (0-15) +- **Driver Type** - Hardware-specific LED drivers +- **Options** - Dimmable, steady mode, power cycle behavior + +#### Advanced +- **Touch Timeout** - User presence button timeout (seconds) +- **Secp256k1** - Enable secp256k1 curve support +- **Secure Boot** - Firmware signature verification (⚠️ experimental) + +## Project Structure + +``` +picoforge/ +├── src/ # Svelte frontend +│ ├── lib/ # Reusable components & utilities +│ ├── routes/ # SvelteKit pages +│ ├── app.css # Global styles +│ └── app.html # HTML template +├── src-tauri/ # Rust backend +│ ├── src/ # Rust source code +│ │ └── lib.rs # Tauri commands & PC/SC logic +│ ├── icons/ # Application icons +│ ├── capabilities/ # Tauri permissions +│ ├── Cargo.toml # Rust dependencies +│ ├── tauri.conf.json # Tauri configuration +│ └── build.rs # Build script +├── static/ # Static assets +│ ├── build-configure-symbolic.svg +│ └── favicon.png +├── node_modules/ # Deno node compatibility modules +├── components.json # shadcn-svelte config +├── package.json # Node package manifest +├── deno.lock # Deno lock file +├── svelte.config.js # SvelteKit configuration +├── vite.config.js # Vite bundler config +├── tsconfig.json # TypeScript configuration +└── LICENSE # AGPL-3.0 license +``` + +## Contributing + +Contributions are welcome! Please follow these steps: + +1. Fork the repository +2. Create a feature branch (`git checkout -b feature/amazing-feature`) +3. Commit your changes (`git commit -m 'Add amazing feature'`) +4. Push to the branch (`git push origin feature/amazing-feature`) +5. Open a Pull Request + +### Development Guidelines + +- Follow Rust and TypeScript best practices +- Write clear commit messages +- Update documentation for new features +- Test on multiple platforms when possible + +## License + +This project is licensed under the **GNU Affero General Public License v3.0 (AGPL-3.0-only)**. + +See [LICENSE](LICENSE) for full details. + +## Maintainers + +- **Suyog Tandel** ([@lockedmutex](https://github.com/lockedmutex)) + +## Acknowledgments + +- [Pico FIDO](https://github.com/polhenarejos/pico-fido) - The firmware this tool configures +- [Tauri](https://tauri.app/) - Desktop application framework +- [Svelte](https://svelte.dev/) - Reactive UI framework +- [shadcn-svelte](https://www.shadcn-svelte.com/) - UI component library +- [pcsc-rust](https://github.com/bluetech/pcsc-rust) - Smart card interface + +## Support + +- **Issues**: [GitHub Issues](https://github.com/librekeys/picoforge/issues) +- **Discussions**: [GitHub Discussions](https://github.com/librekeys/picoforge/discussions) + +## Disclaimer + +PicoForge is experimental software. The secure boot feature can permanently lock devices if misconfigured. Always understand the implications before enabling security features. + +--- + +
+ +**Made by the LibreKeys community** + +Copyright © 2026 Suyog Tandel + +
\ No newline at end of file diff --git a/components.json b/components.json new file mode 100644 index 0000000..f258682 --- /dev/null +++ b/components.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://shadcn-svelte.com/schema.json", + "tailwind": { + "css": "src/app.css", + "baseColor": "zinc" + }, + "aliases": { + "components": "$lib/components", + "utils": "$lib/utils", + "ui": "$lib/components/ui", + "hooks": "$lib/hooks", + "lib": "$lib" + }, + "typescript": true, + "registry": "https://shadcn-svelte.com/registry" +} diff --git a/deno.lock b/deno.lock new file mode 100644 index 0000000..542cb67 --- /dev/null +++ b/deno.lock @@ -0,0 +1,1054 @@ +{ + "version": "5", + "specifiers": { + "npm:@internationalized/date@^3.10.1": "3.10.1", + "npm:@lucide/svelte@0.562": "0.562.0_svelte@5.46.1__acorn@8.15.0", + "npm:@sveltejs/adapter-static@^3.0.6": "3.0.10_@sveltejs+kit@2.49.3__@sveltejs+vite-plugin-svelte@5.1.1___svelte@5.46.1____acorn@8.15.0___vite@6.4.1____picomatch@4.0.3__svelte@5.46.1___acorn@8.15.0__typescript@5.6.3__vite@6.4.1___picomatch@4.0.3__acorn@8.15.0_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_svelte@5.46.1__acorn@8.15.0_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3", + "npm:@sveltejs/kit@^2.9.0": "2.49.3_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_svelte@5.46.1__acorn@8.15.0_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3_acorn@8.15.0", + "npm:@sveltejs/vite-plugin-svelte@5": "5.1.1_svelte@5.46.1__acorn@8.15.0_vite@6.4.1__picomatch@4.0.3", + "npm:@tailwindcss/vite@^4.1.18": "4.1.18_vite@6.4.1__picomatch@4.0.3", + "npm:@tauri-apps/api@2": "2.9.1", + "npm:@tauri-apps/cli@2": "2.9.6", + "npm:@tauri-apps/plugin-opener@2": "2.5.2", + "npm:bits-ui@^2.15.4": "2.15.4_@internationalized+date@3.10.1_svelte@5.46.1__acorn@8.15.0_@sveltejs+kit@2.49.3__@sveltejs+vite-plugin-svelte@5.1.1___svelte@5.46.1____acorn@8.15.0___vite@6.4.1____picomatch@4.0.3__svelte@5.46.1___acorn@8.15.0__typescript@5.6.3__vite@6.4.1___picomatch@4.0.3__acorn@8.15.0_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3", + "npm:clsx@^2.1.1": "2.1.1", + "npm:svelte-check@4": "4.3.5_svelte@5.46.1__acorn@8.15.0_typescript@5.6.3", + "npm:svelte@5": "5.46.1_acorn@8.15.0", + "npm:tailwind-merge@^3.4.0": "3.4.0", + "npm:tailwind-variants@^3.2.2": "3.2.2_tailwind-merge@3.4.0_tailwindcss@4.1.18", + "npm:tailwindcss@^4.1.18": "4.1.18", + "npm:tw-animate-css@^1.4.0": "1.4.0", + "npm:typescript@~5.6.2": "5.6.3", + "npm:vite@^6.0.3": "6.4.1_picomatch@4.0.3" + }, + "npm": { + "@esbuild/aix-ppc64@0.25.12": { + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "os": ["aix"], + "cpu": ["ppc64"] + }, + "@esbuild/android-arm64@0.25.12": { + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "os": ["android"], + "cpu": ["arm64"] + }, + "@esbuild/android-arm@0.25.12": { + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "os": ["android"], + "cpu": ["arm"] + }, + "@esbuild/android-x64@0.25.12": { + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "os": ["android"], + "cpu": ["x64"] + }, + "@esbuild/darwin-arm64@0.25.12": { + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "os": ["darwin"], + "cpu": ["arm64"] + }, + "@esbuild/darwin-x64@0.25.12": { + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "os": ["darwin"], + "cpu": ["x64"] + }, + "@esbuild/freebsd-arm64@0.25.12": { + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "os": ["freebsd"], + "cpu": ["arm64"] + }, + "@esbuild/freebsd-x64@0.25.12": { + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "os": ["freebsd"], + "cpu": ["x64"] + }, + "@esbuild/linux-arm64@0.25.12": { + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "@esbuild/linux-arm@0.25.12": { + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "os": ["linux"], + "cpu": ["arm"] + }, + "@esbuild/linux-ia32@0.25.12": { + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "os": ["linux"], + "cpu": ["ia32"] + }, + "@esbuild/linux-loong64@0.25.12": { + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "os": ["linux"], + "cpu": ["loong64"] + }, + "@esbuild/linux-mips64el@0.25.12": { + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "os": ["linux"], + "cpu": ["mips64el"] + }, + "@esbuild/linux-ppc64@0.25.12": { + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "os": ["linux"], + "cpu": ["ppc64"] + }, + "@esbuild/linux-riscv64@0.25.12": { + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "os": ["linux"], + "cpu": ["riscv64"] + }, + "@esbuild/linux-s390x@0.25.12": { + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "os": ["linux"], + "cpu": ["s390x"] + }, + "@esbuild/linux-x64@0.25.12": { + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "os": ["linux"], + "cpu": ["x64"] + }, + "@esbuild/netbsd-arm64@0.25.12": { + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "os": ["netbsd"], + "cpu": ["arm64"] + }, + "@esbuild/netbsd-x64@0.25.12": { + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "os": ["netbsd"], + "cpu": ["x64"] + }, + "@esbuild/openbsd-arm64@0.25.12": { + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "os": ["openbsd"], + "cpu": ["arm64"] + }, + "@esbuild/openbsd-x64@0.25.12": { + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "os": ["openbsd"], + "cpu": ["x64"] + }, + "@esbuild/openharmony-arm64@0.25.12": { + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "os": ["openharmony"], + "cpu": ["arm64"] + }, + "@esbuild/sunos-x64@0.25.12": { + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "os": ["sunos"], + "cpu": ["x64"] + }, + "@esbuild/win32-arm64@0.25.12": { + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "os": ["win32"], + "cpu": ["arm64"] + }, + "@esbuild/win32-ia32@0.25.12": { + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "os": ["win32"], + "cpu": ["ia32"] + }, + "@esbuild/win32-x64@0.25.12": { + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "os": ["win32"], + "cpu": ["x64"] + }, + "@floating-ui/core@1.7.3": { + "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==", + "dependencies": [ + "@floating-ui/utils" + ] + }, + "@floating-ui/dom@1.7.4": { + "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==", + "dependencies": [ + "@floating-ui/core", + "@floating-ui/utils" + ] + }, + "@floating-ui/utils@0.2.10": { + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==" + }, + "@internationalized/date@3.10.1": { + "integrity": "sha512-oJrXtQiAXLvT9clCf1K4kxp3eKsQhIaZqxEyowkBcsvZDdZkbWrVmnGknxs5flTD0VGsxrxKgBCZty1EzoiMzA==", + "dependencies": [ + "@swc/helpers" + ] + }, + "@jridgewell/gen-mapping@0.3.13": { + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dependencies": [ + "@jridgewell/sourcemap-codec", + "@jridgewell/trace-mapping" + ] + }, + "@jridgewell/remapping@2.3.5": { + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dependencies": [ + "@jridgewell/gen-mapping", + "@jridgewell/trace-mapping" + ] + }, + "@jridgewell/resolve-uri@3.1.2": { + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" + }, + "@jridgewell/sourcemap-codec@1.5.5": { + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" + }, + "@jridgewell/trace-mapping@0.3.31": { + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dependencies": [ + "@jridgewell/resolve-uri", + "@jridgewell/sourcemap-codec" + ] + }, + "@lucide/svelte@0.562.0_svelte@5.46.1__acorn@8.15.0": { + "integrity": "sha512-wDMULwtTFN2Sc/TFBm6gfuVCNb4Y5P9LDrwxNnUbV52+IEU7NXZmvxwXoz+vrrpad6Xupq+Hw5eUlqIHEGhouw==", + "dependencies": [ + "svelte" + ] + }, + "@polka/url@1.0.0-next.29": { + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==" + }, + "@rollup/rollup-android-arm-eabi@4.55.1": { + "integrity": "sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==", + "os": ["android"], + "cpu": ["arm"] + }, + "@rollup/rollup-android-arm64@4.55.1": { + "integrity": "sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==", + "os": ["android"], + "cpu": ["arm64"] + }, + "@rollup/rollup-darwin-arm64@4.55.1": { + "integrity": "sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==", + "os": ["darwin"], + "cpu": ["arm64"] + }, + "@rollup/rollup-darwin-x64@4.55.1": { + "integrity": "sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==", + "os": ["darwin"], + "cpu": ["x64"] + }, + "@rollup/rollup-freebsd-arm64@4.55.1": { + "integrity": "sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==", + "os": ["freebsd"], + "cpu": ["arm64"] + }, + "@rollup/rollup-freebsd-x64@4.55.1": { + "integrity": "sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==", + "os": ["freebsd"], + "cpu": ["x64"] + }, + "@rollup/rollup-linux-arm-gnueabihf@4.55.1": { + "integrity": "sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==", + "os": ["linux"], + "cpu": ["arm"] + }, + "@rollup/rollup-linux-arm-musleabihf@4.55.1": { + "integrity": "sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==", + "os": ["linux"], + "cpu": ["arm"] + }, + "@rollup/rollup-linux-arm64-gnu@4.55.1": { + "integrity": "sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "@rollup/rollup-linux-arm64-musl@4.55.1": { + "integrity": "sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "@rollup/rollup-linux-loong64-gnu@4.55.1": { + "integrity": "sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==", + "os": ["linux"], + "cpu": ["loong64"] + }, + "@rollup/rollup-linux-loong64-musl@4.55.1": { + "integrity": "sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==", + "os": ["linux"], + "cpu": ["loong64"] + }, + "@rollup/rollup-linux-ppc64-gnu@4.55.1": { + "integrity": "sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==", + "os": ["linux"], + "cpu": ["ppc64"] + }, + "@rollup/rollup-linux-ppc64-musl@4.55.1": { + "integrity": "sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==", + "os": ["linux"], + "cpu": ["ppc64"] + }, + "@rollup/rollup-linux-riscv64-gnu@4.55.1": { + "integrity": "sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==", + "os": ["linux"], + "cpu": ["riscv64"] + }, + "@rollup/rollup-linux-riscv64-musl@4.55.1": { + "integrity": "sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==", + "os": ["linux"], + "cpu": ["riscv64"] + }, + "@rollup/rollup-linux-s390x-gnu@4.55.1": { + "integrity": "sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==", + "os": ["linux"], + "cpu": ["s390x"] + }, + "@rollup/rollup-linux-x64-gnu@4.55.1": { + "integrity": "sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==", + "os": ["linux"], + "cpu": ["x64"] + }, + "@rollup/rollup-linux-x64-musl@4.55.1": { + "integrity": "sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==", + "os": ["linux"], + "cpu": ["x64"] + }, + "@rollup/rollup-openbsd-x64@4.55.1": { + "integrity": "sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==", + "os": ["openbsd"], + "cpu": ["x64"] + }, + "@rollup/rollup-openharmony-arm64@4.55.1": { + "integrity": "sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==", + "os": ["openharmony"], + "cpu": ["arm64"] + }, + "@rollup/rollup-win32-arm64-msvc@4.55.1": { + "integrity": "sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==", + "os": ["win32"], + "cpu": ["arm64"] + }, + "@rollup/rollup-win32-ia32-msvc@4.55.1": { + "integrity": "sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==", + "os": ["win32"], + "cpu": ["ia32"] + }, + "@rollup/rollup-win32-x64-gnu@4.55.1": { + "integrity": "sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==", + "os": ["win32"], + "cpu": ["x64"] + }, + "@rollup/rollup-win32-x64-msvc@4.55.1": { + "integrity": "sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==", + "os": ["win32"], + "cpu": ["x64"] + }, + "@standard-schema/spec@1.1.0": { + "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==" + }, + "@sveltejs/acorn-typescript@1.0.8_acorn@8.15.0": { + "integrity": "sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==", + "dependencies": [ + "acorn" + ] + }, + "@sveltejs/adapter-static@3.0.10_@sveltejs+kit@2.49.3__@sveltejs+vite-plugin-svelte@5.1.1___svelte@5.46.1____acorn@8.15.0___vite@6.4.1____picomatch@4.0.3__svelte@5.46.1___acorn@8.15.0__typescript@5.6.3__vite@6.4.1___picomatch@4.0.3__acorn@8.15.0_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_svelte@5.46.1__acorn@8.15.0_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-7D9lYFWJmB7zxZyTE/qxjksvMqzMuYrrsyh1f4AlZqeZeACPRySjbC3aFiY55wb1tWUaKOQG9PVbm74JcN2Iew==", + "dependencies": [ + "@sveltejs/kit" + ] + }, + "@sveltejs/kit@2.49.3_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_svelte@5.46.1__acorn@8.15.0_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3_acorn@8.15.0": { + "integrity": "sha512-luTmE2Isk9GRJnitqanLoByKBiyLdfLpV2qV9a25JMxjbQt919TVqG8pibJDkxTvX9+w2k/9IL7o+/RtG++3QA==", + "dependencies": [ + "@standard-schema/spec", + "@sveltejs/acorn-typescript", + "@sveltejs/vite-plugin-svelte", + "@types/cookie", + "acorn", + "cookie", + "devalue", + "esm-env", + "kleur", + "magic-string", + "mrmime", + "sade", + "set-cookie-parser", + "sirv", + "svelte", + "typescript", + "vite" + ], + "optionalPeers": [ + "typescript" + ], + "bin": true + }, + "@sveltejs/vite-plugin-svelte-inspector@4.0.1_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_svelte@5.46.1__acorn@8.15.0_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==", + "dependencies": [ + "@sveltejs/vite-plugin-svelte", + "debug", + "svelte", + "vite" + ] + }, + "@sveltejs/vite-plugin-svelte@5.1.1_svelte@5.46.1__acorn@8.15.0_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-Y1Cs7hhTc+a5E9Va/xwKlAJoariQyHY+5zBgCZg4PFWNYQ1nMN9sjK1zhw1gK69DuqVP++sht/1GZg1aRwmAXQ==", + "dependencies": [ + "@sveltejs/vite-plugin-svelte-inspector", + "debug", + "deepmerge", + "kleur", + "magic-string", + "svelte", + "vite", + "vitefu" + ] + }, + "@swc/helpers@0.5.18": { + "integrity": "sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==", + "dependencies": [ + "tslib" + ] + }, + "@tailwindcss/node@4.1.18": { + "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==", + "dependencies": [ + "@jridgewell/remapping", + "enhanced-resolve", + "jiti", + "lightningcss", + "magic-string", + "source-map-js", + "tailwindcss" + ] + }, + "@tailwindcss/oxide-android-arm64@4.1.18": { + "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==", + "os": ["android"], + "cpu": ["arm64"] + }, + "@tailwindcss/oxide-darwin-arm64@4.1.18": { + "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==", + "os": ["darwin"], + "cpu": ["arm64"] + }, + "@tailwindcss/oxide-darwin-x64@4.1.18": { + "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==", + "os": ["darwin"], + "cpu": ["x64"] + }, + "@tailwindcss/oxide-freebsd-x64@4.1.18": { + "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==", + "os": ["freebsd"], + "cpu": ["x64"] + }, + "@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18": { + "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==", + "os": ["linux"], + "cpu": ["arm"] + }, + "@tailwindcss/oxide-linux-arm64-gnu@4.1.18": { + "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "@tailwindcss/oxide-linux-arm64-musl@4.1.18": { + "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "@tailwindcss/oxide-linux-x64-gnu@4.1.18": { + "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==", + "os": ["linux"], + "cpu": ["x64"] + }, + "@tailwindcss/oxide-linux-x64-musl@4.1.18": { + "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==", + "os": ["linux"], + "cpu": ["x64"] + }, + "@tailwindcss/oxide-wasm32-wasi@4.1.18": { + "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==", + "cpu": ["wasm32"] + }, + "@tailwindcss/oxide-win32-arm64-msvc@4.1.18": { + "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==", + "os": ["win32"], + "cpu": ["arm64"] + }, + "@tailwindcss/oxide-win32-x64-msvc@4.1.18": { + "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==", + "os": ["win32"], + "cpu": ["x64"] + }, + "@tailwindcss/oxide@4.1.18": { + "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==", + "optionalDependencies": [ + "@tailwindcss/oxide-android-arm64", + "@tailwindcss/oxide-darwin-arm64", + "@tailwindcss/oxide-darwin-x64", + "@tailwindcss/oxide-freebsd-x64", + "@tailwindcss/oxide-linux-arm-gnueabihf", + "@tailwindcss/oxide-linux-arm64-gnu", + "@tailwindcss/oxide-linux-arm64-musl", + "@tailwindcss/oxide-linux-x64-gnu", + "@tailwindcss/oxide-linux-x64-musl", + "@tailwindcss/oxide-wasm32-wasi", + "@tailwindcss/oxide-win32-arm64-msvc", + "@tailwindcss/oxide-win32-x64-msvc" + ] + }, + "@tailwindcss/vite@4.1.18_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==", + "dependencies": [ + "@tailwindcss/node", + "@tailwindcss/oxide", + "tailwindcss", + "vite" + ] + }, + "@tauri-apps/api@2.9.1": { + "integrity": "sha512-IGlhP6EivjXHepbBic618GOmiWe4URJiIeZFlB7x3czM0yDHHYviH1Xvoiv4FefdkQtn6v7TuwWCRfOGdnVUGw==" + }, + "@tauri-apps/cli-darwin-arm64@2.9.6": { + "integrity": "sha512-gf5no6N9FCk1qMrti4lfwP77JHP5haASZgVbBgpZG7BUepB3fhiLCXGUK8LvuOjP36HivXewjg72LTnPDScnQQ==", + "os": ["darwin"], + "cpu": ["arm64"] + }, + "@tauri-apps/cli-darwin-x64@2.9.6": { + "integrity": "sha512-oWh74WmqbERwwrwcueJyY6HYhgCksUc6NT7WKeXyrlY/FPmNgdyQAgcLuTSkhRFuQ6zh4Np1HZpOqCTpeZBDcw==", + "os": ["darwin"], + "cpu": ["x64"] + }, + "@tauri-apps/cli-linux-arm-gnueabihf@2.9.6": { + "integrity": "sha512-/zde3bFroFsNXOHN204DC2qUxAcAanUjVXXSdEGmhwMUZeAQalNj5cz2Qli2elsRjKN/hVbZOJj0gQ5zaYUjSg==", + "os": ["linux"], + "cpu": ["arm"] + }, + "@tauri-apps/cli-linux-arm64-gnu@2.9.6": { + "integrity": "sha512-pvbljdhp9VOo4RnID5ywSxgBs7qiylTPlK56cTk7InR3kYSTJKYMqv/4Q/4rGo/mG8cVppesKIeBMH42fw6wjg==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "@tauri-apps/cli-linux-arm64-musl@2.9.6": { + "integrity": "sha512-02TKUndpodXBCR0oP//6dZWGYcc22Upf2eP27NvC6z0DIqvkBBFziQUcvi2n6SrwTRL0yGgQjkm9K5NIn8s6jw==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "@tauri-apps/cli-linux-riscv64-gnu@2.9.6": { + "integrity": "sha512-fmp1hnulbqzl1GkXl4aTX9fV+ubHw2LqlLH1PE3BxZ11EQk+l/TmiEongjnxF0ie4kV8DQfDNJ1KGiIdWe1GvQ==", + "os": ["linux"], + "cpu": ["riscv64"] + }, + "@tauri-apps/cli-linux-x64-gnu@2.9.6": { + "integrity": "sha512-vY0le8ad2KaV1PJr+jCd8fUF9VOjwwQP/uBuTJvhvKTloEwxYA/kAjKK9OpIslGA9m/zcnSo74czI6bBrm2sYA==", + "os": ["linux"], + "cpu": ["x64"] + }, + "@tauri-apps/cli-linux-x64-musl@2.9.6": { + "integrity": "sha512-TOEuB8YCFZTWVDzsO2yW0+zGcoMiPPwcUgdnW1ODnmgfwccpnihDRoks+ABT1e3fHb1ol8QQWsHSCovb3o2ENQ==", + "os": ["linux"], + "cpu": ["x64"] + }, + "@tauri-apps/cli-win32-arm64-msvc@2.9.6": { + "integrity": "sha512-ujmDGMRc4qRLAnj8nNG26Rlz9klJ0I0jmZs2BPpmNNf0gM/rcVHhqbEkAaHPTBVIrtUdf7bGvQAD2pyIiUrBHQ==", + "os": ["win32"], + "cpu": ["arm64"] + }, + "@tauri-apps/cli-win32-ia32-msvc@2.9.6": { + "integrity": "sha512-S4pT0yAJgFX8QRCyKA1iKjZ9Q/oPjCZf66A/VlG5Yw54Nnr88J1uBpmenINbXxzyhduWrIXBaUbEY1K80ZbpMg==", + "os": ["win32"], + "cpu": ["ia32"] + }, + "@tauri-apps/cli-win32-x64-msvc@2.9.6": { + "integrity": "sha512-ldWuWSSkWbKOPjQMJoYVj9wLHcOniv7diyI5UAJ4XsBdtaFB0pKHQsqw/ItUma0VXGC7vB4E9fZjivmxur60aw==", + "os": ["win32"], + "cpu": ["x64"] + }, + "@tauri-apps/cli@2.9.6": { + "integrity": "sha512-3xDdXL5omQ3sPfBfdC8fCtDKcnyV7OqyzQgfyT5P3+zY6lcPqIYKQBvUasNvppi21RSdfhy44ttvJmftb0PCDw==", + "optionalDependencies": [ + "@tauri-apps/cli-darwin-arm64", + "@tauri-apps/cli-darwin-x64", + "@tauri-apps/cli-linux-arm-gnueabihf", + "@tauri-apps/cli-linux-arm64-gnu", + "@tauri-apps/cli-linux-arm64-musl", + "@tauri-apps/cli-linux-riscv64-gnu", + "@tauri-apps/cli-linux-x64-gnu", + "@tauri-apps/cli-linux-x64-musl", + "@tauri-apps/cli-win32-arm64-msvc", + "@tauri-apps/cli-win32-ia32-msvc", + "@tauri-apps/cli-win32-x64-msvc" + ], + "bin": true + }, + "@tauri-apps/plugin-opener@2.5.2": { + "integrity": "sha512-ei/yRRoCklWHImwpCcDK3VhNXx+QXM9793aQ64YxpqVF0BDuuIlXhZgiAkc15wnPVav+IbkYhmDJIv5R326Mew==", + "dependencies": [ + "@tauri-apps/api" + ] + }, + "@types/cookie@0.6.0": { + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==" + }, + "@types/estree@1.0.8": { + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" + }, + "acorn@8.15.0": { + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "bin": true + }, + "aria-query@5.3.2": { + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==" + }, + "axobject-query@4.1.0": { + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==" + }, + "bits-ui@2.15.4_@internationalized+date@3.10.1_svelte@5.46.1__acorn@8.15.0_@sveltejs+kit@2.49.3__@sveltejs+vite-plugin-svelte@5.1.1___svelte@5.46.1____acorn@8.15.0___vite@6.4.1____picomatch@4.0.3__svelte@5.46.1___acorn@8.15.0__typescript@5.6.3__vite@6.4.1___picomatch@4.0.3__acorn@8.15.0_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-7H9YUfp03KOk1LVDh8wPYSRPxlZgG/GRWLNSA8QC73/8Z8ytun+DWJhIuibyFyz7A0cP/RANVcB4iDrbY8q+Og==", + "dependencies": [ + "@floating-ui/core", + "@floating-ui/dom", + "@internationalized/date", + "esm-env", + "runed", + "svelte", + "svelte-toolbelt", + "tabbable" + ] + }, + "chokidar@4.0.3": { + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dependencies": [ + "readdirp" + ] + }, + "clsx@2.1.1": { + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" + }, + "cookie@0.6.0": { + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" + }, + "debug@4.4.3": { + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dependencies": [ + "ms" + ] + }, + "deepmerge@4.3.1": { + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + }, + "dequal@2.0.3": { + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "detect-libc@2.1.2": { + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==" + }, + "devalue@5.6.1": { + "integrity": "sha512-jDwizj+IlEZBunHcOuuFVBnIMPAEHvTsJj0BcIp94xYguLRVBcXO853px/MyIJvbVzWdsGvrRweIUWJw8hBP7A==" + }, + "enhanced-resolve@5.18.4": { + "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==", + "dependencies": [ + "graceful-fs", + "tapable" + ] + }, + "esbuild@0.25.12": { + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "optionalDependencies": [ + "@esbuild/aix-ppc64", + "@esbuild/android-arm", + "@esbuild/android-arm64", + "@esbuild/android-x64", + "@esbuild/darwin-arm64", + "@esbuild/darwin-x64", + "@esbuild/freebsd-arm64", + "@esbuild/freebsd-x64", + "@esbuild/linux-arm", + "@esbuild/linux-arm64", + "@esbuild/linux-ia32", + "@esbuild/linux-loong64", + "@esbuild/linux-mips64el", + "@esbuild/linux-ppc64", + "@esbuild/linux-riscv64", + "@esbuild/linux-s390x", + "@esbuild/linux-x64", + "@esbuild/netbsd-arm64", + "@esbuild/netbsd-x64", + "@esbuild/openbsd-arm64", + "@esbuild/openbsd-x64", + "@esbuild/openharmony-arm64", + "@esbuild/sunos-x64", + "@esbuild/win32-arm64", + "@esbuild/win32-ia32", + "@esbuild/win32-x64" + ], + "scripts": true, + "bin": true + }, + "esm-env@1.2.2": { + "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==" + }, + "esrap@2.2.1": { + "integrity": "sha512-GiYWG34AN/4CUyaWAgunGt0Rxvr1PTMlGC0vvEov/uOQYWne2bpN03Um+k8jT+q3op33mKouP2zeJ6OlM+qeUg==", + "dependencies": [ + "@jridgewell/sourcemap-codec" + ] + }, + "fdir@6.5.0_picomatch@4.0.3": { + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dependencies": [ + "picomatch" + ], + "optionalPeers": [ + "picomatch" + ] + }, + "fsevents@2.3.3": { + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "os": ["darwin"], + "scripts": true + }, + "graceful-fs@4.2.11": { + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "inline-style-parser@0.2.7": { + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==" + }, + "is-reference@3.0.3": { + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", + "dependencies": [ + "@types/estree" + ] + }, + "jiti@2.6.1": { + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "bin": true + }, + "kleur@4.1.5": { + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + }, + "lightningcss-android-arm64@1.30.2": { + "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==", + "os": ["android"], + "cpu": ["arm64"] + }, + "lightningcss-darwin-arm64@1.30.2": { + "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==", + "os": ["darwin"], + "cpu": ["arm64"] + }, + "lightningcss-darwin-x64@1.30.2": { + "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==", + "os": ["darwin"], + "cpu": ["x64"] + }, + "lightningcss-freebsd-x64@1.30.2": { + "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==", + "os": ["freebsd"], + "cpu": ["x64"] + }, + "lightningcss-linux-arm-gnueabihf@1.30.2": { + "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==", + "os": ["linux"], + "cpu": ["arm"] + }, + "lightningcss-linux-arm64-gnu@1.30.2": { + "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "lightningcss-linux-arm64-musl@1.30.2": { + "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==", + "os": ["linux"], + "cpu": ["arm64"] + }, + "lightningcss-linux-x64-gnu@1.30.2": { + "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==", + "os": ["linux"], + "cpu": ["x64"] + }, + "lightningcss-linux-x64-musl@1.30.2": { + "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==", + "os": ["linux"], + "cpu": ["x64"] + }, + "lightningcss-win32-arm64-msvc@1.30.2": { + "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==", + "os": ["win32"], + "cpu": ["arm64"] + }, + "lightningcss-win32-x64-msvc@1.30.2": { + "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==", + "os": ["win32"], + "cpu": ["x64"] + }, + "lightningcss@1.30.2": { + "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==", + "dependencies": [ + "detect-libc" + ], + "optionalDependencies": [ + "lightningcss-android-arm64", + "lightningcss-darwin-arm64", + "lightningcss-darwin-x64", + "lightningcss-freebsd-x64", + "lightningcss-linux-arm-gnueabihf", + "lightningcss-linux-arm64-gnu", + "lightningcss-linux-arm64-musl", + "lightningcss-linux-x64-gnu", + "lightningcss-linux-x64-musl", + "lightningcss-win32-arm64-msvc", + "lightningcss-win32-x64-msvc" + ] + }, + "locate-character@3.0.0": { + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==" + }, + "lz-string@1.5.0": { + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "bin": true + }, + "magic-string@0.30.21": { + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dependencies": [ + "@jridgewell/sourcemap-codec" + ] + }, + "mri@1.2.0": { + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" + }, + "mrmime@2.0.1": { + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==" + }, + "ms@2.1.3": { + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "nanoid@3.3.11": { + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "bin": true + }, + "picocolors@1.1.1": { + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "picomatch@4.0.3": { + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" + }, + "postcss@8.5.6": { + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dependencies": [ + "nanoid", + "picocolors", + "source-map-js" + ] + }, + "readdirp@4.1.2": { + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" + }, + "rollup@4.55.1": { + "integrity": "sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==", + "dependencies": [ + "@types/estree" + ], + "optionalDependencies": [ + "@rollup/rollup-android-arm-eabi", + "@rollup/rollup-android-arm64", + "@rollup/rollup-darwin-arm64", + "@rollup/rollup-darwin-x64", + "@rollup/rollup-freebsd-arm64", + "@rollup/rollup-freebsd-x64", + "@rollup/rollup-linux-arm-gnueabihf", + "@rollup/rollup-linux-arm-musleabihf", + "@rollup/rollup-linux-arm64-gnu", + "@rollup/rollup-linux-arm64-musl", + "@rollup/rollup-linux-loong64-gnu", + "@rollup/rollup-linux-loong64-musl", + "@rollup/rollup-linux-ppc64-gnu", + "@rollup/rollup-linux-ppc64-musl", + "@rollup/rollup-linux-riscv64-gnu", + "@rollup/rollup-linux-riscv64-musl", + "@rollup/rollup-linux-s390x-gnu", + "@rollup/rollup-linux-x64-gnu", + "@rollup/rollup-linux-x64-musl", + "@rollup/rollup-openbsd-x64", + "@rollup/rollup-openharmony-arm64", + "@rollup/rollup-win32-arm64-msvc", + "@rollup/rollup-win32-ia32-msvc", + "@rollup/rollup-win32-x64-gnu", + "@rollup/rollup-win32-x64-msvc", + "fsevents" + ], + "bin": true + }, + "runed@0.35.1_@sveltejs+kit@2.49.3__@sveltejs+vite-plugin-svelte@5.1.1___svelte@5.46.1____acorn@8.15.0___vite@6.4.1____picomatch@4.0.3__svelte@5.46.1___acorn@8.15.0__typescript@5.6.3__vite@6.4.1___picomatch@4.0.3__acorn@8.15.0_svelte@5.46.1__acorn@8.15.0_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-2F4Q/FZzbeJTFdIS/PuOoPRSm92sA2LhzTnv6FXhCoENb3huf5+fDuNOg1LNvGOouy3u/225qxmuJvcV3IZK5Q==", + "dependencies": [ + "@sveltejs/kit", + "dequal", + "esm-env", + "lz-string", + "svelte" + ], + "optionalPeers": [ + "@sveltejs/kit" + ] + }, + "sade@1.8.1": { + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dependencies": [ + "mri" + ] + }, + "set-cookie-parser@2.7.2": { + "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==" + }, + "sirv@3.0.2": { + "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==", + "dependencies": [ + "@polka/url", + "mrmime", + "totalist" + ] + }, + "source-map-js@1.2.1": { + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + }, + "style-to-object@1.0.14": { + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", + "dependencies": [ + "inline-style-parser" + ] + }, + "svelte-check@4.3.5_svelte@5.46.1__acorn@8.15.0_typescript@5.6.3": { + "integrity": "sha512-e4VWZETyXaKGhpkxOXP+B/d0Fp/zKViZoJmneZWe/05Y2aqSKj3YN2nLfYPJBQ87WEiY4BQCQ9hWGu9mPT1a1Q==", + "dependencies": [ + "@jridgewell/trace-mapping", + "chokidar", + "fdir", + "picocolors", + "sade", + "svelte", + "typescript" + ], + "bin": true + }, + "svelte-toolbelt@0.10.6_svelte@5.46.1__acorn@8.15.0_@sveltejs+kit@2.49.3__@sveltejs+vite-plugin-svelte@5.1.1___svelte@5.46.1____acorn@8.15.0___vite@6.4.1____picomatch@4.0.3__svelte@5.46.1___acorn@8.15.0__typescript@5.6.3__vite@6.4.1___picomatch@4.0.3__acorn@8.15.0_@sveltejs+vite-plugin-svelte@5.1.1__svelte@5.46.1___acorn@8.15.0__vite@6.4.1___picomatch@4.0.3_typescript@5.6.3_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-YWuX+RE+CnWYx09yseAe4ZVMM7e7GRFZM6OYWpBKOb++s+SQ8RBIMMe+Bs/CznBMc0QPLjr+vDBxTAkozXsFXQ==", + "dependencies": [ + "clsx", + "runed", + "style-to-object", + "svelte" + ] + }, + "svelte@5.46.1_acorn@8.15.0": { + "integrity": "sha512-ynjfCHD3nP2el70kN5Pmg37sSi0EjOm9FgHYQdC4giWG/hzO3AatzXXJJgP305uIhGQxSufJLuYWtkY8uK/8RA==", + "dependencies": [ + "@jridgewell/remapping", + "@jridgewell/sourcemap-codec", + "@sveltejs/acorn-typescript", + "@types/estree", + "acorn", + "aria-query", + "axobject-query", + "clsx", + "devalue", + "esm-env", + "esrap", + "is-reference", + "locate-character", + "magic-string", + "zimmerframe" + ] + }, + "tabbable@6.4.0": { + "integrity": "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==" + }, + "tailwind-merge@3.4.0": { + "integrity": "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==" + }, + "tailwind-variants@3.2.2_tailwind-merge@3.4.0_tailwindcss@4.1.18": { + "integrity": "sha512-Mi4kHeMTLvKlM98XPnK+7HoBPmf4gygdFmqQPaDivc3DpYS6aIY6KiG/PgThrGvii5YZJqRsPz0aPyhoFzmZgg==", + "dependencies": [ + "tailwind-merge", + "tailwindcss" + ], + "optionalPeers": [ + "tailwind-merge" + ] + }, + "tailwindcss@4.1.18": { + "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==" + }, + "tapable@2.3.0": { + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==" + }, + "tinyglobby@0.2.15_picomatch@4.0.3": { + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dependencies": [ + "fdir", + "picomatch" + ] + }, + "totalist@3.0.1": { + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==" + }, + "tslib@2.8.1": { + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" + }, + "tw-animate-css@1.4.0": { + "integrity": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==" + }, + "typescript@5.6.3": { + "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", + "bin": true + }, + "vite@6.4.1_picomatch@4.0.3": { + "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==", + "dependencies": [ + "esbuild", + "fdir", + "picomatch", + "postcss", + "rollup", + "tinyglobby" + ], + "optionalDependencies": [ + "fsevents" + ], + "bin": true + }, + "vitefu@1.1.1_vite@6.4.1__picomatch@4.0.3": { + "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==", + "dependencies": [ + "vite" + ], + "optionalPeers": [ + "vite" + ] + }, + "zimmerframe@1.1.4": { + "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==" + } + }, + "workspace": { + "packageJson": { + "dependencies": [ + "npm:@internationalized/date@^3.10.1", + "npm:@lucide/svelte@0.562", + "npm:@sveltejs/adapter-static@^3.0.6", + "npm:@sveltejs/kit@^2.9.0", + "npm:@sveltejs/vite-plugin-svelte@5", + "npm:@tailwindcss/vite@^4.1.18", + "npm:@tauri-apps/api@2", + "npm:@tauri-apps/cli@2", + "npm:@tauri-apps/plugin-opener@2", + "npm:bits-ui@^2.15.4", + "npm:clsx@^2.1.1", + "npm:svelte-check@4", + "npm:svelte@5", + "npm:tailwind-merge@^3.4.0", + "npm:tailwind-variants@^3.2.2", + "npm:tailwindcss@^4.1.18", + "npm:tw-animate-css@^1.4.0", + "npm:typescript@~5.6.2", + "npm:vite@^6.0.3" + ] + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..42445b8 --- /dev/null +++ b/package.json @@ -0,0 +1,38 @@ +{ + "name": "pico-forge", + "version": "0.1.0", + "description": "", + "type": "module", + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "tauri": "tauri" + }, + "license": "MIT", + "dependencies": { + "@lucide/svelte": "^0.562.0", + "@tailwindcss/vite": "^4.1.18", + "@tauri-apps/api": "^2", + "@tauri-apps/plugin-opener": "^2", + "tailwindcss": "^4.1.18" + }, + "devDependencies": { + "@internationalized/date": "^3.10.1", + "@sveltejs/adapter-static": "^3.0.6", + "@sveltejs/kit": "^2.9.0", + "@sveltejs/vite-plugin-svelte": "^5.0.0", + "bits-ui": "^2.15.4", + "clsx": "^2.1.1", + "svelte": "^5.0.0", + "svelte-check": "^4.0.0", + "tailwind-merge": "^3.4.0", + "tailwind-variants": "^3.2.2", + "tw-animate-css": "^1.4.0", + "typescript": "~5.6.2", + "vite": "^6.0.3", + "@tauri-apps/cli": "^2" + } +} diff --git a/src-tauri/.gitignore b/src-tauri/.gitignore new file mode 100644 index 0000000..b21bd68 --- /dev/null +++ b/src-tauri/.gitignore @@ -0,0 +1,7 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Generated by Tauri +# will have schema files for capabilities auto-completion +/gen/schemas diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock new file mode 100644 index 0000000..9ef59dc --- /dev/null +++ b/src-tauri/Cargo.lock @@ -0,0 +1,5655 @@ +# 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 = "aes" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures", +] + +[[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.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" + +[[package]] +name = "asn1-rs" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" +dependencies = [ + "asn1-rs-derive", + "asn1-rs-impl", + "displaydoc", + "nom", + "num-traits", + "rusticata-macros", + "thiserror 2.0.17", + "time", +] + +[[package]] +name = "asn1-rs-derive" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure", +] + +[[package]] +name = "asn1-rs-impl" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[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.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" +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.114", +] + +[[package]] +name = "async-signal" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" +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.114", +] + +[[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 = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" +dependencies = [ + "serde_core", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block-padding" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" +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 = "bumpalo" +version = "3.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" + +[[package]] +name = "bytemuck" +version = "1.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" +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.10.0", + "cairo-sys-rs", + "glib", + "libc", + "once_cell", + "thiserror 1.0.69", +] + +[[package]] +name = "cairo-sys-rs" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "camino" +version = "1.2.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.17", +] + +[[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.10+spec-1.1.0", +] + +[[package]] +name = "cbc" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" +dependencies = [ + "cipher", +] + +[[package]] +name = "cc" +version = "1.2.51" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cfb" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" +dependencies = [ + "byteorder", + "fnv", + "uuid", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chrono" +version = "0.4.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +dependencies = [ + "iana-time-zone", + "num-traits", + "serde", + "windows-link 0.2.1", +] + +[[package]] +name = "ciborium" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" +dependencies = [ + "ciborium-io", + "ciborium-ll", + "serde", +] + +[[package]] +name = "ciborium-io" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" + +[[package]] +name = "ciborium-ll" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" +dependencies = [ + "ciborium-io", + "half", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", +] + +[[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 = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[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.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" +dependencies = [ + "bitflags 2.10.0", + "core-foundation", + "core-graphics-types", + "foreign-types", + "libc", +] + +[[package]] +name = "core-graphics-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" +dependencies = [ + "bitflags 2.10.0", + "core-foundation", + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crunchy" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + +[[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.29.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "matches", + "phf 0.10.1", + "proc-macro2", + "quote", + "smallvec", + "syn 1.0.109", +] + +[[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.114", +] + +[[package]] +name = "ctap-hid-fido2" +version = "3.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aab54a72e056ad648b432faab0782512a989074a0e15d7c01e24825b22b0d033" +dependencies = [ + "aes", + "anyhow", + "base64 0.22.1", + "byteorder", + "cbc", + "ciborium", + "hex", + "hidapi", + "num", + "pad", + "rand 0.9.2", + "ring", + "strum", + "strum_macros", + "x509-parser", +] + +[[package]] +name = "ctor" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" +dependencies = [ + "quote", + "syn 2.0.114", +] + +[[package]] +name = "darling" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.114", +] + +[[package]] +name = "darling_macro" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "data-encoding" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" + +[[package]] +name = "der-parser" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" +dependencies = [ + "asn1-rs", + "displaydoc", + "nom", + "num-bigint", + "num-traits", + "rusticata-macros", +] + +[[package]] +name = "deranged" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" +dependencies = [ + "powerfmt", + "serde_core", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.114", +] + +[[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 = "dispatch" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" + +[[package]] +name = "dispatch2" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" +dependencies = [ + "bitflags 2.10.0", + "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.114", +] + +[[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.114", +] + +[[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 = "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.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml 0.9.10+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 = "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.114", +] + +[[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.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" +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.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + +[[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.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff" + +[[package]] +name = "flate2" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" +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 = "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.114", +] + +[[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 = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "futures-channel" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" + +[[package]] +name = "futures-executor" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" + +[[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.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "futures-sink" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" + +[[package]] +name = "futures-task" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" + +[[package]] +name = "futures-util" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[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.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[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", + "wasip2", +] + +[[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.10.0", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys", + "glib-macros", + "glib-sys", + "gobject-sys", + "libc", + "memchr", + "once_cell", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "glib-macros" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" +dependencies = [ + "heck 0.4.1", + "proc-macro-crate 2.0.2", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[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.114", +] + +[[package]] +name = "half" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" +dependencies = [ + "cfg-if", + "crunchy", + "zerocopy", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[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 = "hidapi" +version = "2.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "565dd4c730b8f8b2c0fb36df6be12e5470ae10895ddcc4e9dcfbfb495de202b0" +dependencies = [ + "cc", + "cfg-if", + "libc", + "pkg-config", + "windows-sys 0.48.0", +] + +[[package]] +name = "html5ever" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" +dependencies = [ + "log", + "mac", + "markup5ever", + "match_token", +] + +[[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.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-util" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-channel", + "futures-core", + "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.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" +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.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" +dependencies = [ + "byteorder", + "png", +] + +[[package]] +name = "icu_collections" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" +dependencies = [ + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" + +[[package]] +name = "icu_properties" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" + +[[package]] +name = "icu_provider" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +dependencies = [ + "equivalent", + "hashbrown 0.16.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 = "inout" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" +dependencies = [ + "block-padding", + "generic-array", +] + +[[package]] +name = "ipnet" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + +[[package]] +name = "iri-string" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" +dependencies = [ + "memchr", + "serde", +] + +[[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.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" + +[[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", + "log", + "thiserror 1.0.69", + "walkdir", + "windows-sys 0.45.0", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + +[[package]] +name = "js-sys" +version = "0.3.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" +dependencies = [ + "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.10.0", + "serde", + "unicode-segmentation", +] + +[[package]] +name = "kuchikiki" +version = "0.8.8-speedreader" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" +dependencies = [ + "cssparser", + "html5ever", + "indexmap 2.13.0", + "selectors", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[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.179" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f" + +[[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.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" +dependencies = [ + "bitflags 2.10.0", + "libc", +] + +[[package]] +name = "linux-raw-sys" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" + +[[package]] +name = "litemap" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + +[[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 = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "markup5ever" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "match_token" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "memchr" +version = "2.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + +[[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 = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[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.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" +dependencies = [ + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.61.2", +] + +[[package]] +name = "muda" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" +dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "once_cell", + "png", + "serde", + "thiserror 2.0.17", + "windows-sys 0.60.2", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.10.0", + "jni-sys", + "log", + "ndk-sys", + "num_enum", + "raw-window-handle", + "thiserror 1.0.69", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "ndk-sys" +version = "0.6.0+11769913" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" +dependencies = [ + "jni-sys", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "nix" +version = "0.30.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" +dependencies = [ + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", + "memoffset", +] + +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "num" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-complex" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-iter" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-rational" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +dependencies = [ + "num-bigint", + "num-integer", + "num-traits", +] + +[[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.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "objc2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" +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.10.0", + "block2", + "libc", + "objc2", + "objc2-cloud-kit", + "objc2-core-data", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-core-image", + "objc2-core-text", + "objc2-core-video", + "objc2-foundation", + "objc2-quartz-core", +] + +[[package]] +name = "objc2-cloud-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-data" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa" +dependencies = [ + "bitflags 2.10.0", + "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.10.0", + "dispatch2", + "objc2", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" +dependencies = [ + "bitflags 2.10.0", + "dispatch2", + "objc2", + "objc2-core-foundation", + "objc2-io-surface", +] + +[[package]] +name = "objc2-core-image" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006" +dependencies = [ + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-text" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", +] + +[[package]] +name = "objc2-core-video" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-io-surface", +] + +[[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.10.0", + "block2", + "libc", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-javascript-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586" +dependencies = [ + "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.10.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-security" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-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.10.0", + "objc2", + "objc2-core-foundation", + "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.10.0", + "block2", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "objc2-javascript-core", + "objc2-security", +] + +[[package]] +name = "oid-registry" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" +dependencies = [ + "asn1-rs", +] + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "open" +version = "5.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc" +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 = "pad" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3" +dependencies = [ + "unicode-width", +] + +[[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 = "pcsc" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd833ecf8967e65934c49d3521a175929839bf6d0e497f3bd0d3a2ca08943da" +dependencies = [ + "bitflags 2.10.0", + "pcsc-sys", +] + +[[package]] +name = "pcsc-sys" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e14ef017e15d2e5592a9e39a346c1dbaea5120bab7ed7106b210ef58ebd97003" +dependencies = [ + "pkg-config", +] + +[[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.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" +dependencies = [ + "phf_shared 0.8.0", +] + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_macros 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" +dependencies = [ + "phf_generator 0.8.0", + "phf_shared 0.8.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_generator" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" +dependencies = [ + "phf_shared 0.8.0", + "rand 0.7.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand 0.8.5", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand 0.8.5", +] + +[[package]] +name = "phf_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "phf_shared" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.1", +] + +[[package]] +name = "pico-forge" +version = "0.1.0" +dependencies = [ + "anyhow", + "byteorder", + "ctap-hid-fido2", + "hex", + "pcsc", + "serde", + "serde_json", + "tauri", + "tauri-build", + "tauri-plugin-opener", + "thiserror 2.0.17", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "piper" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" +dependencies = [ + "atomic-waker", + "fastrand", + "futures-io", +] + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plist" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" +dependencies = [ + "base64 0.22.1", + "indexmap 2.13.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 = "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.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" +dependencies = [ + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "proc-macro-crate" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" +dependencies = [ + "toml_edit 0.23.10+spec-1.0.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-macro-hack" +version = "0.5.20+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + +[[package]] +name = "proc-macro2" +version = "1.0.105" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-xml" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" +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 = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc", + "rand_pcg", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.3", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1", +] + +[[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 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.3", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.16", +] + +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +dependencies = [ + "getrandom 0.3.4", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "rand_pcg" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +dependencies = [ + "rand_core 0.5.1", +] + +[[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.10.0", +] + +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.16", + "libredox", + "thiserror 2.0.17", +] + +[[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.114", +] + +[[package]] +name = "regex" +version = "1.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" + +[[package]] +name = "reqwest" +version = "0.12.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +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", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.16", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rusticata-macros" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" +dependencies = [ + "nom", +] + +[[package]] +name = "rustix" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" +dependencies = [ + "bitflags 2.10.0", + "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 = "ryu" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" +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.114", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "selectors" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" +dependencies = [ + "bitflags 1.3.2", + "cssparser", + "derive_more", + "fxhash", + "log", + "phf 0.8.0", + "phf_codegen 0.8.0", + "precomputed-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" +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.114", +] + +[[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.114", +] + +[[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.114", +] + +[[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.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" +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.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.0", + "serde_core", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[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.114", +] + +[[package]] +name = "servo_arc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" +dependencies = [ + "nodrop", + "stable_deref_trait", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[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.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + +[[package]] +name = "slab" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" + +[[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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" +dependencies = [ + "libc", + "windows-sys 0.60.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 = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "strum" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" + +[[package]] +name = "strum_macros" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[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", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" +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.114", +] + +[[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.34.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7" +dependencies = [ + "bitflags 2.10.0", + "block2", + "core-foundation", + "core-graphics", + "crossbeam-channel", + "dispatch", + "dlopen2", + "dpi", + "gdkwayland-sys", + "gdkx11-sys", + "gtk", + "jni", + "lazy_static", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-sys", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "once_cell", + "parking_lot", + "raw-window-handle", + "scopeguard", + "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.114", +] + +[[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.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a3868da5508446a7cd08956d523ac3edf0a8bc20bf7e4038f9a95c2800d2033" +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.17", + "tokio", + "tray-icon", + "url", + "webkit2gtk", + "webview2-com", + "window-vibrancy", + "windows", +] + +[[package]] +name = "tauri-build" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17fcb8819fd16463512a12f531d44826ce566f486d7ccd211c9c8cebdaec4e08" +dependencies = [ + "anyhow", + "cargo_toml", + "dirs", + "glob", + "heck 0.5.0", + "json-patch", + "schemars 0.8.22", + "semver", + "serde", + "serde_json", + "tauri-utils", + "tauri-winres", + "toml 0.9.10+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-codegen" +version = "2.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fa9844cefcf99554a16e0a278156ae73b0d8680bbc0e2ad1e4287aadd8489cf" +dependencies = [ + "base64 0.22.1", + "brotli", + "ico", + "json-patch", + "plist", + "png", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", + "syn 2.0.114", + "tauri-utils", + "thiserror 2.0.17", + "time", + "url", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-macros" +version = "2.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3764a12f886d8245e66b7ee9b43ccc47883399be2019a61d80cf0f4117446fde" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.114", + "tauri-codegen", + "tauri-utils", +] + +[[package]] +name = "tauri-plugin" +version = "2.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e1d0a4860b7ff570c891e1d2a586bf1ede205ff858fbc305e0b5ae5d14c1377" +dependencies = [ + "anyhow", + "glob", + "plist", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri-utils", + "toml 0.9.10+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-plugin-opener" +version = "2.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c26b72571d25dee25667940027114e60f569fc3974f8cefbe50c2cbc5fd65e3b" +dependencies = [ + "dunce", + "glob", + "objc2-app-kit", + "objc2-foundation", + "open", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri", + "tauri-plugin", + "thiserror 2.0.17", + "url", + "windows", + "zbus", +] + +[[package]] +name = "tauri-runtime" +version = "2.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f766fe9f3d1efc4b59b17e7a891ad5ed195fa8d23582abb02e6c9a01137892" +dependencies = [ + "cookie", + "dpi", + "gtk", + "http", + "jni", + "objc2", + "objc2-ui-kit", + "objc2-web-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", + "thiserror 2.0.17", + "url", + "webkit2gtk", + "webview2-com", + "windows", +] + +[[package]] +name = "tauri-runtime-wry" +version = "2.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "187a3f26f681bdf028f796ccf57cf478c1ee422c50128e5a0a6ebeb3f5910065" +dependencies = [ + "gtk", + "http", + "jni", + "log", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "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.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a423c51176eb3616ee9b516a9fa67fed5f0e78baaba680e44eb5dd2cc37490" +dependencies = [ + "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dunce", + "glob", + "html5ever", + "http", + "infer", + "json-patch", + "kuchikiki", + "log", + "memchr", + "phf 0.11.3", + "proc-macro2", + "quote", + "regex", + "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", + "thiserror 2.0.17", + "toml 0.9.10+spec-1.1.0", + "url", + "urlpattern", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-winres" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" +dependencies = [ + "dunce", + "embed-resource", + "toml 0.9.10+spec-1.1.0", +] + +[[package]] +name = "tempfile" +version = "3.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" +dependencies = [ + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix", + "windows-sys 0.61.2", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "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.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" +dependencies = [ + "thiserror-impl 2.0.17", +] + +[[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.114", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "time" +version = "0.3.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" + +[[package]] +name = "time-macros" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tokio" +version = "1.49.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +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.10+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48" +dependencies = [ + "indexmap 2.13.0", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 0.7.14", +] + +[[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_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.13.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.13.0", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.23.10+spec-1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" +dependencies = [ + "indexmap 2.13.0", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "winnow 0.7.14", +] + +[[package]] +name = "toml_parser" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" +dependencies = [ + "winnow 0.7.14", +] + +[[package]] +name = "toml_writer" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" + +[[package]] +name = "tower" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags 2.10.0", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[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.114", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tray-icon" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c" +dependencies = [ + "crossbeam-channel", + "dirs", + "libappindicator", + "muda", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "once_cell", + "png", + "serde", + "thiserror 2.0.17", + "windows-sys 0.60.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.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" + +[[package]] +name = "uds_windows" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" +dependencies = [ + "memoffset", + "tempfile", + "winapi", +] + +[[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.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" + +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unicode-width" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", + "serde_derive", +] + +[[package]] +name = "urlpattern" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" +dependencies = [ + "regex", + "serde", + "unic-ucd-ident", + "url", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" +dependencies = [ + "getrandom 0.3.4", + "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.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.1+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" +dependencies = [ + "cfg-if", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.114", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-streams" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webkit2gtk" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" +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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" +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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36d8f49392708365af9216033f69df0fb243b04d7871a93052f28bf7d06dc685" +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.114", +] + +[[package]] +name = "webview2-com-sys" +version = "0.38.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3bc49d8d9c9bbd24ed5a0c01fd9cf200d0ce75e854fef23df793a413521f0797" +dependencies = [ + "thiserror 2.0.17", + "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.114", +] + +[[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.114", +] + +[[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.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[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.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" +dependencies = [ + "cfg-if", + "windows-sys 0.59.0", +] + +[[package]] +name = "wit-bindgen" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + +[[package]] +name = "writeable" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" + +[[package]] +name = "wry" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728b7d4c8ec8d81cab295e0b5b8a4c263c0d41a785fb8f8c4df284e5411140a2" +dependencies = [ + "base64 0.22.1", + "block2", + "cookie", + "crossbeam-channel", + "dirs", + "dpi", + "dunce", + "gdkx11", + "gtk", + "html5ever", + "http", + "javascriptcore-rs", + "jni", + "kuchikiki", + "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.17", + "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 = "x509-parser" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425" +dependencies = [ + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom", + "oid-registry", + "rusticata-macros", + "thiserror 2.0.17", + "time", +] + +[[package]] +name = "yoke" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure", +] + +[[package]] +name = "zbus" +version = "5.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91" +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", + "nix", + "ordered-stream", + "serde", + "serde_repr", + "tracing", + "uds_windows", + "uuid", + "windows-sys 0.61.2", + "winnow 0.7.14", + "zbus_macros", + "zbus_names", + "zvariant", +] + +[[package]] +name = "zbus_macros" +version = "5.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.114", + "zbus_names", + "zvariant", + "zvariant_utils", +] + +[[package]] +name = "zbus_names" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" +dependencies = [ + "serde", + "static_assertions", + "winnow 0.7.14", + "zvariant", +] + +[[package]] +name = "zerocopy" +version = "0.8.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure", +] + +[[package]] +name = "zerotrie" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "zmij" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8" + +[[package]] +name = "zvariant" +version = "5.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c" +dependencies = [ + "endi", + "enumflags2", + "serde", + "winnow 0.7.14", + "zvariant_derive", + "zvariant_utils", +] + +[[package]] +name = "zvariant_derive" +version = "5.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.114", + "zvariant_utils", +] + +[[package]] +name = "zvariant_utils" +version = "3.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599" +dependencies = [ + "proc-macro2", + "quote", + "serde", + "syn 2.0.114", + "winnow 0.7.14", +] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml new file mode 100644 index 0000000..8ce3723 --- /dev/null +++ b/src-tauri/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "pico-forge" +version = "0.1.0" +description = "An open source commissioning tool for Pico FIDO security keys. Developed with Rust, Tauri, and Svelte." +authors = ["Suyog Tandel"] +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 = "pico_forge_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" + +pcsc = "2" # Standard Smart Card API (connect to the key) +hex = "0.4" # For parsing "CAFE:4242" VID/PID strings +byteorder = "1.5" # Required for writing Big-Endian numbers (firmware requirement) +thiserror = "2" # Makes custom error handling much easier +anyhow = "1.0.100" # For easy error propagation +ctap-hid-fido2 = "3.5" # For fido2 interface operations diff --git a/src-tauri/build.rs b/src-tauri/build.rs new file mode 100644 index 0000000..d860e1e --- /dev/null +++ b/src-tauri/build.rs @@ -0,0 +1,3 @@ +fn main() { + tauri_build::build() +} diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json new file mode 100644 index 0000000..813d769 --- /dev/null +++ b/src-tauri/capabilities/default.json @@ -0,0 +1,15 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Capability for the main window", + "windows": ["main"], + "permissions": [ + "core:default", + "opener:default", + "core:window:allow-minimize", + "core:window:allow-maximize", + "core:window:allow-close", + "core:window:allow-start-dragging", + "core:window:allow-toggle-maximize" + ] +} diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png new file mode 100644 index 0000000000000000000000000000000000000000..4505aedad510c897d54daee1128c78e58e1bf7a6 GIT binary patch literal 1492 zcmeAS@N?(olHy`uVBq!ia0y~yU}ykg4mJh`hQoG=rx_SnXM4IhhE&{oJ9n>jGPQE?Fh(Jn$ROi!MiIJuKSsWbTfmCUWBbMDTaKX2x{m(SPE z3Ob%BcHj8!{rvp@*RNmS?s#$4e0xR)1qKI@ZHx>|3@i*B3<9JJ)LeM}e0gPUt?#<+ z+qXYieD(3;#gekJrp?XGC-=9vwVkv**dK z^B+EJh>VId3JwlVOGsc~sJVXlaP!W+driN8|L*sG_0@#x>fIByojx$U$h5bx@aXyf z@nhhv*BRXr@$u%DFJESOF!|cGYm;jCXl1Hq2(cWrZVZ)*zjgPnubmldQ`n3B4zlNF zDoj|<$RL-IoVm5 zHa&ax>`~$2an<^^BW_ddbw!?;2Z~ZpA5c_Z#;~Aa-u(G<@8#Fj$S^of{FZ%vYs&?% zV;7kgESYfX#71o|^$%~}yji{~oGpUO@OEiw>C`D}zwYu1oXox=FjS;aB=*diGk;uI z-|A)-Sxwdckh;2qiy>aC!p>3Ps@MbXHowr*XV0FEk7o5tIJwDlzRvIc3pP&wd0QbX zxmNOm-g__2?49A_n>-^AUCS~tH$N^G;LdV^mq{{u!;_OjTwIL{uD@VyzIFEdw{H=Q zKApWvMJFz;V=?NOcS0$;HH@9RpCRDoPGJryr-SSo7avB)#Jq`kJGn7r-&VKFlUJNx zI)6d+$(xtI+6&Zv@RZugx~2N}ryaW`!%lC#v_19thpnb3K5ky^Xx+dN;JD(s_vW^3 zEV;gR68j4ozI1(_ZFZ$mc!uH0$4M&|@2y&qtNf+%;J+J2HLv*2aW%YKdn$3cX7W#g zE(J9;wSTYQNLDfZHP|=r#_QLw&+x@h`*-l^)2Av^c$OM25e?3Zw{ws?{Gz(Azdu;_ zySlo1T3MM{sha?UmeIaL4!W0@IW(#3vYh(5e%(4YL#u0DOIIzQY}eCVw||R3i;?|} zu7f{}W~^Ql9mc`O&+k3ozlW`1kN=fFfA$pK{W&|;T4VKZ4K0Q)o#n3I>cj;!YQB_e zXPDmoVH6OlII~sZ?BCN89=%Kri~2&=FOTP(r!?2nsBV_C)|CI>*D7AAW{9b{xOa|y zZ?|@eHdEuS7N1i(Dhw4@4rso=GfyQ*q{-xyq2-mVT_1NpeRjKliYAj|)ZuBBeTm5o z1%IEUYo2@3=%C%Po-eL|VTW1Wyk*@w0xz<+ZQHh|W>Yis0-ndu*ZyAK=J+{M>6*m69;E?Ca;77I6#j96IE*PJMq*&l1kP z$}ir%TX!ur-g(a5V@G12eTtp$cBw=3KxmoH`+4@3mXSB#ugX2V{ZztRhMM~N>#siC zEN3+o{JHIRP5p~w-;0bqDj7{PH6EuGvs6iKjkz|} zYwPm57tb@>9Tk^cI$5^$!k2*UzZ&z8_5a#Y5ggR)sm@VjQuk$f>+We`D?Wez9Irif z{jqe`6%Wp8)R@^Zgnant61sFIBZFjLr!x_y9|N9(QEIjQfln@LjbayFU|?Wi@O1Ta JS?83{1OU&yuE78R literal 0 HcmV?d00001 diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..c6237fd98bb8e39e786762f8cc04c144f210057d GIT binary patch literal 2823 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 m!w+#KEGh2*!@jfs7~)owL?YJ5Z$6 zd@>vBJUa)+W+lfjj4K>PnYoxXM7Tm*7lt0aa`l3gfek}~K?6HKKSNi`o!O>4pQi=g z`e|ESw=7$ANz44;8TsFCzJ9a${FQzC_y6a3+M2b8rNvcHEHRKIa@vXO*Qf8Hj}B`Lhe><>x>B z_b=|aoPq#3)Ubn>` z7CmZOwTD&QB42RZgU^Pcsdpa=O+$r>&$l-J4R&y`dhFw)<3lcP) z?Ynd5PR{u57hk`co=J3FC>+)#z?+_)-ujuZLD7rzG{c6;lZACJui9W1u`hsGB<${A zfi-oajp2M^*OHnKE||2TX;ov>uAZyo-FcY}z#Gb@@g$=eko-8yz~m+b7OEohe}X^uq^(ZB=|4 zGj4sb%6`~WxZ#-7S;6&%Q+e*FT)%$3Whu9W5?ioXk^ekjHy43BPj!+%{`hes)8Hl3 zyZ7(^?|RMn?9-=D^;cF@DQZbomNzp>U2OhiVi_v7);Y{>6NA^)w`rj#7zNid?9xv& zDN@hpIn>3dDz@Du;c@iZX&-yN@)LZSpB66r!cYin!V-My1x+LesO$?UhPBPtz^9z1kQ(_iGkzvGgePjqM7er#O7 z;8DWLcXwG_t-V|Ka#-R^2G-fKzi zIdSdUwU-=U?lO#dC2nHJ%QQ_hz$&Y4*>q{YgHbUtCTw1=4w09q>LxV4T)afhL382n z6>IkKNFQJdpPv~hGR5T=M{VtfX`vCXR;H*qxaQi(%*i{QdpINF=C$Kthqt_CE0x=^ z#!Yn1=c>JNiPJ60-RlYtu3NY6&?4I{ROGK&zi4enMf_JEr#l{-wZ56H ztzOEf_TtJGU9s5dMaKXD literal 0 HcmV?d00001 diff --git a/src-tauri/icons/Square142x142Logo.png b/src-tauri/icons/Square142x142Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..986b8d257755117002a4090b595bee82c37fd7a8 GIT binary patch literal 1643 zcmeAS@N?(olHy`uVBq!ia0y~yVCVy34mJh`hUb3`I2ah%j67W&Ln>~)ox9&yC0gY8 z`E$WaN}NScRFsPTF$gJf3UYG35*6eWWK`l5Vp0++dh*1>#br|M@40vDO!M#c{4>0J z`FmNtU1;#;t*vsujGy1DerH*3wQt|PIw=Pqs~^G)kDyS24+fzEAPJa|0v|y^KQ0?P zyMOQhS5;T9UBABH-tXqopMU;rX>Vt*uB+R&e7SmcZS7jSc0&t`3}$9#GZT{(VPWBG zSFeVi+JC>_Xs*>N52eVw{Cs6kA-D4K?Y+IdH}BkudATU?;n6^sox66eva_?ZGuqk4 z5)~V}_2b9FBOm8(-fX;k&mJGuO)jZbRky^%#RZRti^Q6ln-}l=_Tz}12F;gmchX=PUQU|KuUI^-xCLq!iq;U32H}*^SfB*iybC=%M^GlLL zzx+LW;rvxapDI146z!BFo}0cekzS>`D|Jq3SX$&xg|(Av#8wnMQkm#x{^8N1MN6e6 z%TFKr9=u2EP0{~zleheOcm4bEm&Y$<$3#YMT)bFWsjvUilD&;HQZ`>X{_dRD&DWVF zNg1<_^xAw|zT5bG@DVS`!l;RAr;A!uCc3|5n3^n5D6{^~_3PJS&wJ#K6h_R_xajtjH*?P9#T~+>LUJ|hSRPs2 z>J>=+abd&4*Gm=s=e(E}`npi_sORohRSm7}`LCM3Uif-xg8G}Pu<-t7i@tBRt*&!! zJyhbYd{ncnrTcH}z0S$un`8cdjhd={Zi)H%%`>?b{lYG3+-jNY|M}auYXQqtKCR%e z^*d5oS?MSvzBDjTH79uU%>c1*IZt78^T&r5dW$acH0yDln4X?~e7CJe{?S6$SsTi0 zXV|Rb@R@bybK?G0hmWdNi!1f+3-dhm{@hB=CxNc>^R}&1o;bzg&$^x~MfbQg=UBXd z|9)k?NRsy9$tfJx4?I4-kodpp;gx`|tB)LBY1zxQ=F-!f|{b`HJt=;N9tE9Yt~kG+v+=oJ&2eXsc4;h5%!T7H?1*DhUglM~(Xdh61? zOkdWP9y@t*+Qpl8x4Kp03qRf4t&~`LYA-l`ESbXRKXU?%niyq1FM7y!XN& yqKta7Tk~t2=E?ui-~|=95KKa`i&<*_Vcs@F<6?Duc_RY@1B0ilpUXO@geCxl`w;p7 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/Square150x150Logo.png b/src-tauri/icons/Square150x150Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..54cf94a01edf46320e87bfa78617ec4690fc8014 GIT binary patch literal 1743 zcmeAS@N?(olHy`uVBq!ia0y~yV3-EN9Bd2>3^t5~j~E!(rg^$JhE&{oJ9ocvj;F}+ z^Rq>TJSTi+pDfAz}js;~1Ti|sFO|NX^s`R;xD_Wd(znDg?HGQ$xj5OmN1K`L;xI+ib2|NZCB z8vFOJUvK{Rug*^7NLK%ni8fU>Ha0hI-=2N<-o0&q>z$pQ%`7Z34j(>jW@eUl_wL=A z8T)^V7R~?u`*-#3-McrhUaehSQ*-8Nx}T5F6?q}vjZ98Tu`w|>zJA?WTT>(Q&C1x= zc-xjOEfJy5zJ9%`r?3C^&!0X2_UM$%zH|FF_or_Wl^adcqhexoN=mX?)qc*NJ^O2A zgvXUt|G4F3WJ-KiWo(&pLr7+$mW%q*tQ!7>CqpYY#&nvus)av2I&1dq;bGy6xHr`AbKe-xeC5mvfW;B+0|qAb&u z_7k}`atY?t*6zI^xMo$6Vpz}ZCx;F>Efmf>Sz1vMv9hOA>eUuE?NfjM{&jK}(bWnI z59c&*(U`t1wTmZOW4BYJScj;@E?-UAV_f&Hn+W|ql$?;zz|Xkx)AOfKRXg6QAJM8T zT`^~!(#oJ~nn_2etm>JgcZiqKYihV(&F6BK;l7lj*6im^32@GB17NVbJSzQN@@9IxUDNv5x#3%KjO zF5vrj>XcV))B5i(UuB3ciFiA!WryDMd;9Zx^}I#rL=;+|-=Q~sBj?+6>%|$W)7oPK zxlg${y-1Wg(lK?L`?Z@lBefV+Cac}*^4z-0^UA9Hk`j|LgQ!pJJ{$KP=vczZep(#DVR+oafPskU^q)xWv@!s(_G zvX0_+&*`-Pa`3+J)qnka@5d9Qf{spJwJ}F~{Y34T?;l)#wV`|Ro=2Tu|C%m-kUDLm zc4puj?&nOQerx>X`M(GM@)p~J4FKhZ`t2lzW4CD3roAA zr(DQNwptmJ`8>l;mAOpus!N{e<-#YYj6UkGYBO9Bnpk4AQak7%a<=7dX!-I zRiiX)O>Zyna<^4Gsym~jqrV2LNjWoDt=oTEDRj!aGixtwlK=ed)?5Fh{Dt4%NEP4I zy&(5_>x6TK=d6}@ZJwXOY8L%j^P~QZzPd`ED_gZLKPz1BG1q=_o-K{z4l(SHZ5{h-@hyB%BvF9EsNf7-n_YU-_*Go9?QID8J*s8 z%EE8QC)ICVQLDRScl$8Z-k7v1RR7|l{VavEF19I5HQy_3l9cI^QFbxr*9O%YyUu91 z@4Y+SvCz==QP_hYN>j^y9ZMFL95l)7UG!OMp~=Pa!gUM3OUnu*+z%?)vQl>G!6P^4 zeDl=$wa40J^@qm%Aj#*VyS8%Woq7E!QtL=jj9&awC!O}Emy(W#ubh$0s4S)+#*oAa ofeK~)y{jJ(8ZCX` z;rF`Y#U)#_#jVS>&RCFfNx`#AL}!*thbMEyk_E2JQCm7BU);L7uJh5{?>*0@OI#jq z_!7U)i*Iv+=JJ2cEoGIz{GhN`+p`4ufAk4=x-&u&4Tao=MZntS3RC zHP4Gk#T$DciW_Tqf)l!GTf2;_BNp3}}R zf9%*XxA*(ceeCcpVQFt$vu4ea&FSaaK7Z}%^VX8u)3dAS=_!T%-(ogTzF5e<`uD%* zsxPkP|5iNZ`SIt^pBLv^u(UJrZSG%rzQ}dU3l6>xzNX9OX0}~@4+K=NFIBK=a-I_P zt^V(?QvH?}9DJ!M1x3xui-fN|6kxsnWX;;Oy>`$0KFqm)(w_fo@AUR++o~@otYi-= zO5L%Yr`#|l@RUL?v#J#b-_aib-_rFRd`->8B`)p-9rw=jrdI5-k)Lw0^4FJ@`70h= zm>PKg)vK)K<;$%7-3vP2y}f@**>IQDd1b36XZE|h%hzw-ebv>ypd(MNf8s+y*+ZT6 zQ*NEUdh~^br9n>a0gr_xCBF)8#}`P%l7Dbds+^o`0hvY8#b(md((l$hoW!;K?@_^dS7yeaPAuDPU->Cz%ejo|>gp1W>U(#s z>i^Zm?5VgYtazxizQb3htn|yJOP3nU*A%(`eDvs1WBJ2R|Lb30TYFCKqM}8IuSxMb ze>e5_F;6>GpO+sif55l-pfSIaup__lECG%f&*6>KTU>)uLp|KR-L`XCG}Nwd?oP^TyjPLkeC*lpL#`SNHeN^8NYu zBBko{Ud@r?zauOYB{x?_FeRXps~eYM{3ky=*&h=eoD}WcS9EVr<>Pkuf{fr2 zBdwimYW7}pyXV9^pWFOoNyS{{1@8TFH>c`Zn8?nZ({s+dZ|BaP$DUgjec8NqtLZKI zY4v>B#VqZ0F6xgbo!^l4dbWYPb#`|4)ZVI3ijA8$Z?4N=X`gg4vpS>h``6TpzUu1R zs#72E#JMS%t2|qF`0<&UGHOpZ5$nglZF1gt zql2%>`QnW&x>mb)@BVKep|&*R`|ItaZqD}K)5FRC`BcA6_VJc=4=yy`Sn~V(d-)$Fr>s&^ikdU0etK_j zZ2b6BKtV=vPLXihyB~dQW;&RrtB&8)-s@8a2dYy2hu%f9Y8^dm;Wy;bUA$5{t= z^QG=qlCtcRIQwq6*p@HbwT)w)ONpFajm5{}l>#ywJDa~tl@>N9-@SNJ_SLgu7WbS* zzf3h^L(5A(RZlwJp=6OHeAP#+{O`fiQg`+Frgc-)^OY=;iW_XUE#!aI;};k8^pFFK zdrsfWPft(pt@M4};};hu`IMvY#*vTj{Jy@md>}dZPEFKtjpMmR2L)$a-22E=JLUJm zW9hQ)M}Myc*?*G%=Bh{8S&!E~w(`?Dvw7Ou(}FS^X9kEaZmg)CYscO%f6(EZoh)o0CUO1ivDeilJ~Hi}3yv(SDfsv0SoYzWM!)sH zuln-xvbz0~CS|kS-@f-tN{$KNa6Hf$g)!>q#g>?SDQ_|@#i0J z#MNEX|9pSq?xrIjU;OLKON+`+DK$SorEW{L`l*p3>jlFF5>Ei&pNvAyemKapb4WMZr0z&YV5l=_~Vg-PJd5 z-Xtu(ymW7QlknS`pj6@fUwX&VauO3016EJ?9^YjCliRDHN=bbC)Hwogi*mlz^Eykt zOv#b6ughs({vgEo)Xu`kZ8v-jE=eAm(|3cz@9C%QrFRuy1m`5(pL6clud4iT*Lm@idV`f3-6!9J=fjl%gdjENy-*S=f%f94VL>YH~a6WFZ+1>!_P?xNgwRo zCUas+zgB0m-n7&5w-oK_Qfjz&cAsYwmp+*JW_xL0nOf!LCv)7^oss>uxvyx+j;&im ze=ZH%x3BbwPY%oS;{9ujUGt6|<9~a8`YOr!Jr#96Lfs$LF2%^sJGipy>-rlUep}vp zTsnL9?8W>y_xC1#;+>dXWy7ezSL#t+_axiOuF}x?%j;vedK})pvVUQ^R?8|$*kz29&TF=Ppa5SQ^w2Bu<{bvlaUC^_)W%m~b1_lOCS3j3^ HP6pWc?Ln>~)ou)XgDL|y{ z{h5yw7VKc0q|>0%$-05TL!^&Yh+APNLoQ1g!(G;l>8uXyT%N+MGv^n7u(>EHGjU_V zWIOqqKi~hoKOPwxYPxq}+LvXs4hUCl`Bn4n&?X(t^Pm3*?z#V7vrEZJu0QZ@Hk zr=|Q0XDti4Zu-%teybb{Wguo+SJ2ySRr!S?E8Mpg=P8JZ@n!`nWfgb z=*KL{?Ou#uZQg$p_hRj@vNth$4k#*GxyONRnIKD?F$(-y<^6hD6%Z27LFfcH9y85}Sb4q9e0QpeCIRF3v literal 0 HcmV?d00001 diff --git a/src-tauri/icons/Square310x310Logo.png b/src-tauri/icons/Square310x310Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..2f11c8b198b92462046a94acc4d9e68c855319f9 GIT binary patch literal 3520 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 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/StoreLogo.png b/src-tauri/icons/StoreLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c7c688b6e062f141ce29a4a57ff301b7f5ad6e GIT binary patch literal 656 zcmeAS@N?(olHy`uVBq!ia0y~yU@!t<4mJh`208nVjSLJ-;hrvzAr-gY&fLH0V1U3e z^J6P27^Zfy2fQ?~n(F1cbm5|f3m08_kx?S0CB^U1KW`rUf=hR*_Zt@*O+0BobMlED zyNzdx_$Ae+m+!yp{O4!QzYF3KbM_sPXmNz2f6OPI7A^c+=YRb1#B#|!-9-x`HrU0T??I5CQ?(* zKaUUMGzi%Kv}k4X+A!@?DMs^I8!z9@n||!^Mva663R)hL=99U$-^{t^r@vI8A!BRQ zBDJ8EBEHKnZ@AjD>~g``x_sml-QV7C9|c(CcX281~0Oqq{@WN$hjg-fgk{ zwnv+me@Z&1S#c-JkBhc;fR&U&{_z7M@orA!^zZ98D&B zm`{mXbqKfYjK2Q5bmKkFuzkiM0_GfxgHC2jygu8vC{gNcE>i&4Cw0Dc0w?N=Q&f14 zRqtNczlcBg+M#v39A~JCWU**YGw`!j*Q`Toydw;DGjpr47=-wyK$6k2ob&1uy`OQa8SvmS1DAZ(PINJ8ZG9`2VKmI_! z69MM?1tu~~^y)bMevYW5z`v7I5HY?_ + + + + \ No newline at end of file diff --git a/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png b/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..b07f5d45813b628304e4fc37f42820aabf390d3e GIT binary patch literal 1175 zcmeAS@N?(olHy`uVBq!ia0y~yU@!z>4mJh`hT=JnG7JnXah@)YAr-gYMtWC>YHMyn3Ca-2VZe#f3YNABL0_4D(a@wO!*B0^%)q)886zt%3ccvh&wkyTzUuB@ya z5fgLd*)ugcdHJ``M8w1vEnUjW$;nxCUPGyE(u_HCjy!mvASWj$AR?l&d;0Y0rf1aD z)Cx*VTj$M_bMDk|6SY3}^XSpmiiYEd4?Fkt_doveBf>;U?04;+ef!+P!lq5-IQ(|E z)Xy9Cnr>k^`T6gxP1f12)e(?f{Gv%4sLO@2;JLPbSH zLs5^Ix@VeRU*Y|mHxJ&rHLD^p|5a#D9z$l}HRh=8%a*Yf7Z)>4c<}h~W7VrdI$IC! zR5^0xOv{96)70et^qe_fV6^AP#a%qwQG3^|^V5-)mhSHA;!;spS5{GRaS;0R>66j1 zW5*1vt-D{o%v`d3`Rh+@iSrhGjXa_8?Ay085fPCE`}W1HV`gF!kd=M=Vdv-1#XP*c z3zsZmk(88l`Zqsi`St7JobqD3j~#Q%$<6IFXJcavh>6kpp80U(B z`SJVr>6omxwhNQz#_*{}^*MMfSh$d}y1H8F)tospt5YSPvz#kPa!U$TfBEN6O-V_K zf|}Z~rH9fDn;0I?W2tyz8k|#Ex$_D`RRhZkai;fg-nfK@PThLw`}gnNFDloXpM9lv zP~akmiK*$yi5va9HwkUN`FPvDeR;g%Ygd?>n=9+-@hx1qP$@_E=&q?PX`yWboB?}O zjucK(*m2^7$IR0gUcP%btwKE@YR+>NXZ?*;pDV+!Nw1P)VmW;8gjtJ)U-x8(++1BD zVPV#siVBNgzkWTD6nbW}O=-=In!W>;?$z7nlvd4Kbtbo@BxI9-vxoA5vL*&^Z||eZ zK09a5oN09KCpS0uqsG5~YghaI*tdDJ@pPMo(ZUB09$dtotLU;|?b@|rOgz%}&YwO# zx%9}}x4M4*{!3RcWjE>F(DeP=x1_W*w|h^;gl7Hd>gt*>X_8XdQag_YYu2363!TJr z{^i_Pud+6pgx7Ad(KcIeIX`qx+-2>YyGQ$`rNo>+f8N{w$f2hhxef`lwnx0_>+2H` z6jVIEZk^smf!6c04qE2L`e!`Ixm}Q6=-YT%dE0B=Ja2DrBfq;f>4hm7w;c;^@z=98 zEZJIcaoTDVrt|wR?fkcO+hgn8rnieuT&wOoR)0m@Vevlunez>Oh15FzwZ6^&x75V; rp`U-nE_0d0V4uXSn0|SGntDnm{r-UW|WMnOf literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png b/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..e4c6361865fc250c2263cc071e6ac4c878ed4226 GIT binary patch literal 1802 zcmeAS@N?(olHy`uVBq!ia0y~yU|0mg9Bd2>42M36Ni#68UG#Ku45_&FcCNi~j<<;W z_t~?AX7W3nV^=7*XJF(kVsYVcQ<>!1!Er*xMaYQLvZzQ!N$F(ud-J7xD}#+6|9M;d zYtGhH%XVzPW1W6%*4^dR@9*9H^Xu2I+YDUGPDV3ya5Qu@bTD*qP{_b$%FGXc{^a=k z`+xiPEsdX_fA0R>`}fQL_`Ejkw3@nlZc@^rWy_XX#UDR*tU|f{gSh*Guj23Dy<4Yz z*WlqJ16$i%Z*OliW8=fpJsr(E_wD;P@%`h+%G;j@rrf!I|GkT+!;$$X%IoUx2^#qS z{IzlK-rVl)Zi$F=LDhuaceh=?e%)z(a#`86vhwnc8~T*$>gsMCI@I)?qoe1{tpDw4 z`%@=gxI4RR*Xamr!P6>=M*rLw=jlhB)>yoF@zN=U`T6{UubWiv+`8rDrl$RL=9Y|& zQN}OwOeSADoEk9WfWo4wi8I}uUKLhXclUHe^l_{@ns58X)<`Moq0_uMb8Z|x%4(#P z^f6<_wIhezOV%{^@J{hMHs8Mf&5s{9PQQuX{PObUV3(GEE1HglFPYTg`uv#S#wQa4 zkFK{1m@1%j=t8x{>ddN3CrqPPZZd7?XnmZ0;!7!aLkHucHQlS{Il8!PSrpV@ZEfw* z(Q(vk$Ht8hbD1ti&q+)PJFvZ_@9Nd7=MGn`YTa^dh3)lOCYifet&g-(x)$K{I%<1N zT-?8%Vo�uU9=XML{WQPsr_u4-*AmS1vr+(IK|?Ra#x$y=cyeyD2K0lP-#{{j5_I zaL?-XJN~W*`?#w*JLKLAUcY`_*wt;T^hKi{xnFU;v)DS{ZqwPJRhXOY@oUcX>C-zR z$|Y5s+B|G8m9Yeu1dF-HKlWHzZ){}L)KNMmFz`HQ#FuTXE<6=wGD}x2o8Qw_HA~^g zi53gRcG0t0FZS=;nYc-4QOhl+1;_I(Q+)MysT;hiuP7^frYpPr`BkRv?-<#AOYY24 z{@%gpb)$Dt^pq1Xj_3%v9((s<#p{dg%!16*4f=Xgt7O^P+2=;H#8+ntTuffwKOrTg zWm<=#=$mVCM=buPIZe8#!Mu7|%b~wHVMbZkUcb|ikBiHxsrmE#-nzWo{8`e1lgsXT z&0ZO>%_UZ8if-WL3yJ3+mvLNssL~YGHDlS|+ZQhezIr-S!`pdpP}a<4r?#_h6*lZ` z`O6htd-6rgojZ5lxOlm&S=my#=A`Pxz%^^v-aK`xYvaLvX+m73GtbUivbi8MHGJ*n z9AVDI)AOG;YRB|SORm1gu&=S@;yd2YDw!!)vOiy4E-1)7?ZQ>zXTCv_Q_pE{x^J#j z_3Fa=;*%;Xdv0B5?GT-IVc+)rUn-qFQ4-&;eq#~jo)D0^P04GwO7b0khZnM`(jFPk z{wp^%-D>nWX7Mv^`$aB6?TW16D>Ca(ecfD_=P6O%v2WKdqicfN6(tc@V$1Kc_owe% zxBTt0!it(2mm|C8#V>z&!E?q}rQ$oaXAZBbl$gal&A`iS>2`j z+g??ZoaWv&?Lt-A6UAg! z*E5^Eto%9et`U{gwlPV+SZAKkxx4*^(bp9ddlW;Sm^fKFYWjwJQBC|Vu(s}2s=~Wz z%!|MGJ}tV?m(RJ@Woee8saS4{$>rYPFZF_)#81}FGZH8&zx`lWqo&ce+i&AH>qe#M zUEZ)HWZt%#UoTDxBy~ScxP9s6^i>Pj&z}(a&G3v=?0U0kUh8=O*Au;@wI;oCC`k2L zrIV=oOIgclRh|F-gteBh#3QD)rgjJNtiEoL!O>r}Ub1L&W#9GK-vFv9+`n z-1n6m#f|F35j2iES; SKF+|vz~JfX=d#Wzp$PytYhfn< literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png b/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..556bee2f1abb9bb6bd5523bce986273ae6d066bb GIT binary patch literal 1336 zcmeAS@N?(olHy`uVBq!ia0y~yU@!z>4mJh`hT=JnG7JnX|2~)jXJHJ8z}Sd z?c0j|Tqm{Hw{&{6{9yLseIm;I)X-4*q=RALr1B@efkvu5JS{v^l+-3M3Msue|6aHM z-L1LR>yO_&Z8zu6?yT}RTd!OG{#|$f{nl@3i}DS8{(D9kynFX<-p7{@9xRA>E!TB1 z;VYl=3C(!MI~h)0x()v|B(GlMIB~~$t0|Mw_n;i!Jw4ScxA`3q;<>-*#>#E$np7i1 z7IUsx<<+(5!^b~=zWdwQ*-6RCcLlOA$Q?ib{?gySwz2W?m*2h9Yi3jA=jZ3*;bGyZ zs;WwAnql75p=ikHU@>j_^vtxhHv8?{x4(S&&@q_B-N%P#>h$TsH8nPq|8h(;pL$_6 z)0$T=UU zz$~@Noqm3P8F_hqo^$5Tz4-B?q442SfrOj&>x5mhva@G$#Q3`jI(yDI-ZFRY+_HU} zH#-Xp3tzc^|Nrc0$AzCi7jtoOEt)k;%FD~^(j&KNEmmfp2%*CS;Gg$6Hg z@0AM{G{pMt;EmyM+_!bBtFyCnNlD3(>kB$^PMNN`!Kg4rAnU-d4ZA95iDnxJ=-1WN z`Ea~0XjtG=6R|Yu@F#}LcklWhK73e)n}L5q0Qb6f5gyZL&!1qoG2nFcyP&vyxQ8iTH4w#KYf}c%E`}vJ?V+J=YdD; z?CejTK6UNw?F|VFJ9cx$jvX`p{QZ0K=FOQ?89W8<+_bD@L@vin=fCc?Ag0l)6{gTle2TBtx#itNB*qP-VgNx5)u*% zwrw-x^@xg+YHe-ZSg%~mw4}eEfBoB+FBi78v7I_|CMEok>58T82fEkpxOaBviX-2? zedAfOb?ekdg^Y)8udTK9_4kj?xBobgiJ__K>YY1h z>bsM~WM$7f_B58cY{PMqlcJmi66<~4jDp|FI&FO@j ztgNie2ZjEgR{ubji9A9=LOTpj9cjI?j3dmg>c~0X1&<#+s_@hJaI1||mxD=`#bL$f z&67nve0-i%HOig7RC{!`wY7IA!xW9A4KJd18w;)}*l+(_TwHu-_0fAyZ4C?ibH0dp zel+J%eB`t&ebcSOo7Y$DSQGWx^h&y|Z1~#0c5jX4-q-(M{%G5xW7QHO(Y1G%9&dP+ zzQ1_evAtK;S5)SGvHf><`p5gP?km0czn@FeypF+Rt@zm=iderw_g(uAS%g8awG1bpJ@b>N7%jwNuK7QP| zxAgqCsg1jxj{J)~u)p>7{&42_&{}`#uL3{xSmw>En=;{ST5;yz(}ET6uKxP>;lqc^ zyQWW{e&_!E(~lo7UaF#_%%I^QCnIy>+qZ2!{r#tp9&Nqxwye-XX40%#S|?AQ{B_ey z$V~f|Mgqgtix(A}o0~W7->f6|xzdyK*s@-F)&g(31!panC{^~R|J>ufy6RWTPFCSMMHd}m}k!ixUxw+p~=8A|i zvMpG;RQ2VnSCbAOb`Jgjk(e0@DrQkJA?T3bgiTD-VEb8nuyL*OF4hV$po zZ{^$I@8Z(3Wa(1RnwmZL_V3v<<>t-El`B?Us9N~r_N`kX44WVBoXhawrB%bc88aqq z+GOGbK-m+swLr((aATk^x~*|UQ}Lsh%GyMyB5 z^rlXoy6g8MtM@6bO;1H7Bvzcy%gybaKYxBpYwOM>`<}Y?5kCh)Y?aqyjo!jJC zd0?~K?3|2@317aH{Owu#=+UE;oE#r1X=zn;b@$xO`}VEdsNv5jeEj_Tx!rbC7>%ur za~El}Y+zPk=(i1+Vv!RZ60#(>xT-43xbdz=MjiW;_V)Iv3qG&;63#heUVKD^#_{9F zt&|w9NZKR>OuljFPK>6W-nG&=5##fYv!1VLJbBXddtM5|k_dJ-wv@Cqw@sTiT`^m~ zmxr^>^o`^8#D9$iK0ZA>yu2s>{Mj>U_1d+eM(gJA>qsu=HE?G6{ovcu9-rTHZdvHR+tZ8h zACZ`C(SNSK=s`)^n&Z!T&Oglk Ye|vA{Uj6ovfq{X+)78&qol`;+06lm;asU7T literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png b/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1ae814a4ae137037fcac8749a99d65d2a43d95 GIT binary patch literal 1228 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 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png b/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..f5d366dcd269233af1cdcb71a1ba1427a926a290 GIT binary patch literal 2430 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 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png b/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..7a2319512426c36fd7a4b8fd30df659eebd29b5b GIT binary patch literal 2440 zcmeAS@N?(olHy`uVBq!ia0y~yV7LLo9Bd2>44n$PZy6Xk{XJbALn>~)y}Q0BBvPQ^ zV_cSMMFqowW;UB63z|6F6q>wzk{B4Z3|$&M0t_1tGH@}=J$lGk!4P1W^EKpMSeL4I z+OvO_-|yWIH=Vjxcg7i>@3ZZ;`eRu zCPoDb2ZM$L1`alKDG=YmfB~dbfCsFUg&C~$AlMYB6d_X}7BIM5JXL-net%zW_us#N ze|&u0&hN}}*rev~uTrIee}De`{QTs9?f-wa`)YoEI=;X9;h|QG@^^QhJpcLm`QuAV zy$gSR$&}AJ{-?B{;KSwP7kpK`I_>KISp0lH*~3Iv^Y)=bPBA-+QkCR6%p!_Br#n4; ze7K!oc;&4p$9knV?%CsG(!}e%YKrFKkbgRjyUX7nn`>SE=dr+={UJ_!YkzM$aecb? z@#X&WceyJ^?0>g1ZePvKlb`a#PMVpU>q>Hp?LG1D?(XvZNgrPer=OcM(`C~cE2THh zQ%`;SR`&i$*J0g;KS?L_IRw^3*wy~Ja{IcUQIqI?n>W@f$`KoRp8ji1VbPv;=ZLB# z$2EcM>}(}Tr&)Hh*50c4_~_^o5v|u;#q}%Ci?0;1J6NTj&^299>F8Jv}|>wue#E!h=sAFLv+m zinN;4lhE9g_WJef|9t`qkvG_#Yg5jL#a&pMla?-K(rRAPo{(s4E#-aeiLH{3U~)#} zv879wCM`Pt`}_M+*Y1SFimRRT?(Pab^Exw0NbKMR&Fkx8yC=O8bKG#yb>jtYakbw` zA5L$Yv`F({0Qb_KrqfT__8K(tcHPO*bKP)yy8dr=#R#5NIa$fc$~|5R5@%vr4xUhL zme8_15t{ep*6rKYWh-Y~RlAut`Fn5r`FXwF;`+zFzP|1r{?pN*=%~%quixL_|L?!+ z-__OOlcSEt$5;RRdG+emgFX+HBz7)Z+pO}* z=G&)z;?dLV>*L#N4P0(-e)oEkj&gF^FC)Q;oSl)Y42pivY7Sc6eCKtS%}tkC=S{Di z5)jN;Fi~fzSD?6-Ds zrDmktvdl>WKW!@aZ{E7~YWJCFw^udyD;K!>L>l-QoT=qEofddy|8JgS0Vf?dFbRny zPt>{mQ(Iem@``0*f@|L;_j+zxvn|}W|C)K{+!&!tUozG)DZl==Db&?^A4eM-cj@h} z6wRVg?jNt;pT9qM?LSptA-<(SPgX5@{l7b|3Qb>~*O~3Ee%+N)81ZTA&YhaGIula2 zf0Yk6j4x8@KCC=-lk4WvjOdPZG@eP*f_och;1g z+SZl%YDKJ_>6BA@lnr5@yzJEV|Z<11X#q+fv{6UF2qxek8nF|wR=GNcYmU4WqqFAucPgRMX zi_SJ5PHtQEbzRo~XR(iZx7vLa+4(E@(&yb87ur(XmDA4z+PNAOiOzk{(YNZx>l-?1 z5<8<(?^Vy*rgHlE>9a`!Yr;<-id4EW|Ja(Vx{;+ur#z4CZcI3OV(MbXG|h=to>x|T zZTQEO-liCxh*A8=npS*gt8b3-=u#At>GtNN;b+bfvk*H&@fv_HkN^?SLf zq~z1-)22z~YHRK_RiCp?DENHKi>l(yoh@!@^64vId!H;TD^u%VEMBe0KHKl`^XZ2o z{8J@!SWYWfwaw67^VqUjGQ#%OjmM`}tc*=fD3RPd%jf8HlUA)|8bRk&UrDH5UU%tm z?K(R-1-r159M_C@uBx6D)c$lrj!M(ky&G>%ixFMDdi7o(nI2!Grmq3(Uj035-P4xB z(p`D!rt?(ozBwl@UFW^C(Zej_;3kvhFEy?$jS-EGj^3;5EY+OS>{n#6vqj5sorTZs zCKlr=F@euYG#Gy*e&n=A-k+1%A)? zw0C)drq9=VtK~NTF*^A&bmq)6AMfqdS+_4C=*-lqQ)jA3FOFF(rt>e|NzP(u|YE(rZ+uz1289p|1Q#lXP8;OXk;vd$@? F2>_X)ZiWB= literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png b/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..8450a34c173f71d748352861bbf51450c7697d75 GIT binary patch literal 2780 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 OFnGH9xvX~)y=xmHdsV98 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 h;!q&SnPByY|4oyl22WQ%mvv4FO#oqd&PxCQ literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png b/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..5527a72287e1b5deb6b1aa4fbf263d43676604a6 GIT binary patch literal 4967 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 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/android/values/ic_launcher_background.xml b/src-tauri/icons/android/values/ic_launcher_background.xml new file mode 100644 index 0000000..ea9c223 --- /dev/null +++ b/src-tauri/icons/android/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #fff + \ No newline at end of file diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns new file mode 100644 index 0000000000000000000000000000000000000000..e860ae55bbe6c0331cb7164e9970f54f5e256adc GIT binary patch literal 36334 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 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-20x20@2x.png b/src-tauri/icons/ios/AppIcon-20x20@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8f1b06fd2a2d8e94298f6f19e010baef5cded8 GIT binary patch literal 540 zcmeAS@N?(olHy`uVBq!ia0y~yV9)?z4mJh`hMs>rav2yHAA7nuhE&{oJ7fQ*gANi$ z_e-eqPhelr@AaH9L`!OwNl1v+RQ3gmto#jbhnYR}ZL7Y7%&LC==1kf*uQHV!gW~UJ zQdG*0|C#gt{-k|(^X$JI^}0OWn>ovYcLk&A0;ZkoyxR{q-hKbQ`qcB!DUo8LT&>gX zZ&##V;ca)0T7SJ{XN=SJ(@%}QR_#4+x#Mo$(gJ}83&Rz7McZ31zjT@R{9=N^g4bVH zUGa2&n#s0cs+VdBZv#W`>M5tXPN!{tGwGnca%uxd?&_)AmAIpSo;(b@$G-b+o`y`3R|&_$XA>&q6-AeO+)<85VK3huyX0ro>Z>*C>XSVm zc%Oa#IYQ5kZ4djzuY0q$p3<9X5E`~R)F_uNn8`Em_P4_UiSqk5l$*`oSkrSmtEc>L yWy^*`JN=e_-uZdKztH83rVH4vH2fF%AnyFZkaa`1Wi1B0ilpUXO@geCxYvGz0o literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-20x20@3x.png b/src-tauri/icons/ios/AppIcon-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..82875f011cba4f60836fd87db9fa999c3db4e9b2 GIT binary patch literal 741 zcmeAS@N?(olHy`uVBq!ia0y~yV6XvU4mJh`2CF|eix?P~)_A%&hE&{oJIi*{!2prt z{`WK@8Em-|7{wA8O-w>Uv_x5_dbv9v@+v85fxtS*o zDg}Sut+xC3yrT2>-+$imDV)EIk`vg{P*I=!hr0dCFTZq|e)?&l-u&~yX0w;382$Wt zVEgUfYp+dn&7?nHJsGr8Bveau)%DjCnWY1H85nN7EUBqo7NQln{r2B8vfFm8U9~n$ z`?IN6hVm&veui_;H~*~Le*5CX0)x9T&;6v|&&gyg+Zb`7#Of+r?hA=WiQ8wNUG}{6 zY0=DEZ_8HP|GRjx*dmdKA2vPy_`|-1-C@J&xM_aNo&Ud+m))TCF6ZnQkDARl-%Mn% zS8MxtU~5$Gy6f2s&O0yYIi4Imv)1R56c1Z}mG<#1rt2Pl`oI>sP_)}sim&}+U!sl0 zBf+Z3DN+uLznDnz-i{FcuxQG|1HTvC`?yV3%#d4S$Knj3f_wehkABtd_um_*zfVs$ z;pn<2MLX3qmRs~IS-ZcxWTeA$NvJ)RciK@7G4?~udGfzErLb#1Sv2{w_3v8V8=PWoEKkGj^S4Le&wX~g;cmjlX044cS#+lxy*-e(;hIr$Z=`vKrSNgC z8{A@Q%nz!}JABj@?{UaKdr519hVzMCpAIW)cFInD|I&>4GTRz1>zO|D9$kNR&uB|< zvEa3k&#Dg_-58!8=Dy}98M^xF@;Y(3hSvrUw?sSqskNK`x;OF6jOGJ}45n?B65}&` z`$TtJ>`mJy()L&nU@#sidt(R)tl7NVA0oXz+*VqZ(-)G$8*j-FMhF0ZfDlk zsEf)a7BU8M{SSA&TYq8qoJ+E?n}W~tO6*Qn*6eC3+ua+qvgE7v`|nJel{T-wTG^cM z{`UKC-IH&M0g@+v87?i+aJgP`a?1I%&HJ5G6;#tEK31CLIjv?!Nbi;i9U+HhL02Y; zw`R^Nw9-#E+j{x&#~BQMYLj;aMuZ>ZnA|w~EZer+<>j|tf8B65@A0mab5EM`ACxj$ zTH)+_J8#+%p2x!^%s(hJk7wsz~JfX=d#Wzp$Pz7 C2+C3b literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-29x29@2x-1.png b/src-tauri/icons/ios/AppIcon-29x29@2x-1.png new file mode 100644 index 0000000000000000000000000000000000000000..1ccc03edafc6345c43bccde9af5a39e04018e718 GIT binary patch literal 717 zcmeAS@N?(olHy`uVBq!ia0y~yV6XyV4mJh`hKIYoG#D6|rg*wIhE&{oJJWs>qocsF z*+EK56PXJb_#QCuJz!E2WEbf4=-`+j(5WKRFo$`9vY?>nz3Tg6y;8rwoquy{ZtT+C zS*t>B27bQ%?%%HJC35}8`D+`OzVPmGl$?T!uH5W9uAI9)`qumJC027^)Y#eY*Pebl zL~H7bu+@QTlR3Z2bZ&Td@nwnE>Z`9<&z$@8)8=cHt(FMad{(aarc%8A)theW@U|bm zkl_3|WBFynJ(auf_I&7-GF$jsD|PeD3rQOd_QvZ(hInTetl5(?v^;I7S7Tt6Y(g3pVALwQ9yuC3n^*4+{dq9wcq_ z*nRh%9 z6c6ljv2D|x?tOo!wAKoaaG8*Gy$lWFp=HYwlq8)*j%**3xIOFk?zyp2o3B4L^=s8%*FZ&=AG|&e8(B)V6dMX(&p7im z*+!22nxbl{gHlZBtP<@T2NOQ5KjXso>Kf0C; zva8BuRt}97^|-@&Qb~nRw}}5?*1DM+we;)1hI1B~NbP;H{7>WorI?Rv?yk{tZz&7# z5s6cL8l?P*FCk*ldEV1C&oiv%eq-fyHcl|jvEJJ7ewyU{1!ZezNiPXVEY4dMw=I*M zb;8dLS`!Wh=vpd^9-^4$USc1|-&`xP?x=2)fLvrP<4aQ}rTwfS zrcYE3nR1+nXg;*=`s(-6t^G_-_w%BslrNe4xfGYj>USl&FfcGMc)I$ztaD0e0su^o BJ@^0s literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-29x29@2x.png b/src-tauri/icons/ios/AppIcon-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..1ccc03edafc6345c43bccde9af5a39e04018e718 GIT binary patch literal 717 zcmeAS@N?(olHy`uVBq!ia0y~yV6XyV4mJh`hKIYoG#D6|rg*wIhE&{oJJWs>qocsF z*+EK56PXJb_#QCuJz!E2WEbf4=-`+j(5WKRFo$`9vY?>nz3Tg6y;8rwoquy{ZtT+C zS*t>B27bQ%?%%HJC35}8`D+`OzVPmGl$?T!uH5W9uAI9)`qumJC027^)Y#eY*Pebl zL~H7bu+@QTlR3Z2bZ&Td@nwnE>Z`9<&z$@8)8=cHt(FMad{(aarc%8A)theW@U|bm zkl_3|WBFynJ(auf_I&7-GF$jsD|PeD3rQOd_QvZ(hInTetl5(?v^;I7S7Tt6Y(g3pVALwQ9yuC3n^*4+{dq9wcq_ z*nRh%9 z6c6ljv2D|x?tOo!wAKoaaG8*Gy$lWFp=HYwlq8)*j%**3xIOFk?zyp2o3B4L^=s8%*FZ&=AG|&e8(B)V6dMX(&p7im z*+!22nxbl{gHlZBtP<@T2NOQ5KjXso>Kf0C; zva8BuRt}97^|-@&Qb~nRw}}5?*1DM+we;)1hI1B~NbP;H{7>WorI?Rv?yk{tZz&7# z5s6cL8l?P*FCk*ldEV1C&oiv%eq-fyHcl|jvEJJ7ewyU{1!ZezNiPXVEY4dMw=I*M zb;8dLS`!Wh=vpd^9-^4$USc1|-&`xP?x=2)fLvrP<4aQ}rTwfS zrcYE3nR1+nXg;*=`s(-6t^G_-_w%BslrNe4xfGYj>USl&FfcGMc)I$ztaD0e0su^o BJ@^0s literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-29x29@3x.png b/src-tauri/icons/ios/AppIcon-29x29@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..f052a61eee9fba9ebc159a05a17c1635ffd72698 GIT binary patch literal 1039 zcmeAS@N?(olHy`uVBq!ia0y~yUcR-~hIvsqZs#RgluhHpWJhwoJTKYJ(J zHoN8QtQ@l^b0pchcn<5w@3Vh?`|i=CkKO?rGp2KJOfS$pq#AQ*DaZ5z&gn`qhg4&_ z3OJDjH4mxY+5hXu4}tmf=f8WsijSZF=*N#6Z`{AH9uvBE|Nidn+szH<`W?+NyZz(m z;>F5=D??mXhHT=?JJ(js-Er#q^YriUfB%ktEv2rm{^;GibE`c3Wb~B2yn3ZIDO<72 zdTyU-gRJx-GcCp52X1Gd7awY!pv~QSD2(ac&7v?KL7mUKyOoAgy3As*R#M%ycdzKtq(E(UdmEdS%?nxu+gg`cPg?s` ztc1NsWB0_hE#22v-OXFhm8W%yN$&OM&&6-I<$V4BVc-4t(w?H%%DEdF7CM-#uBqbx zS#$60+^1UuR34kutnueQ{P4r^goP(l9^JfmQqypAZC*e>cf7c+)Sg(6eTM`lt(S25 zbLqgrgN+rnwP*QaMAm;@RxfL?Xl>YPO>ylfQ9f01=9xBf>CEfSZ2VgFcmHwG2F91a ze%^@$U1OOl&zSM7LxRQp`h<*cnS2kz#XZ@YLyEBwrA?T+1x(v!{#U&(v8 zacb)+efPx~wY9Z7FLrpeBsO0utg6y7+P&ZoOITiIGs}#IT~TWoqRW`CW?lWN>SLYU z>9+1vgMkFk6zir1(|9NLur50pcw?hv&JEFkfV#G?6@`U~C4V2^u(`CTUsP(}dijK! z_>kFY+7DMXxvslf+hXpz;hfvysvU_w66=-3o=s#+*zdUb`s-ZrI~(3jyY9s<+h7tM z5~4S~c5(RieOvhQLbff;*?x#2>|;eRceuDtl)Ambs)pvG)tsAauDfkGF@3gF9Vg%X zudgec{XAz$Xvjz({1y7^E7Mc)gIeh_K0Lx3eKV}A*ZZpRaz!n^_`!BD_uf5wD)MAo z6#31|cGRzvyk!trxc@@e+_`gIjZ$Y8+?I*Cbv5$ Sn-~}v7(8A5T-G@yGywo9J?(A) literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-40x40@1x.png b/src-tauri/icons/ios/AppIcon-40x40@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8f1b06fd2a2d8e94298f6f19e010baef5cded8 GIT binary patch literal 540 zcmeAS@N?(olHy`uVBq!ia0y~yV9)?z4mJh`hMs>rav2yHAA7nuhE&{oJ7fQ*gANi$ z_e-eqPhelr@AaH9L`!OwNl1v+RQ3gmto#jbhnYR}ZL7Y7%&LC==1kf*uQHV!gW~UJ zQdG*0|C#gt{-k|(^X$JI^}0OWn>ovYcLk&A0;ZkoyxR{q-hKbQ`qcB!DUo8LT&>gX zZ&##V;ca)0T7SJ{XN=SJ(@%}QR_#4+x#Mo$(gJ}83&Rz7McZ31zjT@R{9=N^g4bVH zUGa2&n#s0cs+VdBZv#W`>M5tXPN!{tGwGnca%uxd?&_)AmAIpSo;(b@$G-b+o`y`3R|&_$XA>&q6-AeO+)<85VK3huyX0ro>Z>*C>XSVm zc%Oa#IYQ5kZ4djzuY0q$p3<9X5E`~R)F_uNn8`Em_P4_UiSqk5l$*`oSkrSmtEc>L yWy^*`JN=e_-uZdKztH83rVH4vH2fF%AnyFZkaa`1Wi1B0ilpUXO@geCxYvGz0o literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-40x40@2x-1.png b/src-tauri/icons/ios/AppIcon-40x40@2x-1.png new file mode 100644 index 0000000000000000000000000000000000000000..6fe21815bac940c44aff346be0cd50881f3a22b7 GIT binary patch literal 965 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 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-512@2x.png b/src-tauri/icons/ios/AppIcon-512@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..4e00a0c41920c808d4ba76a60da577743ba3afc8 GIT binary patch literal 13729 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 yaHt|BYdl`T>T7iUc&x&zAL14C2p}rd9mYIL z`<%c_pBV!dFTb?l;sfS@1(yOYuFwbwT(EG_r57e&Y8a}%gv_dbezN0a>G}D#C)IX) z)}22inf7kxjg$KC-~G1xotJn2`t|Gb&04GN@)#QgksxCa0|N3Su%JK&WhBVF<4;v} zwekD+@1MPVd2-LbeQx```}_Ot?@LNb8Zt98rxg@j=;`a5wQ-}Nv5ig4&gzRR4*h&^ z{``54Wp>}ce;0gUGHb>R18#2aw5%+y1Bx#mK2&5{HD6v{{@gliYwK(?Gc%w1di#c2 zkAVKZz99Eiy(X>l^77N=iZmJh{r#C>kL zW5n~OFuYovJ%8@pzwEb`D+bNv@N-*{u|pITNm5 z&R0L->cKy0*}KV;h1bt3eaTpUYErGUS;W+z(;NzU=ZI}OwP=UTB}ujE)`2b?7XR9I z-88^q`?hWWELWt}&5ge#WoK;ceAWwxozL7uU|{E zcWAXymoHylp?NQKe)wADh=Nk%RAH&pdEL8rTL-sHUz-s&J+nHLmHitFHaJ;z-dH1bC$C}in#o$7yKHS{tx64KvQXb~D#hB;FG_v$mJc^}B)Q6@ zo2G8j+I*svQR%rGlU^-!1lwTflC^n)i`FFS2BG%9st=dCMmep57O>#RjnFN$$)5AIYxasB#r z-G{I4S4pOO%-gb^W7^}(dFM^fpSb${wyGC9J9{AS>Z-+cb+$%#_cV3<79vnw^@nf6PDc^UTfW^WH!~r5Fb5mNj23k4)zEx!CskAjbg&WN<@* mYz9my5UCs!Y{*`=f9G$*e^=D*KWAWIVDNPHb6Mw<&;$TlY?6Nf literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-60x60@3x.png b/src-tauri/icons/ios/AppIcon-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..fa35909e6d08b2aced0bc9093b27e75299db069e GIT binary patch literal 2024 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 literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-76x76@2x.png b/src-tauri/icons/ios/AppIcon-76x76@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..780ead8ef60528549a4ba8a912ebdbec91c52cbf GIT binary patch literal 1716 zcmeAS@N?(olHy`uVBq!ia0y~yV3+~I9Bd2>3=)SF6d4%Usy$sCLn>~)oojE9<0;a9 z-jDO-#L3F)?tUst4o*%gj!q373=>;Cnq&-%ik`Sky8G+wyU^sadprLBy7#Vn|N5*~ zn(OCD8sE3RTl?$F%X#b9uiwvmK+tv%YePaq0s{vd2!fa>98$$0n!{x6?Csw^eR@<* zUVi`n@4tR!y?_7y?E3b$wl(Y5zyJOE;>Ez%Z{I%c&3>%^>&gGqckjjqt9gF?^Cw4M zUcR&b*ntBM!CQX*{Q2y9K=Q$R_wK#<_wQa_e*W8s4;8=9w>L9O)7I8L`=TwuRO*|` zm9uAig;(CXD4=z6*|KEM$?35*%6V7P%TK$>iCHq6==Cx~LO`)B4@5ZVmPl`X2736s(Y)V9E+dkXu^GDOE7e~T;sV(QF8L1JAti7&YkP~{C3_dzdwRH zYF&D+9?z_Tlx7@Xvu>T0{^5&mHceM6c9h5-T_tw#hSsJhsut^1-8M*Fp10!c?9NV3 zmety)zU^M8`8m^@`ykh}?99xQKR<`8ohE-!=)}}#3LQ%=v=dT3O+1~-Vr^~x+wkV~ zYzs@v%y(KZeovk}`QVwW0%w$WMuo51ym|Ar`}gnH@IHV3T7hCQC%L?q z-?3}grzpMO`PrV%>Vi4}TYk}*t9<+&hRNfV}@Ao?n;Lk?7S~ctCSIZp4?sWQ?>`n`9r?dq)f>!;i|Y$?**UQ$sJaq4sSKlPof3mBGMYFawg zTYk-?6_u(1m-q1T&YktYRqm|RiK~`PPiD^b->h`?!pbU>`QIh8wIi{wr*RNlls-`MNFv@1dxU9EnJMCBclS6DqOjnGn&#KEFV%yDl z4%)n18=7*{JL;r>&V#)qEE*a0ta6doa-FcUa?Qy5s zFTN{GS3Tt!d3)zc8x`*&Mwg4zU9WfUck&cfm^Go5J;wb@K1>C#B|c zFSRmM=1DNhzxWoi~WcCro3OaJ>^C?HQI<7Q0^Y??V2Z z+}yR<8|U6DSjvBD((12UwIo-yYhQGlsJ-Kvx{y!cqQ8rnc>O1x-fkWf7#@D+tMYzO4iZ~|L aGkAYIx$TU-n;!!M1B0ilpUXO@geCx)L?nFx literal 0 HcmV?d00001 diff --git a/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png b/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e790f66dd06f8ec7cf6248157c6e87e29bec82 GIT binary patch literal 1866 zcmeAS@N?(olHy`uVBq!ia0y~yU|0^q9Bd2>3?*VdZx|TZ1wCCHLn>~)ox9OY$6KUr zdz{lJ=X1;gj~P#RdI$(i6cAKUoG7R;NkP%U?;P_72Dt{0qIZ9*=a!|<&Gz|TQtli2 z_4``W?55&1iO*)Qy0yFP?W_NP{`|>hkh^p~n&AXz!<>dW3@1223@8QWlO~K)_uIeYe)f@4xhX;zYrFdziiyet&x22 zswPP;Ted8xs_K@Sx_V{t#LX7{{r&My)242eb#`_(Gd51{?(W|6@Wjo^Rr_}D_LhJD z{{6YQ@|v1E-@bpptjeJ9Ts%ts-u?Tx-@eVwRZfv(V`qQ+;zft4X3@XnhYmUUFLk*v z-*eWlc6%F}3gu-Nf|5#0ziKlx@J_qz&M6>bxqnfr{7IJ3gtj@nt~=f0ua^szl$V>w zRw<-ATiV(AseYZhckf;||Bp{BZ?ADTt;#H4QQF?2A!oU_@59#WCC}e~yCf)LdA9w@ z-=jxee-)@^3bVSNn>1+`Ps}VejiRsvFJETc^#{Kp0hGCI=c8<)LyS##pSKLRlPzd7Pg(Z?OGErpU+e@Yx?uvn5hp<6I`hZ|Z*RhpEe-tV6w}4mtY6O_UZUvub!kzg%GoV>d#z7x+_Wj^)!}O>f(erBzYPX%Q7nh~DoKM{s5w%=Nz3J9{T|rUD)raRa&CGMZ?-Ru8;JQ4kR&vWf z7eAK2QoN<7iu3Z;eR|s95-OW{uh>^=?fLWPCmOe{h>@>buCaaY0-?amE4m*auX;Oq zvheObd$#!9p7$!t-9f~0mxlio?aETNeWf8+cD;M{?AXnnKi+gN;Hvb!`<7#6rmk{& zpUtvQEmFC4zb(2)M|;_KAKSH9e?S|1qZ zvu5j~4<8CHEX_ahGQy{GQA*j&(m7?7Uw(xx_!V2}wRGjIg5Pe*Pj#Zdg&kd?8R9r! zS9pyB=bWw~Uw zcR5xyJ(h4g&tmv@sA9x zCVj-}h{mi#m#PDvaTpe{T~czZz8SW_zgjl-`L4{$6}O-DRGr&VE&lYa;T5Z;;jy1r zmM-a@?|AOOtgNT9mTQkKdXhKk^}_o*F3MLqGk3l`&GB)rLny~8{e+(C=NC`C^zu=? z_u1{#+q&tSnqED3p1(+1SYW3}@bS#G4yRVWx^_oTzs~jCfg?JX3bqF8ZCSBk?+erO zTjG-5E#oPTOPLmB9a&?&F~;r8o^s|=DZ%sS&S`NrIPLdXZNEf& z@$0!!MnRqdswYjGve>;gHwD>i-CFTVO8hH>s~`K7z28D|6wu=Q^9p zCJEfWef!=UN#0CxqlTR2cN(8RayD%+ULCZSNQ=|t6miL z1|02Kw0Wc5oj1KZ7^~Wt@5y%%Czm&@}~{w^j}&^|Lnd}(Wav&F2>>| z=jbecdB-bNAETGIIHj6roRD0&U}Hz;oQa%LlV_~4RCbKy*52vaIETUKHMj!7StY<_ m!3?B&2Az+!I=bNfkMWdsb)oIH@G}ey3=E#GelF{r5}E+@YLWf` literal 0 HcmV?d00001 diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs new file mode 100644 index 0000000..f1c2304 --- /dev/null +++ b/src-tauri/src/lib.rs @@ -0,0 +1,411 @@ +use byteorder::{BigEndian, WriteBytesExt, ReadBytesExt}; +use pcsc::{Context, Protocols, Scope, ShareMode}; +use serde::{Deserialize, Serialize}; +use std::io::Cursor; +// use tauri::State; + +// --- Constants --- + +// The Rescue Application ID (AID) from src/rescue.c +const RESCUE_AID: &[u8] = &[0xA0, 0x58, 0x3F, 0xC1, 0x9B, 0x7E, 0x4F, 0x21]; + +// APDU Instructions +const INS_WRITE: u8 = 0x1C; +const INS_SECURE: u8 = 0x1D; +const INS_READ: u8 = 0x1E; + +// PHY Tags from src/fs/phy.h +const TAG_VIDPID: u8 = 0x00; +const TAG_LED_GPIO: u8 = 0x04; +const TAG_LED_BRIGHTNESS: u8 = 0x05; +const TAG_OPTS: u8 = 0x06; +const TAG_UP_BTN: u8 = 0x08; // Presence Button Timeout +const TAG_USB_PRODUCT: u8 = 0x09; +const TAG_CURVES: u8 = 0x0A; +const TAG_LED_DRIVER: u8 = 0x0C; + +// Bitmasks for TAG_OPTS +const OPT_LED_DIMMABLE: u16 = 0x02; +const OPT_DISABLE_POWER_RESET: u16 = 0x04; +const OPT_LED_STEADY: u16 = 0x08; + +// Bitmasks for TAG_CURVES +const CURVE_SECP256K1: u32 = 0x08; + +// --- Data Structures --- + +#[derive(Serialize)] +struct DeviceInfo { + serial: String, + flash_used: u32, + flash_total: u32, + firmware_version: String, +} + +#[derive(Serialize, Deserialize, Debug, Default)] +struct AppConfig { + vid: String, + pid: String, + product_name: String, + led_gpio: u8, + led_brightness: u8, + touch_timeout: u8, + #[serde(skip_serializing_if = "Option::is_none")] + led_driver: Option, + // New Options + led_dimmable: bool, + power_cycle_on_reset: bool, + led_steady: bool, + enable_secp256k1: bool, +} + +// Partial config for writing only changed values +#[derive(Deserialize, Debug)] +struct AppConfigInput { + vid: Option, + pid: Option, + product_name: Option, + led_gpio: Option, + led_brightness: Option, + touch_timeout: Option, + led_driver: Option, + led_dimmable: Option, + power_cycle_on_reset: Option, + led_steady: Option, + enable_secp256k1: Option, +} + +#[derive(Serialize)] +struct FullDeviceStatus { + info: DeviceInfo, + config: AppConfig, + secure_boot: bool, + secure_lock: bool, +} + +// Custom Error type for easy returning to frontend +#[derive(Debug, thiserror::Error)] +enum AppError { + #[error("PCSC Error: {0}")] + Pcsc(#[from] pcsc::Error), + #[error("IO/Hex Error: {0}")] + Io(String), + #[error("Device Error: {0}")] + Device(String), +} + +// Allow error to be serialized to string for Tauri +impl serde::Serialize for AppError { + fn serialize(&self, serializer: S) -> Result + where + S: serde::Serializer, + { + serializer.serialize_str(&self.to_string()) + } +} + +// --- Helper Functions --- + +/// Connects to the first available reader and selects the Rescue Applet +fn connect_and_select() -> Result<(pcsc::Card, Vec), AppError> { + let ctx = Context::establish(Scope::User)?; + + // List readers + let mut readers_buf = [0; 2048]; + let mut readers = ctx.list_readers(&mut readers_buf)?; + + // Use the first reader found + let reader = readers.next().ok_or_else(|| AppError::Device("No Smart Card Reader found.".into()))?; + + // Connect + let card = ctx.connect(reader, ShareMode::Shared, Protocols::ANY)?; + + // Select Applet APDU: 00 A4 04 04 [Len] [AID] + let mut apdu = vec![0x00, 0xA4, 0x04, 0x04, RESCUE_AID.len() as u8]; + apdu.extend_from_slice(RESCUE_AID); + + let mut rx_buf = [0; 256]; + let rx = card.transmit(&apdu, &mut rx_buf)?; + + // Check Success (0x90 0x00) + if !rx.ends_with(&[0x90, 0x00]) { + return Err(AppError::Device("Rescue Applet not found on device. Is it in FIDO mode?".into())); + } + + Ok((card, rx.to_vec())) +} + +// --- Tauri Commands --- + +#[tauri::command] +fn read_device_details() -> Result { + let (card, select_resp) = connect_and_select()?; + + // 1. Parse Basic Info (Same as your get_device_info) + if select_resp.len() < 14 { + return Err(AppError::Device("Invalid select response".into())); + } + let version_major = select_resp[2]; + let version_minor = select_resp[3]; + let serial_str = hex::encode_upper(&select_resp[4..12]); + + // 2. Read Flash Info (APDU: 80 1E 02 00 00) + let mut rx_buf = [0; 256]; + let rx_flash = card.transmit(&[0x80, INS_READ, 0x02, 0x00, 0x00], &mut rx_buf)?; + if !rx_flash.ends_with(&[0x90, 0x00]) { return Err(AppError::Device("Failed to read flash".into())); } + + let mut rdr = Cursor::new(&rx_flash[..rx_flash.len()-2]); + let _free = rdr.read_u32::().unwrap_or(0); + let used = rdr.read_u32::().unwrap_or(0); + let total = rdr.read_u32::().unwrap_or(0); + + // 3. Read Secure Boot Status (APDU: 80 1E 03 00 00) -> [Enabled(1), Locked(1), Key(1)...] + let rx_secure = card.transmit(&[0x80, INS_READ, 0x03, 0x00, 0x00], &mut rx_buf)?; + let (sb_enabled, sb_locked) = if rx_secure.ends_with(&[0x90, 0x00]) && rx_secure.len() >= 4 { + (rx_secure[0] != 0, rx_secure[1] != 0) + } else { + (false, false) + }; + + // 4. Read PHY Config (APDU: 80 1E 01 01 00) -> TLV Data + let rx_phy = card.transmit(&[0x80, INS_READ, 0x01, 0x01, 0x00], &mut rx_buf)?; + if !rx_phy.ends_with(&[0x90, 0x00]) { return Err(AppError::Device("Failed to read config".into())); } + + // Parse TLV + let mut config = AppConfig::default(); + let data = &rx_phy[..rx_phy.len()-2]; + let mut i = 0; + while i < data.len() { + if i + 2 > data.len() { break; } + let tag = data[i]; + let len = data[i+1] as usize; + i += 2; + if i + len > data.len() { break; } + let val = &data[i..i+len]; + + match tag { + TAG_VIDPID => { + if val.len() == 4 { + let vid = u16::from_be_bytes([val[0], val[1]]); + let pid = u16::from_be_bytes([val[2], val[3]]); + config.vid = format!("{:04X}", vid); + config.pid = format!("{:04X}", pid); + } + }, + TAG_LED_GPIO => if !val.is_empty() { config.led_gpio = val[0]; }, + TAG_LED_BRIGHTNESS => if !val.is_empty() { config.led_brightness = val[0]; }, + TAG_UP_BTN => if !val.is_empty() { config.touch_timeout = val[0]; }, + TAG_USB_PRODUCT => { + // Remove null terminator if present + let s = std::str::from_utf8(val).unwrap_or("").trim_matches(char::from(0)); + config.product_name = s.to_string(); + }, + TAG_OPTS => if val.len() >= 2 { + let opts = u16::from_be_bytes([val[0], val[1]]); + + config.led_dimmable = (opts & OPT_LED_DIMMABLE) != 0; + config.power_cycle_on_reset = (opts & OPT_DISABLE_POWER_RESET) == 0; + config.led_steady = (opts & OPT_LED_STEADY) != 0; + }, + TAG_CURVES => if val.len() >= 4 { + let curves = u32::from_be_bytes([val[0], val[1], val[2], val[3]]); + config.enable_secp256k1 = (curves & CURVE_SECP256K1) != 0; + }, + TAG_LED_DRIVER => if !val.is_empty() { config.led_driver = Some(val[0]); }, + _ => {} + } + i += len; + } + + Ok(FullDeviceStatus { + info: DeviceInfo { + serial: serial_str, + flash_used: used / 1024, + flash_total: total / 1024, + firmware_version: format!("{}.{}", version_major, version_minor), + }, + config, + secure_boot: sb_enabled, + secure_lock: sb_locked, + }) +} + +#[tauri::command] +fn get_device_info() -> Result { + let (card, select_resp) = connect_and_select()?; + + // 1. Parse Version & Serial from Select Response (see src/rescue.c) + // Response: [MCU, PROD, VER_MAJ, VER_MIN, SERIAL(8 bytes)..., 90, 00] + if select_resp.len() < 14 { + return Err(AppError::Device("Invalid response from device".into())); + } + + let version_major = select_resp[2]; + let version_minor = select_resp[3]; + let serial_bytes = &select_resp[4..12]; + let serial_str = hex::encode_upper(serial_bytes); + + // 2. Read Flash Info + // APDU: 80 1E 02 00 00 (Read Flash Info) + let apdu_read = [0x80, INS_READ, 0x02, 0x00, 0x00]; + let mut rx_buf = [0; 256]; + let rx = card.transmit(&apdu_read, &mut rx_buf)?; + + if !rx.ends_with(&[0x90, 0x00]) { + return Err(AppError::Device("Failed to read flash info".into())); + } + + // Response: [Free(4), Used(4), Total(4), Files(4), Size(4), 90, 00] + // We need 'Used' (index 4) and 'Total' (index 8) + // Data is Big Endian + let mut rdr = Cursor::new(&rx[..rx.len()-2]); + let _free = rdr.read_u32::().unwrap_or(0); + let used = rdr.read_u32::().unwrap_or(0); + let total = rdr.read_u32::().unwrap_or(0); + + Ok(DeviceInfo { + serial: serial_str, + flash_used: used / 1024, // Convert to KB + flash_total: total / 1024, + firmware_version: format!("{}.{}", version_major, version_minor), + }) +} + +#[tauri::command] +fn write_config(config: AppConfigInput) -> Result { + // 1. Construct TLV Blob + let mut tlv = Vec::new(); + + // VID:PID (Tag 0x00) + if let (Some(vid_str), Some(pid_str)) = (&config.vid, &config.pid) { + let vid = u16::from_str_radix(vid_str, 16).map_err(|_| AppError::Io("Invalid VID".into()))?; + let pid = u16::from_str_radix(pid_str, 16).map_err(|_| AppError::Io("Invalid PID".into()))?; + + tlv.push(TAG_VIDPID); + tlv.push(0x04); + tlv.write_u16::(vid).unwrap(); + tlv.write_u16::(pid).unwrap(); + } + + // LED GPIO (Tag 0x04) + if let Some(val) = config.led_gpio { + tlv.push(TAG_LED_GPIO); + tlv.push(0x01); + tlv.push(val); + } + + // LED Brightness (Tag 0x05) + if let Some(val) = config.led_brightness { + tlv.push(TAG_LED_BRIGHTNESS); + tlv.push(0x01); + tlv.push(val); + } + + // Touch Timeout (Tag 0x08) + if let Some(val) = config.touch_timeout { + tlv.push(TAG_UP_BTN); + tlv.push(0x01); + tlv.push(val); + } + + // Options (Tag 0x06) + if let (Some(dim), Some(cycle), Some(steady)) = (config.led_dimmable, config.power_cycle_on_reset, config.led_steady) { + let mut opts: u16 = 0; // Changed from u8 to u16 + + if dim { opts |= OPT_LED_DIMMABLE; } + + // Logic check: "Power Cycle On" means the DISABLE flag is NOT set. + // If "Power Cycle On" is false, we SET the DISABLE flag. + if !cycle { opts |= OPT_DISABLE_POWER_RESET; } + + if steady { opts |= OPT_LED_STEADY; } + + tlv.push(TAG_OPTS); + tlv.push(0x02); + tlv.write_u16::(opts).unwrap(); + } + + // Curves (Tag 0x0A) + if let Some(enabled) = config.enable_secp256k1 { + let mut curves: u32 = 0; + if enabled { curves |= CURVE_SECP256K1; } + + tlv.push(TAG_CURVES); + tlv.push(0x04); // Length is 4 + tlv.write_u32::(curves).unwrap(); + } + + // LED Driver (Tag 0x0C) + if let Some(val) = config.led_driver { + tlv.push(TAG_LED_DRIVER); + tlv.push(0x01); // Length 1 + tlv.push(val); + } + + // Product Name (Tag 0x09) + if let Some(name) = config.product_name { + if !name.is_empty() { + let name_bytes = name.as_bytes(); + let len = name_bytes.len() + 1; + if len > 32 { return Err(AppError::Io("Product name too long".into())); } + + tlv.push(TAG_USB_PRODUCT); + tlv.push(len as u8); + tlv.extend_from_slice(name_bytes); + tlv.push(0x00); + } + } + + // 2. Connect and Send + if tlv.is_empty() { + return Ok("No changes to apply".into()); + } + + let (card, _) = connect_and_select()?; + + // APDU: 80 1C 01 00 [Lc] [Data] + let mut apdu = vec![0x80, INS_WRITE, 0x01, 0x00, tlv.len() as u8]; + apdu.extend_from_slice(&tlv); + + let mut rx_buf = [0; 256]; + let rx = card.transmit(&apdu, &mut rx_buf)?; + + if rx.ends_with(&[0x90, 0x00]) { + Ok("Configuration Applied Successfully".into()) + } else { + Err(AppError::Device(format!("Write failed: {:02X?}", rx))) + } +} + +#[tauri::command] +fn enable_secure_boot(lock: bool) -> Result { + let (card, _) = connect_and_select()?; + + // APDU: 80 1D [KeyIndex] [LockBool] 00 + // KeyIndex = 0 (Default), LockBool = 1 if true + let lock_byte = if lock { 0x01 } else { 0x00 }; + let apdu = [0x80, INS_SECURE, 0x00, lock_byte, 0x00]; + + let mut rx_buf = [0; 256]; + let rx = card.transmit(&apdu, &mut rx_buf)?; + + if rx.ends_with(&[0x90, 0x00]) { + Ok("Secure Boot Enabled".into()) + } else { + Err(AppError::Device(format!("Secure Boot failed: {:02X?}", rx))) + } +} + +#[cfg_attr(mobile, tauri::mobile_entry_point)] +pub fn run() { + tauri::Builder::default() + .plugin(tauri_plugin_opener::init()) + .invoke_handler(tauri::generate_handler![ + read_device_details, + get_device_info, + write_config, + enable_secure_boot + ]) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} \ No newline at end of file diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs new file mode 100644 index 0000000..9cc8e41 --- /dev/null +++ b/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() { + pico_forge_lib::run() +} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json new file mode 100644 index 0000000..8b435c7 --- /dev/null +++ b/src-tauri/tauri.conf.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://schema.tauri.app/config/2", + "productName": "pico-forge", + "version": "0.1.0", + "identifier": "in.suyogtandel.pico-forge", + "build": { + "beforeDevCommand": "deno task dev", + "devUrl": "http://localhost:1420", + "beforeBuildCommand": "deno task build", + "frontendDist": "../build" + }, + "app": { + "windows": [ + { + "title": "pico-forge", + "width": 1280, + "height": 720, + "decorations": false, + "transparent": true + } + ], + "security": { + "csp": null + } + }, + "bundle": { + "active": true, + "targets": "all", + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ] + } +} diff --git a/src/app.css b/src/app.css new file mode 100644 index 0000000..ee2d8d5 --- /dev/null +++ b/src/app.css @@ -0,0 +1,121 @@ +@import "tailwindcss"; + +@import "tw-animate-css"; + +@custom-variant dark (&:is(.dark *)); + +:root { + --radius: 0.625rem; + --background: oklch(1 0 0); + --foreground: oklch(0.141 0.005 285.823); + --card: oklch(1 0 0); + --card-foreground: oklch(0.141 0.005 285.823); + --popover: oklch(1 0 0); + --popover-foreground: oklch(0.141 0.005 285.823); + --primary: oklch(0.21 0.006 285.885); + --primary-foreground: oklch(0.985 0 0); + --secondary: oklch(0.967 0.001 286.375); + --secondary-foreground: oklch(0.21 0.006 285.885); + --muted: oklch(0.967 0.001 286.375); + --muted-foreground: oklch(0.552 0.016 285.938); + --accent: oklch(0.967 0.001 286.375); + --accent-foreground: oklch(0.21 0.006 285.885); + --destructive: oklch(0.577 0.245 27.325); + --border: oklch(0.92 0.004 286.32); + --input: oklch(0.92 0.004 286.32); + --ring: oklch(0.705 0.015 286.067); + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.398 0.07 227.392); + --chart-4: oklch(0.828 0.189 84.429); + --chart-5: oklch(0.769 0.188 70.08); + --sidebar: oklch(0.985 0 0); + --sidebar-foreground: oklch(0.141 0.005 285.823); + --sidebar-primary: oklch(0.21 0.006 285.885); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.967 0.001 286.375); + --sidebar-accent-foreground: oklch(0.21 0.006 285.885); + --sidebar-border: oklch(0.92 0.004 286.32); + --sidebar-ring: oklch(0.705 0.015 286.067); +} + +.dark { + --background: oklch(0.141 0.005 285.823); + --foreground: oklch(0.985 0 0); + --card: oklch(0.21 0.006 285.885); + --card-foreground: oklch(0.985 0 0); + --popover: oklch(0.21 0.006 285.885); + --popover-foreground: oklch(0.985 0 0); + --primary: oklch(0.92 0.004 286.32); + --primary-foreground: oklch(0.21 0.006 285.885); + --secondary: oklch(0.274 0.006 286.033); + --secondary-foreground: oklch(0.985 0 0); + --muted: oklch(0.274 0.006 286.033); + --muted-foreground: oklch(0.705 0.015 286.067); + --accent: oklch(0.274 0.006 286.033); + --accent-foreground: oklch(0.985 0 0); + --destructive: oklch(0.704 0.191 22.216); + --border: oklch(1 0 0 / 10%); + --input: oklch(1 0 0 / 15%); + --ring: oklch(0.552 0.016 285.938); + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.769 0.188 70.08); + --chart-4: oklch(0.627 0.265 303.9); + --chart-5: oklch(0.645 0.246 16.439); + --sidebar: oklch(0.21 0.006 285.885); + --sidebar-foreground: oklch(0.985 0 0); + --sidebar-primary: oklch(0.488 0.243 264.376); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.274 0.006 286.033); + --sidebar-accent-foreground: oklch(0.985 0 0); + --sidebar-border: oklch(1 0 0 / 10%); + --sidebar-ring: oklch(0.552 0.016 285.938); +} + +@theme inline { + --radius-sm: calc(var(--radius) - 4px); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-popover: var(--popover); + --color-popover-foreground: var(--popover-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); + --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-border: var(--border); + --color-input: var(--input); + --color-ring: var(--ring); + --color-chart-1: var(--chart-1); + --color-chart-2: var(--chart-2); + --color-chart-3: var(--chart-3); + --color-chart-4: var(--chart-4); + --color-chart-5: var(--chart-5); + --color-sidebar: var(--sidebar); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-ring: var(--sidebar-ring); +} + +@layer base { + * { + @apply border-border outline-ring/50; + } + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/src/app.html b/src/app.html new file mode 100644 index 0000000..92e7e33 --- /dev/null +++ b/src/app.html @@ -0,0 +1,13 @@ + + + + + + + Tauri + SvelteKit + Typescript App + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-action.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-action.svelte new file mode 100644 index 0000000..a005691 --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-action.svelte @@ -0,0 +1,18 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-cancel.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-cancel.svelte new file mode 100644 index 0000000..a7b0cf7 --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-cancel.svelte @@ -0,0 +1,18 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-content.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-content.svelte new file mode 100644 index 0000000..236bcad --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-content.svelte @@ -0,0 +1,29 @@ + + + + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-description.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-description.svelte new file mode 100644 index 0000000..2ec67dc --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-description.svelte @@ -0,0 +1,17 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-footer.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-footer.svelte new file mode 100644 index 0000000..f78b97a --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-footer.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-header.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-header.svelte new file mode 100644 index 0000000..1835d91 --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-header.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-overlay.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-overlay.svelte new file mode 100644 index 0000000..a64ee76 --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-overlay.svelte @@ -0,0 +1,20 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-portal.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-portal.svelte new file mode 100644 index 0000000..f0a19a8 --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-title.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-title.svelte new file mode 100644 index 0000000..7ef2b5f --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-title.svelte @@ -0,0 +1,17 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog-trigger.svelte b/src/lib/components/ui/alert-dialog/alert-dialog-trigger.svelte new file mode 100644 index 0000000..b22d1d5 --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog-trigger.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/alert-dialog.svelte b/src/lib/components/ui/alert-dialog/alert-dialog.svelte new file mode 100644 index 0000000..7ea78bb --- /dev/null +++ b/src/lib/components/ui/alert-dialog/alert-dialog.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/alert-dialog/index.ts b/src/lib/components/ui/alert-dialog/index.ts new file mode 100644 index 0000000..269538e --- /dev/null +++ b/src/lib/components/ui/alert-dialog/index.ts @@ -0,0 +1,37 @@ +import Root from "./alert-dialog.svelte"; +import Portal from "./alert-dialog-portal.svelte"; +import Trigger from "./alert-dialog-trigger.svelte"; +import Title from "./alert-dialog-title.svelte"; +import Action from "./alert-dialog-action.svelte"; +import Cancel from "./alert-dialog-cancel.svelte"; +import Footer from "./alert-dialog-footer.svelte"; +import Header from "./alert-dialog-header.svelte"; +import Overlay from "./alert-dialog-overlay.svelte"; +import Content from "./alert-dialog-content.svelte"; +import Description from "./alert-dialog-description.svelte"; + +export { + Root, + Title, + Action, + Cancel, + Portal, + Footer, + Header, + Trigger, + Overlay, + Content, + Description, + // + Root as AlertDialog, + Title as AlertDialogTitle, + Action as AlertDialogAction, + Cancel as AlertDialogCancel, + Portal as AlertDialogPortal, + Footer as AlertDialogFooter, + Header as AlertDialogHeader, + Trigger as AlertDialogTrigger, + Overlay as AlertDialogOverlay, + Content as AlertDialogContent, + Description as AlertDialogDescription, +}; diff --git a/src/lib/components/ui/alert/alert-description.svelte b/src/lib/components/ui/alert/alert-description.svelte new file mode 100644 index 0000000..8b56aed --- /dev/null +++ b/src/lib/components/ui/alert/alert-description.svelte @@ -0,0 +1,23 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/alert/alert-title.svelte b/src/lib/components/ui/alert/alert-title.svelte new file mode 100644 index 0000000..77e45ad --- /dev/null +++ b/src/lib/components/ui/alert/alert-title.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/alert/alert.svelte b/src/lib/components/ui/alert/alert.svelte new file mode 100644 index 0000000..2b2eff9 --- /dev/null +++ b/src/lib/components/ui/alert/alert.svelte @@ -0,0 +1,44 @@ + + + + + diff --git a/src/lib/components/ui/alert/index.ts b/src/lib/components/ui/alert/index.ts new file mode 100644 index 0000000..97e21b4 --- /dev/null +++ b/src/lib/components/ui/alert/index.ts @@ -0,0 +1,14 @@ +import Root from "./alert.svelte"; +import Description from "./alert-description.svelte"; +import Title from "./alert-title.svelte"; +export { alertVariants, type AlertVariant } from "./alert.svelte"; + +export { + Root, + Description, + Title, + // + Root as Alert, + Description as AlertDescription, + Title as AlertTitle, +}; diff --git a/src/lib/components/ui/badge/badge.svelte b/src/lib/components/ui/badge/badge.svelte new file mode 100644 index 0000000..e3164ba --- /dev/null +++ b/src/lib/components/ui/badge/badge.svelte @@ -0,0 +1,50 @@ + + + + + + {@render children?.()} + diff --git a/src/lib/components/ui/badge/index.ts b/src/lib/components/ui/badge/index.ts new file mode 100644 index 0000000..64e0aa9 --- /dev/null +++ b/src/lib/components/ui/badge/index.ts @@ -0,0 +1,2 @@ +export { default as Badge } from "./badge.svelte"; +export { badgeVariants, type BadgeVariant } from "./badge.svelte"; diff --git a/src/lib/components/ui/button/button.svelte b/src/lib/components/ui/button/button.svelte new file mode 100644 index 0000000..a8296ae --- /dev/null +++ b/src/lib/components/ui/button/button.svelte @@ -0,0 +1,82 @@ + + + + +{#if href} +
+ {@render children?.()} + +{:else} + +{/if} diff --git a/src/lib/components/ui/button/index.ts b/src/lib/components/ui/button/index.ts new file mode 100644 index 0000000..fb585d7 --- /dev/null +++ b/src/lib/components/ui/button/index.ts @@ -0,0 +1,17 @@ +import Root, { + type ButtonProps, + type ButtonSize, + type ButtonVariant, + buttonVariants, +} from "./button.svelte"; + +export { + Root, + type ButtonProps as Props, + // + Root as Button, + buttonVariants, + type ButtonProps, + type ButtonSize, + type ButtonVariant, +}; diff --git a/src/lib/components/ui/card/card-action.svelte b/src/lib/components/ui/card/card-action.svelte new file mode 100644 index 0000000..cc36c56 --- /dev/null +++ b/src/lib/components/ui/card/card-action.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/card/card-content.svelte b/src/lib/components/ui/card/card-content.svelte new file mode 100644 index 0000000..bc90b83 --- /dev/null +++ b/src/lib/components/ui/card/card-content.svelte @@ -0,0 +1,15 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/card/card-description.svelte b/src/lib/components/ui/card/card-description.svelte new file mode 100644 index 0000000..9b20ac7 --- /dev/null +++ b/src/lib/components/ui/card/card-description.svelte @@ -0,0 +1,20 @@ + + +

+ {@render children?.()} +

diff --git a/src/lib/components/ui/card/card-footer.svelte b/src/lib/components/ui/card/card-footer.svelte new file mode 100644 index 0000000..2d4d0f2 --- /dev/null +++ b/src/lib/components/ui/card/card-footer.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/card/card-header.svelte b/src/lib/components/ui/card/card-header.svelte new file mode 100644 index 0000000..2501788 --- /dev/null +++ b/src/lib/components/ui/card/card-header.svelte @@ -0,0 +1,23 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/card/card-title.svelte b/src/lib/components/ui/card/card-title.svelte new file mode 100644 index 0000000..7447231 --- /dev/null +++ b/src/lib/components/ui/card/card-title.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/card/card.svelte b/src/lib/components/ui/card/card.svelte new file mode 100644 index 0000000..99448cc --- /dev/null +++ b/src/lib/components/ui/card/card.svelte @@ -0,0 +1,23 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/card/index.ts b/src/lib/components/ui/card/index.ts new file mode 100644 index 0000000..4d3fce4 --- /dev/null +++ b/src/lib/components/ui/card/index.ts @@ -0,0 +1,25 @@ +import Root from "./card.svelte"; +import Content from "./card-content.svelte"; +import Description from "./card-description.svelte"; +import Footer from "./card-footer.svelte"; +import Header from "./card-header.svelte"; +import Title from "./card-title.svelte"; +import Action from "./card-action.svelte"; + +export { + Root, + Content, + Description, + Footer, + Header, + Title, + Action, + // + Root as Card, + Content as CardContent, + Description as CardDescription, + Footer as CardFooter, + Header as CardHeader, + Title as CardTitle, + Action as CardAction, +}; diff --git a/src/lib/components/ui/input/index.ts b/src/lib/components/ui/input/index.ts new file mode 100644 index 0000000..f47b6d3 --- /dev/null +++ b/src/lib/components/ui/input/index.ts @@ -0,0 +1,7 @@ +import Root from "./input.svelte"; + +export { + Root, + // + Root as Input, +}; diff --git a/src/lib/components/ui/input/input.svelte b/src/lib/components/ui/input/input.svelte new file mode 100644 index 0000000..ff1a4c8 --- /dev/null +++ b/src/lib/components/ui/input/input.svelte @@ -0,0 +1,52 @@ + + +{#if type === "file"} + +{:else} + +{/if} diff --git a/src/lib/components/ui/label/index.ts b/src/lib/components/ui/label/index.ts new file mode 100644 index 0000000..8bfca0b --- /dev/null +++ b/src/lib/components/ui/label/index.ts @@ -0,0 +1,7 @@ +import Root from "./label.svelte"; + +export { + Root, + // + Root as Label, +}; diff --git a/src/lib/components/ui/label/label.svelte b/src/lib/components/ui/label/label.svelte new file mode 100644 index 0000000..d71afbc --- /dev/null +++ b/src/lib/components/ui/label/label.svelte @@ -0,0 +1,20 @@ + + + diff --git a/src/lib/components/ui/popover/index.ts b/src/lib/components/ui/popover/index.ts new file mode 100644 index 0000000..b79d12e --- /dev/null +++ b/src/lib/components/ui/popover/index.ts @@ -0,0 +1,19 @@ +import Root from "./popover.svelte"; +import Close from "./popover-close.svelte"; +import Content from "./popover-content.svelte"; +import Trigger from "./popover-trigger.svelte"; +import Portal from "./popover-portal.svelte"; + +export { + Root, + Content, + Trigger, + Close, + Portal, + // + Root as Popover, + Content as PopoverContent, + Trigger as PopoverTrigger, + Close as PopoverClose, + Portal as PopoverPortal, +}; diff --git a/src/lib/components/ui/popover/popover-close.svelte b/src/lib/components/ui/popover/popover-close.svelte new file mode 100644 index 0000000..c360925 --- /dev/null +++ b/src/lib/components/ui/popover/popover-close.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/popover/popover-content.svelte b/src/lib/components/ui/popover/popover-content.svelte new file mode 100644 index 0000000..3d79f3c --- /dev/null +++ b/src/lib/components/ui/popover/popover-content.svelte @@ -0,0 +1,31 @@ + + + + + diff --git a/src/lib/components/ui/popover/popover-portal.svelte b/src/lib/components/ui/popover/popover-portal.svelte new file mode 100644 index 0000000..dd8265f --- /dev/null +++ b/src/lib/components/ui/popover/popover-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/popover/popover-trigger.svelte b/src/lib/components/ui/popover/popover-trigger.svelte new file mode 100644 index 0000000..586323c --- /dev/null +++ b/src/lib/components/ui/popover/popover-trigger.svelte @@ -0,0 +1,17 @@ + + + diff --git a/src/lib/components/ui/popover/popover.svelte b/src/lib/components/ui/popover/popover.svelte new file mode 100644 index 0000000..6b1aa5f --- /dev/null +++ b/src/lib/components/ui/popover/popover.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/scroll-area/index.ts b/src/lib/components/ui/scroll-area/index.ts new file mode 100644 index 0000000..e86a25b --- /dev/null +++ b/src/lib/components/ui/scroll-area/index.ts @@ -0,0 +1,10 @@ +import Scrollbar from "./scroll-area-scrollbar.svelte"; +import Root from "./scroll-area.svelte"; + +export { + Root, + Scrollbar, + //, + Root as ScrollArea, + Scrollbar as ScrollAreaScrollbar, +}; diff --git a/src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte b/src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte new file mode 100644 index 0000000..8f5d960 --- /dev/null +++ b/src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte @@ -0,0 +1,31 @@ + + + + {@render children?.()} + + diff --git a/src/lib/components/ui/scroll-area/scroll-area.svelte b/src/lib/components/ui/scroll-area/scroll-area.svelte new file mode 100644 index 0000000..86ee032 --- /dev/null +++ b/src/lib/components/ui/scroll-area/scroll-area.svelte @@ -0,0 +1,43 @@ + + + + + {@render children?.()} + + {#if orientation === "vertical" || orientation === "both"} + + {/if} + {#if orientation === "horizontal" || orientation === "both"} + + {/if} + + diff --git a/src/lib/components/ui/select/index.ts b/src/lib/components/ui/select/index.ts new file mode 100644 index 0000000..4dec358 --- /dev/null +++ b/src/lib/components/ui/select/index.ts @@ -0,0 +1,37 @@ +import Root from "./select.svelte"; +import Group from "./select-group.svelte"; +import Label from "./select-label.svelte"; +import Item from "./select-item.svelte"; +import Content from "./select-content.svelte"; +import Trigger from "./select-trigger.svelte"; +import Separator from "./select-separator.svelte"; +import ScrollDownButton from "./select-scroll-down-button.svelte"; +import ScrollUpButton from "./select-scroll-up-button.svelte"; +import GroupHeading from "./select-group-heading.svelte"; +import Portal from "./select-portal.svelte"; + +export { + Root, + Group, + Label, + Item, + Content, + Trigger, + Separator, + ScrollDownButton, + ScrollUpButton, + GroupHeading, + Portal, + // + Root as Select, + Group as SelectGroup, + Label as SelectLabel, + Item as SelectItem, + Content as SelectContent, + Trigger as SelectTrigger, + Separator as SelectSeparator, + ScrollDownButton as SelectScrollDownButton, + ScrollUpButton as SelectScrollUpButton, + GroupHeading as SelectGroupHeading, + Portal as SelectPortal, +}; diff --git a/src/lib/components/ui/select/select-content.svelte b/src/lib/components/ui/select/select-content.svelte new file mode 100644 index 0000000..4b9ca43 --- /dev/null +++ b/src/lib/components/ui/select/select-content.svelte @@ -0,0 +1,45 @@ + + + + + + + {@render children?.()} + + + + diff --git a/src/lib/components/ui/select/select-group-heading.svelte b/src/lib/components/ui/select/select-group-heading.svelte new file mode 100644 index 0000000..1fab5f0 --- /dev/null +++ b/src/lib/components/ui/select/select-group-heading.svelte @@ -0,0 +1,21 @@ + + + + {@render children?.()} + diff --git a/src/lib/components/ui/select/select-group.svelte b/src/lib/components/ui/select/select-group.svelte new file mode 100644 index 0000000..a1f43bf --- /dev/null +++ b/src/lib/components/ui/select/select-group.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/select/select-item.svelte b/src/lib/components/ui/select/select-item.svelte new file mode 100644 index 0000000..b85eef6 --- /dev/null +++ b/src/lib/components/ui/select/select-item.svelte @@ -0,0 +1,38 @@ + + + + {#snippet children({ selected, highlighted })} + + {#if selected} + + {/if} + + {#if childrenProp} + {@render childrenProp({ selected, highlighted })} + {:else} + {label || value} + {/if} + {/snippet} + diff --git a/src/lib/components/ui/select/select-label.svelte b/src/lib/components/ui/select/select-label.svelte new file mode 100644 index 0000000..4696025 --- /dev/null +++ b/src/lib/components/ui/select/select-label.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/select/select-portal.svelte b/src/lib/components/ui/select/select-portal.svelte new file mode 100644 index 0000000..424bcdd --- /dev/null +++ b/src/lib/components/ui/select/select-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/select/select-scroll-down-button.svelte b/src/lib/components/ui/select/select-scroll-down-button.svelte new file mode 100644 index 0000000..3629205 --- /dev/null +++ b/src/lib/components/ui/select/select-scroll-down-button.svelte @@ -0,0 +1,20 @@ + + + + + diff --git a/src/lib/components/ui/select/select-scroll-up-button.svelte b/src/lib/components/ui/select/select-scroll-up-button.svelte new file mode 100644 index 0000000..1aa2300 --- /dev/null +++ b/src/lib/components/ui/select/select-scroll-up-button.svelte @@ -0,0 +1,20 @@ + + + + + diff --git a/src/lib/components/ui/select/select-separator.svelte b/src/lib/components/ui/select/select-separator.svelte new file mode 100644 index 0000000..0eac3eb --- /dev/null +++ b/src/lib/components/ui/select/select-separator.svelte @@ -0,0 +1,18 @@ + + + diff --git a/src/lib/components/ui/select/select-trigger.svelte b/src/lib/components/ui/select/select-trigger.svelte new file mode 100644 index 0000000..dbb81df --- /dev/null +++ b/src/lib/components/ui/select/select-trigger.svelte @@ -0,0 +1,29 @@ + + + + {@render children?.()} + + diff --git a/src/lib/components/ui/select/select.svelte b/src/lib/components/ui/select/select.svelte new file mode 100644 index 0000000..05eb663 --- /dev/null +++ b/src/lib/components/ui/select/select.svelte @@ -0,0 +1,11 @@ + + + diff --git a/src/lib/components/ui/separator/index.ts b/src/lib/components/ui/separator/index.ts new file mode 100644 index 0000000..82442d2 --- /dev/null +++ b/src/lib/components/ui/separator/index.ts @@ -0,0 +1,7 @@ +import Root from "./separator.svelte"; + +export { + Root, + // + Root as Separator, +}; diff --git a/src/lib/components/ui/separator/separator.svelte b/src/lib/components/ui/separator/separator.svelte new file mode 100644 index 0000000..e11a6f5 --- /dev/null +++ b/src/lib/components/ui/separator/separator.svelte @@ -0,0 +1,21 @@ + + + diff --git a/src/lib/components/ui/sheet/index.ts b/src/lib/components/ui/sheet/index.ts new file mode 100644 index 0000000..28d7da1 --- /dev/null +++ b/src/lib/components/ui/sheet/index.ts @@ -0,0 +1,34 @@ +import Root from "./sheet.svelte"; +import Portal from "./sheet-portal.svelte"; +import Trigger from "./sheet-trigger.svelte"; +import Close from "./sheet-close.svelte"; +import Overlay from "./sheet-overlay.svelte"; +import Content from "./sheet-content.svelte"; +import Header from "./sheet-header.svelte"; +import Footer from "./sheet-footer.svelte"; +import Title from "./sheet-title.svelte"; +import Description from "./sheet-description.svelte"; + +export { + Root, + Close, + Trigger, + Portal, + Overlay, + Content, + Header, + Footer, + Title, + Description, + // + Root as Sheet, + Close as SheetClose, + Trigger as SheetTrigger, + Portal as SheetPortal, + Overlay as SheetOverlay, + Content as SheetContent, + Header as SheetHeader, + Footer as SheetFooter, + Title as SheetTitle, + Description as SheetDescription, +}; diff --git a/src/lib/components/ui/sheet/sheet-close.svelte b/src/lib/components/ui/sheet/sheet-close.svelte new file mode 100644 index 0000000..ae382c1 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-close.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/sheet/sheet-content.svelte b/src/lib/components/ui/sheet/sheet-content.svelte new file mode 100644 index 0000000..065fe04 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-content.svelte @@ -0,0 +1,60 @@ + + + + + + + + {@render children?.()} + + + Close + + + diff --git a/src/lib/components/ui/sheet/sheet-description.svelte b/src/lib/components/ui/sheet/sheet-description.svelte new file mode 100644 index 0000000..333b17a --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-description.svelte @@ -0,0 +1,17 @@ + + + diff --git a/src/lib/components/ui/sheet/sheet-footer.svelte b/src/lib/components/ui/sheet/sheet-footer.svelte new file mode 100644 index 0000000..dd9ed84 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-footer.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sheet/sheet-header.svelte b/src/lib/components/ui/sheet/sheet-header.svelte new file mode 100644 index 0000000..757a6a5 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-header.svelte @@ -0,0 +1,20 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sheet/sheet-overlay.svelte b/src/lib/components/ui/sheet/sheet-overlay.svelte new file mode 100644 index 0000000..345e197 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-overlay.svelte @@ -0,0 +1,20 @@ + + + diff --git a/src/lib/components/ui/sheet/sheet-portal.svelte b/src/lib/components/ui/sheet/sheet-portal.svelte new file mode 100644 index 0000000..f3085a3 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/sheet/sheet-title.svelte b/src/lib/components/ui/sheet/sheet-title.svelte new file mode 100644 index 0000000..9fda327 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-title.svelte @@ -0,0 +1,17 @@ + + + diff --git a/src/lib/components/ui/sheet/sheet-trigger.svelte b/src/lib/components/ui/sheet/sheet-trigger.svelte new file mode 100644 index 0000000..e266975 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet-trigger.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/sheet/sheet.svelte b/src/lib/components/ui/sheet/sheet.svelte new file mode 100644 index 0000000..5bf9783 --- /dev/null +++ b/src/lib/components/ui/sheet/sheet.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/sidebar/constants.ts b/src/lib/components/ui/sidebar/constants.ts new file mode 100644 index 0000000..4de4435 --- /dev/null +++ b/src/lib/components/ui/sidebar/constants.ts @@ -0,0 +1,6 @@ +export const SIDEBAR_COOKIE_NAME = "sidebar:state"; +export const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7; +export const SIDEBAR_WIDTH = "16rem"; +export const SIDEBAR_WIDTH_MOBILE = "18rem"; +export const SIDEBAR_WIDTH_ICON = "3rem"; +export const SIDEBAR_KEYBOARD_SHORTCUT = "b"; diff --git a/src/lib/components/ui/sidebar/context.svelte.ts b/src/lib/components/ui/sidebar/context.svelte.ts new file mode 100644 index 0000000..15248ad --- /dev/null +++ b/src/lib/components/ui/sidebar/context.svelte.ts @@ -0,0 +1,81 @@ +import { IsMobile } from "$lib/hooks/is-mobile.svelte.js"; +import { getContext, setContext } from "svelte"; +import { SIDEBAR_KEYBOARD_SHORTCUT } from "./constants.js"; + +type Getter = () => T; + +export type SidebarStateProps = { + /** + * A getter function that returns the current open state of the sidebar. + * We use a getter function here to support `bind:open` on the `Sidebar.Provider` + * component. + */ + open: Getter; + + /** + * A function that sets the open state of the sidebar. To support `bind:open`, we need + * a source of truth for changing the open state to ensure it will be synced throughout + * the sub-components and any `bind:` references. + */ + setOpen: (open: boolean) => void; +}; + +class SidebarState { + readonly props: SidebarStateProps; + open = $derived.by(() => this.props.open()); + openMobile = $state(false); + setOpen: SidebarStateProps["setOpen"]; + #isMobile: IsMobile; + state = $derived.by(() => (this.open ? "expanded" : "collapsed")); + + constructor(props: SidebarStateProps) { + this.setOpen = props.setOpen; + this.#isMobile = new IsMobile(); + this.props = props; + } + + // Convenience getter for checking if the sidebar is mobile + // without this, we would need to use `sidebar.isMobile.current` everywhere + get isMobile() { + return this.#isMobile.current; + } + + // Event handler to apply to the `` + handleShortcutKeydown = (e: KeyboardEvent) => { + if (e.key === SIDEBAR_KEYBOARD_SHORTCUT && (e.metaKey || e.ctrlKey)) { + e.preventDefault(); + this.toggle(); + } + }; + + setOpenMobile = (value: boolean) => { + this.openMobile = value; + }; + + toggle = () => { + return this.#isMobile.current + ? (this.openMobile = !this.openMobile) + : this.setOpen(!this.open); + }; +} + +const SYMBOL_KEY = "scn-sidebar"; + +/** + * Instantiates a new `SidebarState` instance and sets it in the context. + * + * @param props The constructor props for the `SidebarState` class. + * @returns The `SidebarState` instance. + */ +export function setSidebar(props: SidebarStateProps): SidebarState { + return setContext(Symbol.for(SYMBOL_KEY), new SidebarState(props)); +} + +/** + * Retrieves the `SidebarState` instance from the context. This is a class instance, + * so you cannot destructure it. + * @returns The `SidebarState` instance. + */ +export function useSidebar(): SidebarState { + return getContext(Symbol.for(SYMBOL_KEY)); +} diff --git a/src/lib/components/ui/sidebar/index.ts b/src/lib/components/ui/sidebar/index.ts new file mode 100644 index 0000000..318a341 --- /dev/null +++ b/src/lib/components/ui/sidebar/index.ts @@ -0,0 +1,75 @@ +import { useSidebar } from "./context.svelte.js"; +import Content from "./sidebar-content.svelte"; +import Footer from "./sidebar-footer.svelte"; +import GroupAction from "./sidebar-group-action.svelte"; +import GroupContent from "./sidebar-group-content.svelte"; +import GroupLabel from "./sidebar-group-label.svelte"; +import Group from "./sidebar-group.svelte"; +import Header from "./sidebar-header.svelte"; +import Input from "./sidebar-input.svelte"; +import Inset from "./sidebar-inset.svelte"; +import MenuAction from "./sidebar-menu-action.svelte"; +import MenuBadge from "./sidebar-menu-badge.svelte"; +import MenuButton from "./sidebar-menu-button.svelte"; +import MenuItem from "./sidebar-menu-item.svelte"; +import MenuSkeleton from "./sidebar-menu-skeleton.svelte"; +import MenuSubButton from "./sidebar-menu-sub-button.svelte"; +import MenuSubItem from "./sidebar-menu-sub-item.svelte"; +import MenuSub from "./sidebar-menu-sub.svelte"; +import Menu from "./sidebar-menu.svelte"; +import Provider from "./sidebar-provider.svelte"; +import Rail from "./sidebar-rail.svelte"; +import Separator from "./sidebar-separator.svelte"; +import Trigger from "./sidebar-trigger.svelte"; +import Root from "./sidebar.svelte"; + +export { + Content, + Footer, + Group, + GroupAction, + GroupContent, + GroupLabel, + Header, + Input, + Inset, + Menu, + MenuAction, + MenuBadge, + MenuButton, + MenuItem, + MenuSkeleton, + MenuSub, + MenuSubButton, + MenuSubItem, + Provider, + Rail, + Root, + Separator, + // + Root as Sidebar, + Content as SidebarContent, + Footer as SidebarFooter, + Group as SidebarGroup, + GroupAction as SidebarGroupAction, + GroupContent as SidebarGroupContent, + GroupLabel as SidebarGroupLabel, + Header as SidebarHeader, + Input as SidebarInput, + Inset as SidebarInset, + Menu as SidebarMenu, + MenuAction as SidebarMenuAction, + MenuBadge as SidebarMenuBadge, + MenuButton as SidebarMenuButton, + MenuItem as SidebarMenuItem, + MenuSkeleton as SidebarMenuSkeleton, + MenuSub as SidebarMenuSub, + MenuSubButton as SidebarMenuSubButton, + MenuSubItem as SidebarMenuSubItem, + Provider as SidebarProvider, + Rail as SidebarRail, + Separator as SidebarSeparator, + Trigger as SidebarTrigger, + Trigger, + useSidebar, +}; diff --git a/src/lib/components/ui/sidebar/sidebar-content.svelte b/src/lib/components/ui/sidebar/sidebar-content.svelte new file mode 100644 index 0000000..f121800 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-content.svelte @@ -0,0 +1,24 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sidebar/sidebar-footer.svelte b/src/lib/components/ui/sidebar/sidebar-footer.svelte new file mode 100644 index 0000000..6259cb9 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-footer.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sidebar/sidebar-group-action.svelte b/src/lib/components/ui/sidebar/sidebar-group-action.svelte new file mode 100644 index 0000000..a76dfe1 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-group-action.svelte @@ -0,0 +1,36 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} + +{/if} diff --git a/src/lib/components/ui/sidebar/sidebar-group-content.svelte b/src/lib/components/ui/sidebar/sidebar-group-content.svelte new file mode 100644 index 0000000..415255f --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-group-content.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sidebar/sidebar-group-label.svelte b/src/lib/components/ui/sidebar/sidebar-group-label.svelte new file mode 100644 index 0000000..b2e72b6 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-group-label.svelte @@ -0,0 +1,34 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} +
+ {@render children?.()} +
+{/if} diff --git a/src/lib/components/ui/sidebar/sidebar-group.svelte b/src/lib/components/ui/sidebar/sidebar-group.svelte new file mode 100644 index 0000000..ec18a69 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-group.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sidebar/sidebar-header.svelte b/src/lib/components/ui/sidebar/sidebar-header.svelte new file mode 100644 index 0000000..a1b2db1 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-header.svelte @@ -0,0 +1,21 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sidebar/sidebar-input.svelte b/src/lib/components/ui/sidebar/sidebar-input.svelte new file mode 100644 index 0000000..19b3666 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-input.svelte @@ -0,0 +1,21 @@ + + + diff --git a/src/lib/components/ui/sidebar/sidebar-inset.svelte b/src/lib/components/ui/sidebar/sidebar-inset.svelte new file mode 100644 index 0000000..7d6d459 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-inset.svelte @@ -0,0 +1,24 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sidebar/sidebar-menu-action.svelte b/src/lib/components/ui/sidebar/sidebar-menu-action.svelte new file mode 100644 index 0000000..d3fe295 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-action.svelte @@ -0,0 +1,43 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} + +{/if} diff --git a/src/lib/components/ui/sidebar/sidebar-menu-badge.svelte b/src/lib/components/ui/sidebar/sidebar-menu-badge.svelte new file mode 100644 index 0000000..e8ecdb4 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-badge.svelte @@ -0,0 +1,29 @@ + + +
+ {@render children?.()} +
diff --git a/src/lib/components/ui/sidebar/sidebar-menu-button.svelte b/src/lib/components/ui/sidebar/sidebar-menu-button.svelte new file mode 100644 index 0000000..0acd1ec --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-button.svelte @@ -0,0 +1,103 @@ + + + + +{#snippet Button({ props }: { props?: Record })} + {@const mergedProps = mergeProps(buttonProps, props)} + {#if child} + {@render child({ props: mergedProps })} + {:else} + + {/if} +{/snippet} + +{#if !tooltipContent} + {@render Button({})} +{:else} + + + {#snippet child({ props })} + {@render Button({ props })} + {/snippet} + + + +{/if} diff --git a/src/lib/components/ui/sidebar/sidebar-menu-item.svelte b/src/lib/components/ui/sidebar/sidebar-menu-item.svelte new file mode 100644 index 0000000..4db4453 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-item.svelte @@ -0,0 +1,21 @@ + + +
  • + {@render children?.()} +
  • diff --git a/src/lib/components/ui/sidebar/sidebar-menu-skeleton.svelte b/src/lib/components/ui/sidebar/sidebar-menu-skeleton.svelte new file mode 100644 index 0000000..68604e2 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-skeleton.svelte @@ -0,0 +1,36 @@ + + +
    + {#if showIcon} + + {/if} + + {@render children?.()} +
    diff --git a/src/lib/components/ui/sidebar/sidebar-menu-sub-button.svelte b/src/lib/components/ui/sidebar/sidebar-menu-sub-button.svelte new file mode 100644 index 0000000..c8cd4ff --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-sub-button.svelte @@ -0,0 +1,43 @@ + + +{#if child} + {@render child({ props: mergedProps })} +{:else} + + {@render children?.()} + +{/if} diff --git a/src/lib/components/ui/sidebar/sidebar-menu-sub-item.svelte b/src/lib/components/ui/sidebar/sidebar-menu-sub-item.svelte new file mode 100644 index 0000000..681d0f1 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-sub-item.svelte @@ -0,0 +1,21 @@ + + +
  • + {@render children?.()} +
  • diff --git a/src/lib/components/ui/sidebar/sidebar-menu-sub.svelte b/src/lib/components/ui/sidebar/sidebar-menu-sub.svelte new file mode 100644 index 0000000..76bd1d9 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu-sub.svelte @@ -0,0 +1,25 @@ + + +
      + {@render children?.()} +
    diff --git a/src/lib/components/ui/sidebar/sidebar-menu.svelte b/src/lib/components/ui/sidebar/sidebar-menu.svelte new file mode 100644 index 0000000..946ccce --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-menu.svelte @@ -0,0 +1,21 @@ + + +
      + {@render children?.()} +
    diff --git a/src/lib/components/ui/sidebar/sidebar-provider.svelte b/src/lib/components/ui/sidebar/sidebar-provider.svelte new file mode 100644 index 0000000..5b0d0aa --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-provider.svelte @@ -0,0 +1,53 @@ + + + + + +
    + {@render children?.()} +
    +
    diff --git a/src/lib/components/ui/sidebar/sidebar-rail.svelte b/src/lib/components/ui/sidebar/sidebar-rail.svelte new file mode 100644 index 0000000..704d54f --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-rail.svelte @@ -0,0 +1,36 @@ + + + diff --git a/src/lib/components/ui/sidebar/sidebar-separator.svelte b/src/lib/components/ui/sidebar/sidebar-separator.svelte new file mode 100644 index 0000000..5a7deda --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-separator.svelte @@ -0,0 +1,19 @@ + + + diff --git a/src/lib/components/ui/sidebar/sidebar-trigger.svelte b/src/lib/components/ui/sidebar/sidebar-trigger.svelte new file mode 100644 index 0000000..1825182 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar-trigger.svelte @@ -0,0 +1,35 @@ + + + diff --git a/src/lib/components/ui/sidebar/sidebar.svelte b/src/lib/components/ui/sidebar/sidebar.svelte new file mode 100644 index 0000000..bac55d8 --- /dev/null +++ b/src/lib/components/ui/sidebar/sidebar.svelte @@ -0,0 +1,104 @@ + + +{#if collapsible === "none"} +
    + {@render children?.()} +
    +{:else if sidebar.isMobile} + sidebar.openMobile, (v) => sidebar.setOpenMobile(v)} + {...restProps} + > + + + Sidebar + Displays the mobile sidebar. + +
    + {@render children?.()} +
    +
    +
    +{:else} + +{/if} diff --git a/src/lib/components/ui/skeleton/index.ts b/src/lib/components/ui/skeleton/index.ts new file mode 100644 index 0000000..186db21 --- /dev/null +++ b/src/lib/components/ui/skeleton/index.ts @@ -0,0 +1,7 @@ +import Root from "./skeleton.svelte"; + +export { + Root, + // + Root as Skeleton, +}; diff --git a/src/lib/components/ui/skeleton/skeleton.svelte b/src/lib/components/ui/skeleton/skeleton.svelte new file mode 100644 index 0000000..c7e3d26 --- /dev/null +++ b/src/lib/components/ui/skeleton/skeleton.svelte @@ -0,0 +1,17 @@ + + +
    diff --git a/src/lib/components/ui/spinner/index.ts b/src/lib/components/ui/spinner/index.ts new file mode 100644 index 0000000..f8b1ced --- /dev/null +++ b/src/lib/components/ui/spinner/index.ts @@ -0,0 +1 @@ +export { default as Spinner } from "./spinner.svelte"; diff --git a/src/lib/components/ui/spinner/spinner.svelte b/src/lib/components/ui/spinner/spinner.svelte new file mode 100644 index 0000000..9b12131 --- /dev/null +++ b/src/lib/components/ui/spinner/spinner.svelte @@ -0,0 +1,14 @@ + + + diff --git a/src/lib/components/ui/switch/index.ts b/src/lib/components/ui/switch/index.ts new file mode 100644 index 0000000..f5533db --- /dev/null +++ b/src/lib/components/ui/switch/index.ts @@ -0,0 +1,7 @@ +import Root from "./switch.svelte"; + +export { + Root, + // + Root as Switch, +}; diff --git a/src/lib/components/ui/switch/switch.svelte b/src/lib/components/ui/switch/switch.svelte new file mode 100644 index 0000000..80661fd --- /dev/null +++ b/src/lib/components/ui/switch/switch.svelte @@ -0,0 +1,29 @@ + + + + + diff --git a/src/lib/components/ui/tooltip/index.ts b/src/lib/components/ui/tooltip/index.ts new file mode 100644 index 0000000..1718604 --- /dev/null +++ b/src/lib/components/ui/tooltip/index.ts @@ -0,0 +1,19 @@ +import Root from "./tooltip.svelte"; +import Trigger from "./tooltip-trigger.svelte"; +import Content from "./tooltip-content.svelte"; +import Provider from "./tooltip-provider.svelte"; +import Portal from "./tooltip-portal.svelte"; + +export { + Root, + Trigger, + Content, + Provider, + Portal, + // + Root as Tooltip, + Content as TooltipContent, + Trigger as TooltipTrigger, + Provider as TooltipProvider, + Portal as TooltipPortal, +}; diff --git a/src/lib/components/ui/tooltip/tooltip-content.svelte b/src/lib/components/ui/tooltip/tooltip-content.svelte new file mode 100644 index 0000000..788ec34 --- /dev/null +++ b/src/lib/components/ui/tooltip/tooltip-content.svelte @@ -0,0 +1,52 @@ + + + + + {@render children?.()} + + {#snippet child({ props })} +
    + {/snippet} +
    +
    +
    diff --git a/src/lib/components/ui/tooltip/tooltip-portal.svelte b/src/lib/components/ui/tooltip/tooltip-portal.svelte new file mode 100644 index 0000000..d234f7d --- /dev/null +++ b/src/lib/components/ui/tooltip/tooltip-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/tooltip/tooltip-provider.svelte b/src/lib/components/ui/tooltip/tooltip-provider.svelte new file mode 100644 index 0000000..8150bef --- /dev/null +++ b/src/lib/components/ui/tooltip/tooltip-provider.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/tooltip/tooltip-trigger.svelte b/src/lib/components/ui/tooltip/tooltip-trigger.svelte new file mode 100644 index 0000000..1acdaa4 --- /dev/null +++ b/src/lib/components/ui/tooltip/tooltip-trigger.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/components/ui/tooltip/tooltip.svelte b/src/lib/components/ui/tooltip/tooltip.svelte new file mode 100644 index 0000000..0b0f9ce --- /dev/null +++ b/src/lib/components/ui/tooltip/tooltip.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/lib/hooks/is-mobile.svelte.ts b/src/lib/hooks/is-mobile.svelte.ts new file mode 100644 index 0000000..4829c00 --- /dev/null +++ b/src/lib/hooks/is-mobile.svelte.ts @@ -0,0 +1,9 @@ +import { MediaQuery } from "svelte/reactivity"; + +const DEFAULT_MOBILE_BREAKPOINT = 768; + +export class IsMobile extends MediaQuery { + constructor(breakpoint: number = DEFAULT_MOBILE_BREAKPOINT) { + super(`max-width: ${breakpoint - 1}px`); + } +} diff --git a/src/lib/utils.ts b/src/lib/utils.ts new file mode 100644 index 0000000..55b3a91 --- /dev/null +++ b/src/lib/utils.ts @@ -0,0 +1,13 @@ +import { clsx, type ClassValue } from "clsx"; +import { twMerge } from "tailwind-merge"; + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)); +} + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type WithoutChild = T extends { child?: any } ? Omit : T; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type WithoutChildren = T extends { children?: any } ? Omit : T; +export type WithoutChildrenOrChild = WithoutChildren>; +export type WithElementRef = T & { ref?: U | null }; diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte new file mode 100644 index 0000000..4dfd0c6 --- /dev/null +++ b/src/routes/+layout.svelte @@ -0,0 +1,6 @@ + + +{@render children()} \ No newline at end of file diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts new file mode 100644 index 0000000..9d24899 --- /dev/null +++ b/src/routes/+layout.ts @@ -0,0 +1,5 @@ +// Tauri doesn't have a Node.js server to do proper SSR +// so we use adapter-static with a fallback to index.html to put the site in SPA mode +// See: https://svelte.dev/docs/kit/single-page-apps +// See: https://v2.tauri.app/start/frontend/sveltekit/ for more info +export const ssr = false; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte new file mode 100644 index 0000000..6bbeec1 --- /dev/null +++ b/src/routes/+page.svelte @@ -0,0 +1,819 @@ + + +
    + +
    +
    +
    + +
    + + + + + +
    +
    + +
    + + + +
    + +
    +
    + + {#if currentView === 'home'} +
    +
    +
    +

    Device Status

    +

    Overview of connected hardware.

    +
    + +
    + +
    + + + Product Name + + + +
    + {deviceConnected ? config.productName : "---"} +
    +

    + VID: {deviceConnected ? config.vid : "--"} | PID: {deviceConnected ? config.pid : "--"} +

    +
    +
    + + + + Serial Number + + + +
    + {deviceConnected ? deviceInfo.serial : "---"} +
    +
    +
    + + + + Flash Usage + + + +
    + {deviceConnected ? `${deviceInfo.flashUsed} / ${deviceInfo.flashTotal} KB` : "---"} +
    +
    +
    0 ? (deviceInfo.flashUsed / deviceInfo.flashTotal) * 100 : 0}%`}> +
    +
    +
    +
    + + + + Firmware + + + +
    + {deviceConnected ? `v${deviceInfo.firmwareVersion}` : "---"} +
    +
    +
    + + + + Security Status + {#if security.secureBoot} + + {:else} + + {/if} + + +
    + {deviceConnected ? (security.secureBoot ? "Secure Boot" : "Development") : "---"} +
    +

    + {deviceConnected ? (security.secureLock ? "Read-out Locked" : "Debug Enabled") : ""} +

    +
    +
    +
    + + {#if !deviceConnected} + + + No Device Detected + + Please plug in your Pico FIDO key. + If you are on Linux, ensure you have the correct udev rules installed. + + + {/if} +
    + {/if} + + {#if currentView === 'config'} +
    +
    +

    Configuration

    +

    Customize your key's identity and hardware behavior.

    +
    + + + + Identity + USB Identification settings + + +
    + + + + {vendors.find(v => v.value === selectedVendor)?.label ?? "Select a vendor"} + + + {#each vendors as vendor} + + {vendor.label} + + {/each} + + +
    + +
    +
    + + +
    +
    + + +
    +
    +
    + + +
    +
    +
    + + + + Curves + Cryptographic Curve Settings + + +
    + + +
    +
    +
    + + + + Hardware & Behavior + LED settings and timeouts + + + +
    +
    + + +
    +
    + + +
    +
    + +
    + + + + {ledDrivers.find(d => d.value === config.ledDriver)?.label ?? "Select Driver"} + + + {#each ledDrivers as driver} + + {driver.label} + + {/each} + + +
    + + + +
    + + +
    + +
    + + +
    + +
    + + +
    + +
    +
    + + Level {config.ledBrightness} +
    + +
    +
    + + + +
    +
    + {/if} + + {#if currentView === 'security'} +
    +
    +

    Secure Boot

    +

    Permanently lock this device to the current firmware vendor.

    +
    + + + + Feature Unstable + + This feature is currently under work and disabled for safety. + + + + + + Lock Settings + + +
    +
    + +

    Verifies firmware signature on startup

    +
    + +
    + +
    +
    + +

    Prevents reading key material via debug ports

    +
    + +
    + + + +
    + + +
    +
    + + + +
    +
    + {/if} + + {#if currentView === 'logs'} +
    +
    +
    +

    System Logs

    +

    Real-time device communication and application events.

    +
    + +
    + + + + {#if logs.length === 0} +
    + +

    No events recorded yet.

    +
    + {:else} + +
    + {#each logs as log} +
    + [{log.timestamp}] + + {#if log.type === 'success'}➜ {/if} + {#if log.type === 'error'}✖ {/if} + {log.message} + +
    + {/each} +
    +
    + {/if} +
    +
    +
    + {/if} + + {#if currentView === 'about'} +
    +
    +

    About

    +
    + + + +
    + +
    + PicoForge Logo +
    + +

    PicoForge

    + v0.1.0-Alpha +

    + An open source commissioning tool for Pico FIDO security keys. + Developed with Rust, Tauri, and Svelte. +

    + +
    +
    Code By: Suyog Tandel
    +
    Artwork: Suyog Tandel
    +
    + Copyright: + 2026 Suyog Tandel +
    +
    + +
    + + +
    +
    +
    +
    +
    + {/if} + +
    +
    +
    +
    +
    + + + + + {dialogTitle} + + {dialogMessage} + + + + dialogOpen = false}>Okay + + + + +
    \ No newline at end of file diff --git a/static/build-configure-symbolic.svg b/static/build-configure-symbolic.svg new file mode 100644 index 0000000..e5f8080 --- /dev/null +++ b/static/build-configure-symbolic.svg @@ -0,0 +1,2 @@ + + diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..825b9e65af7c104cfb07089bb28659393b4f2097 GIT binary patch literal 1571 zcmeAS@N?(olHy`uVBq!ia0y~yU}ykg4i*LmhD`I74h#$ojKx9jP7LeL$-HD>V7=?< z;uunK>uv1q+}9QYp`3aLRhP6(c_0+yMGvW%`8w9Z4+AO$r=LiV^}WjuyMS z-`u@3yY$$SKDCAN>H9tj&u}g}XS4E2pY^*PkNZ3lroTLubH?oMf4#J9vzMpzCckct zowYnCeNLl>-tC#oR|mW7^83!__-WF*w@N!}ZnWO)*sV9e?K!tS_p_50%zk=doa_6a z9Ze7`Oq(1d_U2FyZ`xGx-xFfEE={d84w$f9rS697HscGE-dGl;{V=G?`XscL>&++e z>-U#%oq6{6`Q0U4b%OVNS0!jYj1*aM;g7Z{*A0W>9o{wqst=zQyeQ;ij+$byPs!T7 zP$;gE@43N(Z#KN^`%g~qnDC*fQ@9u5T z`010b%(4WBW*Igy)jqkB43?QUzqIP?pR?n;uR)>M{Z!UJzVqjLRQx?D9Xlud=JZMH zM4Dt}4@n0eu2Ixgk=cKk=N7x!uIU#Qr)QK{iRNADxA(7D>^{r+(1Q28%d+>r`1fM! z3!#PnEzgzrWhp(JYGANY`@x@o);^8RydN}I>CasHT;#z0|7n-*i5nc8wD_Qhgrn&1 z_=)HIc7)82SrZn{n5O;yq=&Wj!=(QfoT>{MZZVX#Y(9Ll{di*M8HGwlu2VN3EWtQvP&QN2PVR8N7!YC#E{m*$kY8i3^zQiv$JVzqYQu{#r;icEl z=UhCnkiGRom%yd1b*>!Dbz(=$xA=OCK9sWW?kjHnIi=(8N8<^v!`m)TWlU#3bX%EA zWW|L?Hd)uCpL{-aJW{t>_loq&RRZ@V7u56iZFu;9u7AgewTA2m_dYzmg!LfHN%jio z6)Tz8tu4PtytF=2_HyzK35Her8CehRz9{eceYP>8gyZOsf1e+R9eAyLo&U`AQ!>jL z>i##s-geN-*K&%b<6Sll}2Yvce^~*xG<6XX?1V3gp#~N zkiz|sN2i}Ey4w@5>yt(|hpKnhq#5tcY68zPo5(r8-F4X1_Ok2&?FGW>zrU(?x;Q#c?bx4-5dPgKtZr*@mZ=`3%X zy6%Z`^e5Hr^Y+>AzJm9>p2Z^BF4@_(4b1il6W?8xzhU;SdYz;2?R&rX$y{t=F!Y`E zR$}w<@9ihF9(X_5v`6rxTqRqD=!eToZeQ5@{QQC0#~w>6ukx<+wTnGF|CY_6xJ%zz zHr<`$x>nEcQ1ZHi?IAA|7rHVEt3Nz@U3=2vrr*f|MGoxkLSkxhhdzJg^6Z@Zq2`!6 zN9X(x&t6IHdUbyJoZ{}h2h3KD+a6rvIIkc7=B91g%$DcR#pk?L*qd_b^D~z6tu4>l zcb}QJe%gmWZyk5-zxe)Gtrh1xH}U_oBV*EcOaCc*(s}2g+Fj}Irl)7WovQcub7w{E upWAk8&OVF%_w#jD-*4ISJB6Y@xbv5oeJi^*U66r+fx*+&&t;ucLK6TBI`Z29 literal 0 HcmV?d00001 diff --git a/static/pico-forge.svg b/static/pico-forge.svg new file mode 100644 index 0000000..91c894f --- /dev/null +++ b/static/pico-forge.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/svelte.svg b/static/svelte.svg new file mode 100644 index 0000000..c5e0848 --- /dev/null +++ b/static/svelte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/tauri.svg b/static/tauri.svg new file mode 100644 index 0000000..31b62c9 --- /dev/null +++ b/static/tauri.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/static/vite.svg b/static/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/static/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..0030bb2 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,22 @@ +// Tauri doesn't have a Node.js server to do proper SSR +// so we use adapter-static with a fallback to index.html to put the site in SPA mode +// See: https://svelte.dev/docs/kit/single-page-apps +// See: https://v2.tauri.app/start/frontend/sveltekit/ for more info +import adapter from "@sveltejs/adapter-static"; +import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + preprocess: vitePreprocess(), + kit: { + adapter: adapter({ + fallback: "index.html", + }), + alias: { + $lib: "src/lib", + "$lib/*": "src/lib/*", + }, + }, +}; + +export default config; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..62735c3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler", + } + // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias + // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files + // + // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes + // from the referenced tsconfig.json - TypeScript does not merge them in +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..879b273 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,36 @@ +import { defineConfig } from "vite"; +import { sveltekit } from "@sveltejs/kit/vite"; +import tailwindcss from '@tailwindcss/vite'; + +// @ts-expect-error process is a nodejs global +const host = process.env.TAURI_DEV_HOST; + +// https://vite.dev/config/ +export default defineConfig(async () => ({ + plugins: [ + sveltekit(), + tailwindcss(), + ], + + // 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/**"], + }, + }, +}));