create-tauri-ui 0.1.5 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +54 -12
- package/dist/index.mjs +26 -27
- package/index.js +1 -1
- package/package.json +54 -63
- package/templates/.shared/.github/workflows/release.yml +112 -0
- package/templates/.shared/app-icon.png +0 -0
- package/templates/.shared/src-tauri/Cargo.lock +3701 -0
- package/templates/.shared/src-tauri/Cargo.toml +36 -0
- package/templates/.shared/src-tauri/build.rs +3 -0
- package/templates/.shared/src-tauri/icons/128x128.png +0 -0
- package/templates/.shared/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/.shared/src-tauri/icons/32x32.png +0 -0
- package/templates/.shared/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/.shared/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/.shared/src-tauri/icons/icon.icns +0 -0
- package/templates/.shared/src-tauri/icons/icon.ico +0 -0
- package/templates/.shared/src-tauri/icons/icon.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/.shared/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/.shared/src-tauri/src/main.rs +19 -0
- package/templates/.shared/src-tauri/tauri.conf.json +79 -0
- package/templates/next/.env +1 -1
- package/templates/next/.github/workflows/release.yml +108 -108
- package/templates/next/.vscode/extensions.json +3 -3
- package/templates/next/README.md +95 -88
- package/templates/next/components.json +16 -0
- package/templates/next/next-env.d.ts +5 -5
- package/templates/next/next.config.js +14 -17
- package/templates/next/package.json +83 -82
- package/templates/next/pnpm-lock.yaml +4869 -4754
- package/templates/next/postcss.config.js +6 -6
- package/templates/next/prettier.config.js +35 -35
- package/templates/next/src/app/examples/authentication/components/user-auth-form.tsx +1 -1
- package/templates/next/src/app/examples/authentication/page.tsx +67 -59
- package/templates/next/src/app/examples/cards/components/create-account.tsx +1 -1
- package/templates/next/src/app/examples/cards/components/date-picker.tsx +2 -2
- package/templates/next/src/app/examples/cards/components/github-card.tsx +15 -10
- package/templates/next/src/app/examples/cards/components/notifications.tsx +9 -9
- package/templates/next/src/app/examples/cards/components/payment-method.tsx +14 -4
- package/templates/next/src/app/examples/cards/components/report-an-issue.tsx +4 -1
- package/templates/next/src/app/examples/cards/components/share-document.tsx +5 -1
- package/templates/next/src/app/examples/cards/components/team-members.tsx +8 -4
- package/templates/next/src/app/examples/cards/page.tsx +37 -36
- package/templates/next/src/app/examples/dashboard/components/date-range-picker.tsx +2 -3
- package/templates/next/src/app/examples/dashboard/components/main-nav.tsx +10 -8
- package/templates/next/src/app/examples/dashboard/components/recent-sales.tsx +5 -1
- package/templates/next/src/app/examples/dashboard/components/search.tsx +1 -1
- package/templates/next/src/app/examples/dashboard/components/team-switcher.tsx +15 -7
- package/templates/next/src/app/examples/dashboard/components/user-nav.tsx +10 -15
- package/templates/next/src/app/examples/dashboard/page.tsx +164 -114
- package/templates/next/src/app/examples/forms/account/account-form.tsx +13 -13
- package/templates/next/src/app/examples/forms/appearance/appearance-form.tsx +5 -5
- package/templates/next/src/app/examples/forms/components/sidebar-nav.tsx +3 -2
- package/templates/next/src/app/examples/forms/display/display-form.tsx +2 -2
- package/templates/next/src/app/examples/forms/layout.tsx +16 -14
- package/templates/next/src/app/examples/forms/notifications/notifications-form.tsx +6 -5
- package/templates/next/src/app/examples/forms/notifications/page.tsx +0 -1
- package/templates/next/src/app/examples/forms/profile-form.tsx +16 -15
- package/templates/next/src/app/examples/layout.tsx +7 -7
- package/templates/next/src/app/examples/music/components/album-artwork.tsx +15 -4
- package/templates/next/src/app/examples/music/components/menu.tsx +27 -5
- package/templates/next/src/app/examples/music/components/podcast-empty-placeholder.tsx +15 -4
- package/templates/next/src/app/examples/music/components/sidebar.tsx +147 -43
- package/templates/next/src/app/examples/music/page.tsx +113 -106
- package/templates/next/src/app/examples/playground/components/model-selector.tsx +3 -3
- package/templates/next/src/app/examples/playground/components/preset-actions.tsx +2 -4
- package/templates/next/src/app/examples/playground/components/preset-selector.tsx +4 -4
- package/templates/next/src/app/examples/playground/components/preset-share.tsx +2 -2
- package/templates/next/src/app/examples/playground/page.tsx +268 -115
- package/templates/next/src/app/examples/tasks/components/data-table-column-header.tsx +12 -7
- package/templates/next/src/app/examples/tasks/components/data-table-faceted-filter.tsx +4 -4
- package/templates/next/src/app/examples/tasks/components/data-table-pagination.tsx +10 -10
- package/templates/next/src/app/examples/tasks/components/data-table-row-actions.tsx +6 -19
- package/templates/next/src/app/examples/tasks/components/data-table-toolbar.tsx +3 -5
- package/templates/next/src/app/examples/tasks/components/data-table-view-options.tsx +2 -2
- package/templates/next/src/app/examples/tasks/components/user-nav.tsx +10 -15
- package/templates/next/src/app/examples/tasks/data/data.tsx +17 -17
- package/templates/next/src/app/examples/tasks/data/tasks.json +1 -1
- package/templates/next/src/app/examples/tasks/page.tsx +14 -12
- package/templates/next/src/app/layout.tsx +47 -43
- package/templates/next/src/app/page.tsx +5 -5
- package/templates/next/src/components/{examples/date-picker/with-range.tsx → example/date-picker-with-range.tsx} +1 -1
- package/templates/next/src/components/examples-nav.tsx +70 -70
- package/templates/next/src/components/greeting.tsx +21 -21
- package/templates/next/src/components/icons.tsx +154 -154
- package/templates/next/src/components/menu-mode-toggle.tsx +46 -46
- package/templates/next/src/components/menu.tsx +259 -259
- package/templates/next/src/components/mode-toggle.tsx +43 -43
- package/templates/next/src/components/page-header.tsx +50 -50
- package/templates/next/src/components/style-switcher.tsx +19 -19
- package/templates/next/src/components/tailwind-indicator.tsx +18 -18
- package/templates/next/src/components/theme-provider.tsx +9 -9
- package/templates/next/src/components/ui/accordion.tsx +1 -1
- package/templates/next/src/components/ui/alert-dialog.tsx +3 -8
- package/templates/next/src/components/ui/alert.tsx +3 -5
- package/templates/next/src/components/ui/badge.tsx +5 -5
- package/templates/next/src/components/ui/button.tsx +15 -10
- package/templates/next/src/components/ui/card.tsx +1 -3
- package/templates/next/src/components/ui/checkbox.tsx +2 -2
- package/templates/next/src/components/ui/command.tsx +2 -2
- package/templates/next/src/components/ui/context-menu.tsx +6 -6
- package/templates/next/src/components/ui/dialog.tsx +4 -9
- package/templates/next/src/components/ui/dropdown-menu.tsx +6 -6
- package/templates/next/src/components/ui/hover-card.tsx +1 -1
- package/templates/next/src/components/ui/input.tsx +1 -3
- package/templates/next/src/components/ui/label.tsx +1 -1
- package/templates/next/src/components/ui/menubar.tsx +7 -7
- package/templates/next/src/components/ui/navigation-menu.tsx +2 -4
- package/templates/next/src/components/ui/popover.tsx +1 -1
- package/templates/next/src/components/ui/radio-group.tsx +2 -2
- package/templates/next/src/components/ui/select.tsx +4 -3
- package/templates/next/src/components/ui/sheet.tsx +22 -108
- package/templates/next/src/components/ui/skeleton.tsx +0 -2
- package/templates/next/src/components/ui/switch.tsx +1 -1
- package/templates/next/src/components/ui/table.tsx +1 -1
- package/templates/next/src/components/ui/tabs.tsx +1 -1
- package/templates/next/src/components/ui/textarea.tsx +1 -3
- package/templates/next/src/components/ui/toast.tsx +6 -8
- package/templates/next/src/components/ui/toggle.tsx +3 -3
- package/templates/next/src/components/ui/tooltip.tsx +1 -1
- package/templates/next/src/components/ui/use-toast.ts +5 -4
- package/templates/next/src/data/albums.ts +71 -71
- package/templates/next/src/data/playlists.ts +16 -16
- package/templates/next/src/lib/utils.ts +6 -19
- package/templates/next/src/styles/globals.css +86 -124
- package/templates/next/src-tauri/Cargo.lock +3701 -3637
- package/templates/next/src-tauri/Cargo.toml +36 -36
- package/templates/next/src-tauri/build.rs +3 -3
- package/templates/next/src-tauri/icons/128x128.png +0 -0
- package/templates/next/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/next/src-tauri/icons/32x32.png +0 -0
- package/templates/next/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/next/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/icon.icns +0 -0
- package/templates/next/src-tauri/icons/icon.ico +0 -0
- package/templates/next/src-tauri/icons/icon.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/next/src-tauri/src/main.rs +19 -19
- package/templates/next/src-tauri/tauri.conf.json +79 -63
- package/templates/next/tailwind.config.js +78 -80
- package/templates/next/tsconfig.json +35 -35
- package/templates/sveltekit/.github/workflows/release.yml +108 -0
- package/templates/sveltekit/package.json +29 -29
- package/templates/sveltekit/src-tauri/Cargo.lock +268 -206
- package/templates/sveltekit/src-tauri/Cargo.toml +12 -10
- package/templates/sveltekit/src-tauri/build.rs +3 -3
- package/templates/sveltekit/src-tauri/tauri.conf.json +23 -6
- package/templates/vite/components.json +16 -0
- package/templates/vite/package.json +19 -18
- package/templates/vite/pnpm-lock.yaml +801 -696
- package/templates/vite/public/avatars/01.png +0 -0
- package/templates/vite/public/avatars/02.png +0 -0
- package/templates/vite/public/avatars/03.png +0 -0
- package/templates/vite/public/avatars/04.png +0 -0
- package/templates/vite/public/avatars/05.png +0 -0
- package/templates/vite/src/components/menu.tsx +1 -1
- package/templates/vite/src/dashboard/components/date-range-picker.tsx +2 -3
- package/templates/vite/src/dashboard/components/recent-sales.tsx +5 -1
- package/templates/vite/src/dashboard/components/search.tsx +1 -1
- package/templates/vite/src/dashboard/components/team-switcher.tsx +15 -7
- package/templates/vite/src/dashboard/components/user-nav.tsx +10 -15
- package/templates/vite/src/dashboard/page.tsx +172 -121
- package/templates/vite/src/styles/globals.css +1 -39
- package/templates/vite/src-tauri/Cargo.lock +302 -238
- package/templates/vite/src-tauri/Cargo.toml +11 -8
- package/templates/vite/src-tauri/build.rs +3 -3
- package/templates/vite/src-tauri/tauri.conf.json +79 -63
- package/templates/viteuno/.github/workflows/release.yml +108 -0
- package/templates/viteuno/.vscode/extensions.json +3 -0
- package/templates/viteuno/README.md +1 -0
- package/templates/viteuno/app-icon.png +0 -0
- package/templates/viteuno/components.json +16 -0
- package/templates/viteuno/index.html +16 -0
- package/templates/viteuno/package.json +73 -0
- package/templates/viteuno/pnpm-lock.yaml +5298 -0
- package/templates/viteuno/preset.shadcn.ts +160 -0
- package/templates/viteuno/prettier.config.cjs +34 -0
- package/templates/viteuno/public/avatars/01.png +0 -0
- package/templates/viteuno/public/avatars/02.png +0 -0
- package/templates/viteuno/public/avatars/03.png +0 -0
- package/templates/viteuno/public/avatars/04.png +0 -0
- package/templates/viteuno/public/avatars/05.png +0 -0
- package/templates/viteuno/src/App.tsx +39 -0
- package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/src/components/icons.tsx +154 -0
- package/templates/viteuno/src/components/menu-mode-toggle.tsx +46 -0
- package/templates/viteuno/src/components/menu.tsx +232 -0
- package/templates/viteuno/src/components/tailwind-indicator.tsx +18 -0
- package/templates/viteuno/src/components/theme-provider.tsx +9 -0
- package/templates/viteuno/src/components/ui/accordion.tsx +60 -0
- package/templates/viteuno/src/components/ui/alert-dialog.tsx +150 -0
- package/templates/viteuno/src/components/ui/alert.tsx +61 -0
- package/templates/viteuno/src/components/ui/aspect-ratio.tsx +7 -0
- package/templates/viteuno/src/components/ui/avatar.tsx +50 -0
- package/templates/viteuno/src/components/ui/badge.tsx +36 -0
- package/templates/viteuno/src/components/ui/button.tsx +51 -0
- package/templates/viteuno/src/components/ui/calendar.tsx +64 -0
- package/templates/viteuno/src/components/ui/card.tsx +81 -0
- package/templates/viteuno/src/components/ui/checkbox.tsx +30 -0
- package/templates/viteuno/src/components/ui/collapsible.tsx +11 -0
- package/templates/viteuno/src/components/ui/command.tsx +155 -0
- package/templates/viteuno/src/components/ui/context-menu.tsx +200 -0
- package/templates/viteuno/src/components/ui/dialog.tsx +128 -0
- package/templates/viteuno/src/components/ui/dropdown-menu.tsx +200 -0
- package/templates/viteuno/src/components/ui/hover-card.tsx +29 -0
- package/templates/viteuno/src/components/ui/index.ts +0 -0
- package/templates/viteuno/src/components/ui/input.tsx +27 -0
- package/templates/viteuno/src/components/ui/label.tsx +26 -0
- package/templates/viteuno/src/components/ui/menubar.tsx +236 -0
- package/templates/viteuno/src/components/ui/navigation-menu.tsx +130 -0
- package/templates/viteuno/src/components/ui/popover.tsx +31 -0
- package/templates/viteuno/src/components/ui/progress.tsx +28 -0
- package/templates/viteuno/src/components/ui/radio-group.tsx +44 -0
- package/templates/viteuno/src/components/ui/scroll-area.tsx +48 -0
- package/templates/viteuno/src/components/ui/select.tsx +120 -0
- package/templates/viteuno/src/components/ui/separator.tsx +31 -0
- package/templates/viteuno/src/components/ui/sheet.tsx +230 -0
- package/templates/viteuno/src/components/ui/skeleton.tsx +17 -0
- package/templates/viteuno/src/components/ui/slider.tsx +28 -0
- package/templates/viteuno/src/components/ui/switch.tsx +29 -0
- package/templates/viteuno/src/components/ui/table.tsx +114 -0
- package/templates/viteuno/src/components/ui/tabs.tsx +55 -0
- package/templates/viteuno/src/components/ui/textarea.tsx +26 -0
- package/templates/viteuno/src/components/ui/toast.tsx +129 -0
- package/templates/viteuno/src/components/ui/toaster.tsx +35 -0
- package/templates/viteuno/src/components/ui/toggle.tsx +45 -0
- package/templates/viteuno/src/components/ui/tooltip.tsx +30 -0
- package/templates/viteuno/src/components/ui/use-toast.ts +191 -0
- package/templates/{next/src/components/examples/calendar → viteuno/src/dashboard/components}/date-range-picker.tsx +5 -4
- package/templates/viteuno/src/dashboard/components/main-nav.tsx +38 -0
- package/templates/viteuno/src/dashboard/components/overview.tsx +78 -0
- package/templates/viteuno/src/dashboard/components/recent-sales.tsx +67 -0
- package/templates/viteuno/src/dashboard/components/search.tsx +13 -0
- package/templates/viteuno/src/dashboard/components/team-switcher.tsx +205 -0
- package/templates/viteuno/src/dashboard/components/user-nav.tsx +67 -0
- package/templates/viteuno/src/dashboard/page.tsx +140 -0
- package/templates/viteuno/src/lib/utils.ts +19 -0
- package/templates/viteuno/src/main.tsx +14 -0
- package/templates/viteuno/src/styles/globals.css +4 -0
- package/templates/viteuno/src/vite-env.d.ts +1 -0
- package/templates/viteuno/src-tauri/Cargo.lock +3701 -0
- package/templates/viteuno/src-tauri/Cargo.toml +36 -0
- package/templates/viteuno/src-tauri/build.rs +3 -0
- package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
- package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
- package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
- package/templates/viteuno/src-tauri/icons/icon.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/viteuno/src-tauri/src/main.rs +16 -0
- package/templates/viteuno/src-tauri/tauri.conf.json +79 -0
- package/templates/viteuno/tsconfig.json +26 -0
- package/templates/viteuno/tsconfig.node.json +9 -0
- package/templates/viteuno/uno.config.ts +111 -0
- package/templates/viteuno/vite.config.ts +33 -0
- package/templates/next/src/app/examples/cards/styles.css +0 -63
- package/templates/next/src/app/examples/music/styles.css +0 -65
- package/templates/next/src/app/examples/playground/components/icons.tsx +0 -153
- package/templates/next/src/app/examples/playground/styles.css +0 -65
- package/templates/next/src/components/examples/.eslintrc.json +0 -6
- package/templates/next/src/components/examples/accordion/demo.tsx +0 -32
- package/templates/next/src/components/examples/alert/demo.tsx +0 -15
- package/templates/next/src/components/examples/alert/destructive.tsx +0 -15
- package/templates/next/src/components/examples/alert-dialog/demo.tsx +0 -35
- package/templates/next/src/components/examples/aspect-ratio/demo.tsx +0 -16
- package/templates/next/src/components/examples/avatar/demo.tsx +0 -10
- package/templates/next/src/components/examples/badge/demo.tsx +0 -5
- package/templates/next/src/components/examples/badge/destructive.tsx +0 -5
- package/templates/next/src/components/examples/badge/outline.tsx +0 -5
- package/templates/next/src/components/examples/badge/secondary.tsx +0 -5
- package/templates/next/src/components/examples/button/as-child.tsx +0 -10
- package/templates/next/src/components/examples/button/demo.tsx +0 -5
- package/templates/next/src/components/examples/button/destructive.tsx +0 -5
- package/templates/next/src/components/examples/button/ghost.tsx +0 -5
- package/templates/next/src/components/examples/button/link.tsx +0 -5
- package/templates/next/src/components/examples/button/loading.tsx +0 -12
- package/templates/next/src/components/examples/button/outline.tsx +0 -5
- package/templates/next/src/components/examples/button/secondary.tsx +0 -5
- package/templates/next/src/components/examples/button/with-icon.tsx +0 -11
- package/templates/next/src/components/examples/calendar/date-picker.tsx +0 -43
- package/templates/next/src/components/examples/calendar/demo.tsx +0 -18
- package/templates/next/src/components/examples/calendar/react-hook-form.tsx +0 -101
- package/templates/next/src/components/examples/calendar/with-presets.tsx +0 -62
- package/templates/next/src/components/examples/card/demo.tsx +0 -79
- package/templates/next/src/components/examples/card/with-form.tsx +0 -59
- package/templates/next/src/components/examples/checkbox/demo.tsx +0 -17
- package/templates/next/src/components/examples/checkbox/disabled.tsx +0 -15
- package/templates/next/src/components/examples/checkbox/react-hook-form-multiple.tsx +0 -127
- package/templates/next/src/components/examples/checkbox/react-hook-form-single.tsx +0 -72
- package/templates/next/src/components/examples/checkbox/with-text.tsx +0 -22
- package/templates/next/src/components/examples/collapsible/demo.tsx +0 -46
- package/templates/next/src/components/examples/combobox/demo.tsx +0 -90
- package/templates/next/src/components/examples/combobox/dropdown-menu.tsx +0 -110
- package/templates/next/src/components/examples/combobox/popover.tsx +0 -124
- package/templates/next/src/components/examples/combobox/react-hook-form.tsx +0 -135
- package/templates/next/src/components/examples/command/combobox.tsx +0 -90
- package/templates/next/src/components/examples/command/demo.tsx +0 -62
- package/templates/next/src/components/examples/command/dialog.tsx +0 -86
- package/templates/next/src/components/examples/command/dropdown-menu.tsx +0 -110
- package/templates/next/src/components/examples/command/popover.tsx +0 -124
- package/templates/next/src/components/examples/context-menu/demo.tsx +0 -67
- package/templates/next/src/components/examples/data-table/columns.tsx +0 -110
- package/templates/next/src/components/examples/data-table/data-table.tsx +0 -185
- package/templates/next/src/components/examples/data-table/demo.tsx +0 -41
- package/templates/next/src/components/examples/date-picker/demo.tsx +0 -43
- package/templates/next/src/components/examples/date-picker/react-hook-form.tsx +0 -101
- package/templates/next/src/components/examples/date-picker/with-presets.tsx +0 -62
- package/templates/next/src/components/examples/dialog/demo.tsx +0 -47
- package/templates/next/src/components/examples/dropdown-menu/checkboxes.tsx +0 -53
- package/templates/next/src/components/examples/dropdown-menu/demo.tsx +0 -122
- package/templates/next/src/components/examples/dropdown-menu/radio-group.tsx +0 -37
- package/templates/next/src/components/examples/hover-card/demo.tsx +0 -39
- package/templates/next/src/components/examples/index.tsx +0 -213
- package/templates/next/src/components/examples/input/demo.tsx +0 -5
- package/templates/next/src/components/examples/input/disabled.tsx +0 -5
- package/templates/next/src/components/examples/input/file.tsx +0 -11
- package/templates/next/src/components/examples/input/react-hook-form.tsx +0 -65
- package/templates/next/src/components/examples/input/with-button.tsx +0 -11
- package/templates/next/src/components/examples/input/with-label.tsx +0 -11
- package/templates/next/src/components/examples/input/with-text.tsx +0 -12
- package/templates/next/src/components/examples/label/demo.tsx +0 -13
- package/templates/next/src/components/examples/menubar/demo.tsx +0 -107
- package/templates/next/src/components/examples/navigation-menu/demo.tsx +0 -144
- package/templates/next/src/components/examples/popover/demo.tsx +0 -67
- package/templates/next/src/components/examples/progress/demo.tsx +0 -16
- package/templates/next/src/components/examples/radio-group/demo.tsx +0 -21
- package/templates/next/src/components/examples/radio-group/react-hook-form.tsx +0 -88
- package/templates/next/src/components/examples/scroll-area/demo.tsx +0 -26
- package/templates/next/src/components/examples/select/demo.tsx +0 -31
- package/templates/next/src/components/examples/select/react-hook-form.tsx +0 -83
- package/templates/next/src/components/examples/separator/demo.tsx +0 -22
- package/templates/next/src/components/examples/sheet/demo.tsx +0 -47
- package/templates/next/src/components/examples/sheet/position.tsx +0 -75
- package/templates/next/src/components/examples/sheet/size.tsx +0 -75
- package/templates/next/src/components/examples/skeleton/demo.tsx +0 -13
- package/templates/next/src/components/examples/slider/demo.tsx +0 -16
- package/templates/next/src/components/examples/switch/demo.tsx +0 -11
- package/templates/next/src/components/examples/switch/react-hook-form.tsx +0 -101
- package/templates/next/src/components/examples/table/demo.tsx +0 -80
- package/templates/next/src/components/examples/tabs/demo.tsx +0 -69
- package/templates/next/src/components/examples/textarea/demo.tsx +0 -5
- package/templates/next/src/components/examples/textarea/disabled.tsx +0 -5
- package/templates/next/src/components/examples/textarea/react-hook-form.tsx +0 -77
- package/templates/next/src/components/examples/textarea/with-button.tsx +0 -11
- package/templates/next/src/components/examples/textarea/with-label.tsx +0 -11
- package/templates/next/src/components/examples/textarea/with-text.tsx +0 -14
- package/templates/next/src/components/examples/toast/demo.tsx +0 -26
- package/templates/next/src/components/examples/toast/destructive.tsx +0 -25
- package/templates/next/src/components/examples/toast/simple.tsx +0 -21
- package/templates/next/src/components/examples/toast/with-action.tsx +0 -24
- package/templates/next/src/components/examples/toast/with-title.tsx +0 -22
- package/templates/next/src/components/examples/toggle/demo.tsx +0 -11
- package/templates/next/src/components/examples/toggle/disabled.tsx +0 -11
- package/templates/next/src/components/examples/toggle/lg.tsx +0 -11
- package/templates/next/src/components/examples/toggle/outline.tsx +0 -11
- package/templates/next/src/components/examples/toggle/sm.tsx +0 -11
- package/templates/next/src/components/examples/toggle/with-text.tsx +0 -12
- package/templates/next/src/components/examples/tooltip/demo.tsx +0 -27
- package/templates/next/src/components/examples/typography/blockquote.tsx +0 -8
- package/templates/next/src/components/examples/typography/demo.tsx +0 -119
- package/templates/next/src/components/examples/typography/h1.tsx +0 -7
- package/templates/next/src/components/examples/typography/h2.tsx +0 -7
- package/templates/next/src/components/examples/typography/h3.tsx +0 -7
- package/templates/next/src/components/examples/typography/h4.tsx +0 -7
- package/templates/next/src/components/examples/typography/inline-code.tsx +0 -7
- package/templates/next/src/components/examples/typography/large.tsx +0 -5
- package/templates/next/src/components/examples/typography/lead.tsx +0 -8
- package/templates/next/src/components/examples/typography/list.tsx +0 -9
- package/templates/next/src/components/examples/typography/muted.tsx +0 -5
- package/templates/next/src/components/examples/typography/p.tsx +0 -8
- package/templates/next/src/components/examples/typography/small.tsx +0 -5
- package/templates/next/src/components/examples/typography/table.tsx +0 -44
- package/templates/sveltekit/static/favicon.ico +0 -0
- /package/templates/next/src/components/{react-hook-form → ui}/form.tsx +0 -0
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 3
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.20.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
5
14
|
[[package]]
|
|
6
15
|
name = "adler"
|
|
7
16
|
version = "1.0.2"
|
|
@@ -10,9 +19,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
10
19
|
|
|
11
20
|
[[package]]
|
|
12
21
|
name = "aho-corasick"
|
|
13
|
-
version = "1.0.
|
|
22
|
+
version = "1.0.2"
|
|
14
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
24
|
+
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
|
16
25
|
dependencies = [
|
|
17
26
|
"memchr",
|
|
18
27
|
]
|
|
@@ -32,6 +41,12 @@ dependencies = [
|
|
|
32
41
|
"alloc-no-stdlib",
|
|
33
42
|
]
|
|
34
43
|
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "android-tzdata"
|
|
46
|
+
version = "0.1.1"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
49
|
+
|
|
35
50
|
[[package]]
|
|
36
51
|
name = "android_system_properties"
|
|
37
52
|
version = "0.1.5"
|
|
@@ -77,6 +92,21 @@ version = "1.1.0"
|
|
|
77
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
93
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
79
94
|
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "backtrace"
|
|
97
|
+
version = "0.3.68"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"addr2line",
|
|
102
|
+
"cc",
|
|
103
|
+
"cfg-if",
|
|
104
|
+
"libc",
|
|
105
|
+
"miniz_oxide",
|
|
106
|
+
"object",
|
|
107
|
+
"rustc-demangle",
|
|
108
|
+
]
|
|
109
|
+
|
|
80
110
|
[[package]]
|
|
81
111
|
name = "base64"
|
|
82
112
|
version = "0.13.1"
|
|
@@ -185,9 +215,9 @@ dependencies = [
|
|
|
185
215
|
|
|
186
216
|
[[package]]
|
|
187
217
|
name = "cargo_toml"
|
|
188
|
-
version = "0.15.
|
|
218
|
+
version = "0.15.3"
|
|
189
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
-
checksum = "
|
|
220
|
+
checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
|
|
191
221
|
dependencies = [
|
|
192
222
|
"serde",
|
|
193
223
|
"toml",
|
|
@@ -218,9 +248,9 @@ dependencies = [
|
|
|
218
248
|
|
|
219
249
|
[[package]]
|
|
220
250
|
name = "cfg-expr"
|
|
221
|
-
version = "0.15.
|
|
251
|
+
version = "0.15.3"
|
|
222
252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
-
checksum = "
|
|
253
|
+
checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c"
|
|
224
254
|
dependencies = [
|
|
225
255
|
"smallvec",
|
|
226
256
|
"target-lexicon",
|
|
@@ -234,12 +264,12 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
234
264
|
|
|
235
265
|
[[package]]
|
|
236
266
|
name = "chrono"
|
|
237
|
-
version = "0.4.
|
|
267
|
+
version = "0.4.26"
|
|
238
268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
269
|
+
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
|
|
240
270
|
dependencies = [
|
|
271
|
+
"android-tzdata",
|
|
241
272
|
"iana-time-zone",
|
|
242
|
-
"num-integer",
|
|
243
273
|
"num-traits",
|
|
244
274
|
"serde",
|
|
245
275
|
"winapi",
|
|
@@ -329,21 +359,20 @@ dependencies = [
|
|
|
329
359
|
|
|
330
360
|
[[package]]
|
|
331
361
|
name = "core-graphics-types"
|
|
332
|
-
version = "0.1.
|
|
362
|
+
version = "0.1.2"
|
|
333
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
364
|
+
checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
|
|
335
365
|
dependencies = [
|
|
336
366
|
"bitflags",
|
|
337
367
|
"core-foundation",
|
|
338
|
-
"foreign-types",
|
|
339
368
|
"libc",
|
|
340
369
|
]
|
|
341
370
|
|
|
342
371
|
[[package]]
|
|
343
372
|
name = "cpufeatures"
|
|
344
|
-
version = "0.2.
|
|
373
|
+
version = "0.2.9"
|
|
345
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
-
checksum = "
|
|
375
|
+
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
|
|
347
376
|
dependencies = [
|
|
348
377
|
"libc",
|
|
349
378
|
]
|
|
@@ -369,9 +398,9 @@ dependencies = [
|
|
|
369
398
|
|
|
370
399
|
[[package]]
|
|
371
400
|
name = "crossbeam-utils"
|
|
372
|
-
version = "0.8.
|
|
401
|
+
version = "0.8.16"
|
|
373
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
403
|
+
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
|
375
404
|
dependencies = [
|
|
376
405
|
"cfg-if",
|
|
377
406
|
]
|
|
@@ -405,12 +434,12 @@ dependencies = [
|
|
|
405
434
|
|
|
406
435
|
[[package]]
|
|
407
436
|
name = "cssparser-macros"
|
|
408
|
-
version = "0.6.
|
|
437
|
+
version = "0.6.1"
|
|
409
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
439
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
411
440
|
dependencies = [
|
|
412
441
|
"quote",
|
|
413
|
-
"syn
|
|
442
|
+
"syn 2.0.25",
|
|
414
443
|
]
|
|
415
444
|
|
|
416
445
|
[[package]]
|
|
@@ -444,7 +473,7 @@ dependencies = [
|
|
|
444
473
|
"proc-macro2",
|
|
445
474
|
"quote",
|
|
446
475
|
"strsim",
|
|
447
|
-
"syn 2.0.
|
|
476
|
+
"syn 2.0.25",
|
|
448
477
|
]
|
|
449
478
|
|
|
450
479
|
[[package]]
|
|
@@ -455,7 +484,7 @@ checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a"
|
|
|
455
484
|
dependencies = [
|
|
456
485
|
"darling_core",
|
|
457
486
|
"quote",
|
|
458
|
-
"syn 2.0.
|
|
487
|
+
"syn 2.0.25",
|
|
459
488
|
]
|
|
460
489
|
|
|
461
490
|
[[package]]
|
|
@@ -510,15 +539,15 @@ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
|
510
539
|
|
|
511
540
|
[[package]]
|
|
512
541
|
name = "dtoa"
|
|
513
|
-
version = "0.
|
|
542
|
+
version = "1.0.8"
|
|
514
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
-
checksum = "
|
|
544
|
+
checksum = "519b83cd10f5f6e969625a409f735182bea5558cd8b64c655806ceaae36f1999"
|
|
516
545
|
|
|
517
546
|
[[package]]
|
|
518
547
|
name = "dtoa-short"
|
|
519
|
-
version = "0.3.
|
|
548
|
+
version = "0.3.4"
|
|
520
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "
|
|
550
|
+
checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
|
|
522
551
|
dependencies = [
|
|
523
552
|
"dtoa",
|
|
524
553
|
]
|
|
@@ -531,9 +560,9 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
|
|
|
531
560
|
|
|
532
561
|
[[package]]
|
|
533
562
|
name = "embed-resource"
|
|
534
|
-
version = "2.
|
|
563
|
+
version = "2.2.0"
|
|
535
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
565
|
+
checksum = "f7f1e82a60222fc67bfd50d752a9c89da5cce4c39ed39decc84a443b07bbd69a"
|
|
537
566
|
dependencies = [
|
|
538
567
|
"cc",
|
|
539
568
|
"rustc_version",
|
|
@@ -557,6 +586,12 @@ dependencies = [
|
|
|
557
586
|
"cfg-if",
|
|
558
587
|
]
|
|
559
588
|
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "equivalent"
|
|
591
|
+
version = "1.0.0"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
|
|
594
|
+
|
|
560
595
|
[[package]]
|
|
561
596
|
name = "errno"
|
|
562
597
|
version = "0.3.1"
|
|
@@ -565,7 +600,7 @@ checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
|
565
600
|
dependencies = [
|
|
566
601
|
"errno-dragonfly",
|
|
567
602
|
"libc",
|
|
568
|
-
"windows-sys
|
|
603
|
+
"windows-sys",
|
|
569
604
|
]
|
|
570
605
|
|
|
571
606
|
[[package]]
|
|
@@ -598,9 +633,9 @@ dependencies = [
|
|
|
598
633
|
|
|
599
634
|
[[package]]
|
|
600
635
|
name = "field-offset"
|
|
601
|
-
version = "0.3.
|
|
636
|
+
version = "0.3.6"
|
|
602
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
638
|
+
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
|
|
604
639
|
dependencies = [
|
|
605
640
|
"memoffset",
|
|
606
641
|
"rustc_version",
|
|
@@ -639,9 +674,9 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
|
639
674
|
|
|
640
675
|
[[package]]
|
|
641
676
|
name = "form_urlencoded"
|
|
642
|
-
version = "1.
|
|
677
|
+
version = "1.2.0"
|
|
643
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
-
checksum = "
|
|
679
|
+
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
|
|
645
680
|
dependencies = [
|
|
646
681
|
"percent-encoding",
|
|
647
682
|
]
|
|
@@ -696,7 +731,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
|
|
696
731
|
dependencies = [
|
|
697
732
|
"proc-macro2",
|
|
698
733
|
"quote",
|
|
699
|
-
"syn 2.0.
|
|
734
|
+
"syn 2.0.25",
|
|
700
735
|
]
|
|
701
736
|
|
|
702
737
|
[[package]]
|
|
@@ -825,9 +860,9 @@ dependencies = [
|
|
|
825
860
|
|
|
826
861
|
[[package]]
|
|
827
862
|
name = "generator"
|
|
828
|
-
version = "0.7.
|
|
863
|
+
version = "0.7.5"
|
|
829
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
865
|
+
checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
|
|
831
866
|
dependencies = [
|
|
832
867
|
"cc",
|
|
833
868
|
"libc",
|
|
@@ -859,15 +894,21 @@ dependencies = [
|
|
|
859
894
|
|
|
860
895
|
[[package]]
|
|
861
896
|
name = "getrandom"
|
|
862
|
-
version = "0.2.
|
|
897
|
+
version = "0.2.10"
|
|
863
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
-
checksum = "
|
|
899
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
|
865
900
|
dependencies = [
|
|
866
901
|
"cfg-if",
|
|
867
902
|
"libc",
|
|
868
903
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
869
904
|
]
|
|
870
905
|
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "gimli"
|
|
908
|
+
version = "0.27.3"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
|
|
911
|
+
|
|
871
912
|
[[package]]
|
|
872
913
|
name = "gio"
|
|
873
914
|
version = "0.16.7"
|
|
@@ -903,9 +944,9 @@ dependencies = [
|
|
|
903
944
|
|
|
904
945
|
[[package]]
|
|
905
946
|
name = "glib"
|
|
906
|
-
version = "0.16.
|
|
947
|
+
version = "0.16.9"
|
|
907
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
-
checksum = "
|
|
949
|
+
checksum = "16aa2475c9debed5a32832cb5ff2af5a3f9e1ab9e69df58eaadc1ab2004d6eba"
|
|
909
950
|
dependencies = [
|
|
910
951
|
"bitflags",
|
|
911
952
|
"futures-channel",
|
|
@@ -1022,9 +1063,9 @@ dependencies = [
|
|
|
1022
1063
|
|
|
1023
1064
|
[[package]]
|
|
1024
1065
|
name = "h2"
|
|
1025
|
-
version = "0.3.
|
|
1066
|
+
version = "0.3.20"
|
|
1026
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
1068
|
+
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
|
|
1028
1069
|
dependencies = [
|
|
1029
1070
|
"bytes",
|
|
1030
1071
|
"fnv",
|
|
@@ -1032,7 +1073,7 @@ dependencies = [
|
|
|
1032
1073
|
"futures-sink",
|
|
1033
1074
|
"futures-util",
|
|
1034
1075
|
"http",
|
|
1035
|
-
"indexmap",
|
|
1076
|
+
"indexmap 1.9.3",
|
|
1036
1077
|
"slab",
|
|
1037
1078
|
"tokio",
|
|
1038
1079
|
"tokio-util",
|
|
@@ -1046,25 +1087,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1046
1087
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1047
1088
|
|
|
1048
1089
|
[[package]]
|
|
1049
|
-
name = "
|
|
1050
|
-
version = "0.
|
|
1090
|
+
name = "hashbrown"
|
|
1091
|
+
version = "0.14.0"
|
|
1051
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
-
checksum = "
|
|
1093
|
+
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
|
1053
1094
|
|
|
1054
1095
|
[[package]]
|
|
1055
|
-
name = "
|
|
1056
|
-
version = "0.
|
|
1096
|
+
name = "heck"
|
|
1097
|
+
version = "0.4.1"
|
|
1057
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
-
checksum = "
|
|
1059
|
-
dependencies = [
|
|
1060
|
-
"libc",
|
|
1061
|
-
]
|
|
1099
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1062
1100
|
|
|
1063
1101
|
[[package]]
|
|
1064
1102
|
name = "hermit-abi"
|
|
1065
|
-
version = "0.3.
|
|
1103
|
+
version = "0.3.2"
|
|
1066
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
-
checksum = "
|
|
1105
|
+
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
|
1068
1106
|
|
|
1069
1107
|
[[package]]
|
|
1070
1108
|
name = "hex"
|
|
@@ -1094,7 +1132,7 @@ checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
|
|
1094
1132
|
dependencies = [
|
|
1095
1133
|
"bytes",
|
|
1096
1134
|
"fnv",
|
|
1097
|
-
"itoa 1.0.
|
|
1135
|
+
"itoa 1.0.8",
|
|
1098
1136
|
]
|
|
1099
1137
|
|
|
1100
1138
|
[[package]]
|
|
@@ -1128,9 +1166,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
|
|
1128
1166
|
|
|
1129
1167
|
[[package]]
|
|
1130
1168
|
name = "hyper"
|
|
1131
|
-
version = "0.14.
|
|
1169
|
+
version = "0.14.27"
|
|
1132
1170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "
|
|
1171
|
+
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
|
|
1134
1172
|
dependencies = [
|
|
1135
1173
|
"bytes",
|
|
1136
1174
|
"futures-channel",
|
|
@@ -1141,7 +1179,7 @@ dependencies = [
|
|
|
1141
1179
|
"http-body",
|
|
1142
1180
|
"httparse",
|
|
1143
1181
|
"httpdate",
|
|
1144
|
-
"itoa 1.0.
|
|
1182
|
+
"itoa 1.0.8",
|
|
1145
1183
|
"pin-project-lite",
|
|
1146
1184
|
"socket2",
|
|
1147
1185
|
"tokio",
|
|
@@ -1152,9 +1190,9 @@ dependencies = [
|
|
|
1152
1190
|
|
|
1153
1191
|
[[package]]
|
|
1154
1192
|
name = "iana-time-zone"
|
|
1155
|
-
version = "0.1.
|
|
1193
|
+
version = "0.1.57"
|
|
1156
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
-
checksum = "
|
|
1195
|
+
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
|
|
1158
1196
|
dependencies = [
|
|
1159
1197
|
"android_system_properties",
|
|
1160
1198
|
"core-foundation-sys",
|
|
@@ -1191,9 +1229,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1191
1229
|
|
|
1192
1230
|
[[package]]
|
|
1193
1231
|
name = "idna"
|
|
1194
|
-
version = "0.
|
|
1232
|
+
version = "0.4.0"
|
|
1195
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
-
checksum = "
|
|
1234
|
+
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
|
|
1197
1235
|
dependencies = [
|
|
1198
1236
|
"unicode-bidi",
|
|
1199
1237
|
"unicode-normalization",
|
|
@@ -1219,10 +1257,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1219
1257
|
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1220
1258
|
dependencies = [
|
|
1221
1259
|
"autocfg",
|
|
1222
|
-
"hashbrown",
|
|
1260
|
+
"hashbrown 0.12.3",
|
|
1223
1261
|
"serde",
|
|
1224
1262
|
]
|
|
1225
1263
|
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "indexmap"
|
|
1266
|
+
version = "2.0.0"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"equivalent",
|
|
1271
|
+
"hashbrown 0.14.0",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1226
1274
|
[[package]]
|
|
1227
1275
|
name = "infer"
|
|
1228
1276
|
version = "0.12.0"
|
|
@@ -1247,16 +1295,16 @@ version = "1.0.11"
|
|
|
1247
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
1296
|
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
|
1249
1297
|
dependencies = [
|
|
1250
|
-
"hermit-abi
|
|
1298
|
+
"hermit-abi",
|
|
1251
1299
|
"libc",
|
|
1252
|
-
"windows-sys
|
|
1300
|
+
"windows-sys",
|
|
1253
1301
|
]
|
|
1254
1302
|
|
|
1255
1303
|
[[package]]
|
|
1256
1304
|
name = "ipnet"
|
|
1257
|
-
version = "2.
|
|
1305
|
+
version = "2.8.0"
|
|
1258
1306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
-
checksum = "
|
|
1307
|
+
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
|
|
1260
1308
|
|
|
1261
1309
|
[[package]]
|
|
1262
1310
|
name = "itoa"
|
|
@@ -1266,9 +1314,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
|
1266
1314
|
|
|
1267
1315
|
[[package]]
|
|
1268
1316
|
name = "itoa"
|
|
1269
|
-
version = "1.0.
|
|
1317
|
+
version = "1.0.8"
|
|
1270
1318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
-
checksum = "
|
|
1319
|
+
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
|
|
1272
1320
|
|
|
1273
1321
|
[[package]]
|
|
1274
1322
|
name = "javascriptcore-rs"
|
|
@@ -1315,9 +1363,9 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
|
1315
1363
|
|
|
1316
1364
|
[[package]]
|
|
1317
1365
|
name = "js-sys"
|
|
1318
|
-
version = "0.3.
|
|
1366
|
+
version = "0.3.64"
|
|
1319
1367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "
|
|
1368
|
+
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
|
|
1321
1369
|
dependencies = [
|
|
1322
1370
|
"wasm-bindgen",
|
|
1323
1371
|
]
|
|
@@ -1354,9 +1402,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
1354
1402
|
|
|
1355
1403
|
[[package]]
|
|
1356
1404
|
name = "libc"
|
|
1357
|
-
version = "0.2.
|
|
1405
|
+
version = "0.2.147"
|
|
1358
1406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1407
|
+
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
|
1360
1408
|
|
|
1361
1409
|
[[package]]
|
|
1362
1410
|
name = "line-wrap"
|
|
@@ -1375,9 +1423,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
|
|
1375
1423
|
|
|
1376
1424
|
[[package]]
|
|
1377
1425
|
name = "lock_api"
|
|
1378
|
-
version = "0.4.
|
|
1426
|
+
version = "0.4.10"
|
|
1379
1427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
1428
|
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
|
1381
1429
|
dependencies = [
|
|
1382
1430
|
"autocfg",
|
|
1383
1431
|
"scopeguard",
|
|
@@ -1385,12 +1433,9 @@ dependencies = [
|
|
|
1385
1433
|
|
|
1386
1434
|
[[package]]
|
|
1387
1435
|
name = "log"
|
|
1388
|
-
version = "0.4.
|
|
1436
|
+
version = "0.4.19"
|
|
1389
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
-
checksum = "
|
|
1391
|
-
dependencies = [
|
|
1392
|
-
"cfg-if",
|
|
1393
|
-
]
|
|
1438
|
+
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
|
1394
1439
|
|
|
1395
1440
|
[[package]]
|
|
1396
1441
|
name = "loom"
|
|
@@ -1442,7 +1487,7 @@ version = "0.1.0"
|
|
|
1442
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
1488
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
1444
1489
|
dependencies = [
|
|
1445
|
-
"regex-automata",
|
|
1490
|
+
"regex-automata 0.1.10",
|
|
1446
1491
|
]
|
|
1447
1492
|
|
|
1448
1493
|
[[package]]
|
|
@@ -1459,9 +1504,9 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
|
1459
1504
|
|
|
1460
1505
|
[[package]]
|
|
1461
1506
|
name = "memoffset"
|
|
1462
|
-
version = "0.
|
|
1507
|
+
version = "0.9.0"
|
|
1463
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
-
checksum = "
|
|
1509
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
1465
1510
|
dependencies = [
|
|
1466
1511
|
"autocfg",
|
|
1467
1512
|
]
|
|
@@ -1484,14 +1529,13 @@ dependencies = [
|
|
|
1484
1529
|
|
|
1485
1530
|
[[package]]
|
|
1486
1531
|
name = "mio"
|
|
1487
|
-
version = "0.8.
|
|
1532
|
+
version = "0.8.8"
|
|
1488
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
-
checksum = "
|
|
1534
|
+
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
|
|
1490
1535
|
dependencies = [
|
|
1491
1536
|
"libc",
|
|
1492
|
-
"log",
|
|
1493
1537
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1494
|
-
"windows-sys
|
|
1538
|
+
"windows-sys",
|
|
1495
1539
|
]
|
|
1496
1540
|
|
|
1497
1541
|
[[package]]
|
|
@@ -1576,11 +1620,11 @@ dependencies = [
|
|
|
1576
1620
|
|
|
1577
1621
|
[[package]]
|
|
1578
1622
|
name = "num_cpus"
|
|
1579
|
-
version = "1.
|
|
1623
|
+
version = "1.16.0"
|
|
1580
1624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
-
checksum = "
|
|
1625
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1582
1626
|
dependencies = [
|
|
1583
|
-
"hermit-abi
|
|
1627
|
+
"hermit-abi",
|
|
1584
1628
|
"libc",
|
|
1585
1629
|
]
|
|
1586
1630
|
|
|
@@ -1633,11 +1677,20 @@ dependencies = [
|
|
|
1633
1677
|
"objc",
|
|
1634
1678
|
]
|
|
1635
1679
|
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "object"
|
|
1682
|
+
version = "0.31.1"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
|
|
1685
|
+
dependencies = [
|
|
1686
|
+
"memchr",
|
|
1687
|
+
]
|
|
1688
|
+
|
|
1636
1689
|
[[package]]
|
|
1637
1690
|
name = "once_cell"
|
|
1638
|
-
version = "1.
|
|
1691
|
+
version = "1.18.0"
|
|
1639
1692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
-
checksum = "
|
|
1693
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
|
1641
1694
|
|
|
1642
1695
|
[[package]]
|
|
1643
1696
|
name = "overload"
|
|
@@ -1683,22 +1736,22 @@ dependencies = [
|
|
|
1683
1736
|
|
|
1684
1737
|
[[package]]
|
|
1685
1738
|
name = "parking_lot_core"
|
|
1686
|
-
version = "0.9.
|
|
1739
|
+
version = "0.9.8"
|
|
1687
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
-
checksum = "
|
|
1741
|
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
|
1689
1742
|
dependencies = [
|
|
1690
1743
|
"cfg-if",
|
|
1691
1744
|
"libc",
|
|
1692
|
-
"redox_syscall 0.
|
|
1745
|
+
"redox_syscall 0.3.5",
|
|
1693
1746
|
"smallvec",
|
|
1694
|
-
"windows-
|
|
1747
|
+
"windows-targets 0.48.1",
|
|
1695
1748
|
]
|
|
1696
1749
|
|
|
1697
1750
|
[[package]]
|
|
1698
1751
|
name = "percent-encoding"
|
|
1699
|
-
version = "2.
|
|
1752
|
+
version = "2.3.0"
|
|
1700
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
-
checksum = "
|
|
1754
|
+
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
|
1702
1755
|
|
|
1703
1756
|
[[package]]
|
|
1704
1757
|
name = "phf"
|
|
@@ -1800,9 +1853,9 @@ dependencies = [
|
|
|
1800
1853
|
|
|
1801
1854
|
[[package]]
|
|
1802
1855
|
name = "pin-project-lite"
|
|
1803
|
-
version = "0.2.
|
|
1856
|
+
version = "0.2.10"
|
|
1804
1857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
-
checksum = "
|
|
1858
|
+
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
|
|
1806
1859
|
|
|
1807
1860
|
[[package]]
|
|
1808
1861
|
name = "pin-utils"
|
|
@@ -1818,12 +1871,12 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
|
|
1818
1871
|
|
|
1819
1872
|
[[package]]
|
|
1820
1873
|
name = "plist"
|
|
1821
|
-
version = "1.
|
|
1874
|
+
version = "1.5.0"
|
|
1822
1875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
-
checksum = "
|
|
1876
|
+
checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06"
|
|
1824
1877
|
dependencies = [
|
|
1825
1878
|
"base64 0.21.2",
|
|
1826
|
-
"indexmap",
|
|
1879
|
+
"indexmap 1.9.3",
|
|
1827
1880
|
"line-wrap",
|
|
1828
1881
|
"quick-xml",
|
|
1829
1882
|
"serde",
|
|
@@ -1832,9 +1885,9 @@ dependencies = [
|
|
|
1832
1885
|
|
|
1833
1886
|
[[package]]
|
|
1834
1887
|
name = "png"
|
|
1835
|
-
version = "0.17.
|
|
1888
|
+
version = "0.17.9"
|
|
1836
1889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "
|
|
1890
|
+
checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
|
|
1838
1891
|
dependencies = [
|
|
1839
1892
|
"bitflags",
|
|
1840
1893
|
"crc32fast",
|
|
@@ -1897,27 +1950,27 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
1897
1950
|
|
|
1898
1951
|
[[package]]
|
|
1899
1952
|
name = "proc-macro2"
|
|
1900
|
-
version = "1.0.
|
|
1953
|
+
version = "1.0.64"
|
|
1901
1954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
-
checksum = "
|
|
1955
|
+
checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
|
|
1903
1956
|
dependencies = [
|
|
1904
1957
|
"unicode-ident",
|
|
1905
1958
|
]
|
|
1906
1959
|
|
|
1907
1960
|
[[package]]
|
|
1908
1961
|
name = "quick-xml"
|
|
1909
|
-
version = "0.
|
|
1962
|
+
version = "0.29.0"
|
|
1910
1963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
-
checksum = "
|
|
1964
|
+
checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51"
|
|
1912
1965
|
dependencies = [
|
|
1913
1966
|
"memchr",
|
|
1914
1967
|
]
|
|
1915
1968
|
|
|
1916
1969
|
[[package]]
|
|
1917
1970
|
name = "quote"
|
|
1918
|
-
version = "1.0.
|
|
1971
|
+
version = "1.0.29"
|
|
1919
1972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
-
checksum = "
|
|
1973
|
+
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
|
|
1921
1974
|
dependencies = [
|
|
1922
1975
|
"proc-macro2",
|
|
1923
1976
|
]
|
|
@@ -1982,7 +2035,7 @@ version = "0.6.4"
|
|
|
1982
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
2036
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1984
2037
|
dependencies = [
|
|
1985
|
-
"getrandom 0.2.
|
|
2038
|
+
"getrandom 0.2.10",
|
|
1986
2039
|
]
|
|
1987
2040
|
|
|
1988
2041
|
[[package]]
|
|
@@ -2033,20 +2086,21 @@ version = "0.4.3"
|
|
|
2033
2086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
2087
|
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
|
2035
2088
|
dependencies = [
|
|
2036
|
-
"getrandom 0.2.
|
|
2089
|
+
"getrandom 0.2.10",
|
|
2037
2090
|
"redox_syscall 0.2.16",
|
|
2038
2091
|
"thiserror",
|
|
2039
2092
|
]
|
|
2040
2093
|
|
|
2041
2094
|
[[package]]
|
|
2042
2095
|
name = "regex"
|
|
2043
|
-
version = "1.
|
|
2096
|
+
version = "1.9.1"
|
|
2044
2097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
-
checksum = "
|
|
2098
|
+
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
|
|
2046
2099
|
dependencies = [
|
|
2047
2100
|
"aho-corasick",
|
|
2048
2101
|
"memchr",
|
|
2049
|
-
"regex-
|
|
2102
|
+
"regex-automata 0.3.2",
|
|
2103
|
+
"regex-syntax 0.7.3",
|
|
2050
2104
|
]
|
|
2051
2105
|
|
|
2052
2106
|
[[package]]
|
|
@@ -2058,6 +2112,17 @@ dependencies = [
|
|
|
2058
2112
|
"regex-syntax 0.6.29",
|
|
2059
2113
|
]
|
|
2060
2114
|
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "regex-automata"
|
|
2117
|
+
version = "0.3.2"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf"
|
|
2120
|
+
dependencies = [
|
|
2121
|
+
"aho-corasick",
|
|
2122
|
+
"memchr",
|
|
2123
|
+
"regex-syntax 0.7.3",
|
|
2124
|
+
]
|
|
2125
|
+
|
|
2061
2126
|
[[package]]
|
|
2062
2127
|
name = "regex-syntax"
|
|
2063
2128
|
version = "0.6.29"
|
|
@@ -2066,9 +2131,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
2066
2131
|
|
|
2067
2132
|
[[package]]
|
|
2068
2133
|
name = "regex-syntax"
|
|
2069
|
-
version = "0.7.
|
|
2134
|
+
version = "0.7.3"
|
|
2070
2135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
-
checksum = "
|
|
2136
|
+
checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
|
|
2072
2137
|
|
|
2073
2138
|
[[package]]
|
|
2074
2139
|
name = "reqwest"
|
|
@@ -2106,6 +2171,12 @@ dependencies = [
|
|
|
2106
2171
|
"winreg 0.10.1",
|
|
2107
2172
|
]
|
|
2108
2173
|
|
|
2174
|
+
[[package]]
|
|
2175
|
+
name = "rustc-demangle"
|
|
2176
|
+
version = "0.1.23"
|
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
2179
|
+
|
|
2109
2180
|
[[package]]
|
|
2110
2181
|
name = "rustc_version"
|
|
2111
2182
|
version = "0.4.0"
|
|
@@ -2117,29 +2188,29 @@ dependencies = [
|
|
|
2117
2188
|
|
|
2118
2189
|
[[package]]
|
|
2119
2190
|
name = "rustix"
|
|
2120
|
-
version = "0.37.
|
|
2191
|
+
version = "0.37.23"
|
|
2121
2192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
-
checksum = "
|
|
2193
|
+
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
|
|
2123
2194
|
dependencies = [
|
|
2124
2195
|
"bitflags",
|
|
2125
2196
|
"errno",
|
|
2126
2197
|
"io-lifetimes",
|
|
2127
2198
|
"libc",
|
|
2128
2199
|
"linux-raw-sys",
|
|
2129
|
-
"windows-sys
|
|
2200
|
+
"windows-sys",
|
|
2130
2201
|
]
|
|
2131
2202
|
|
|
2132
2203
|
[[package]]
|
|
2133
2204
|
name = "rustversion"
|
|
2134
|
-
version = "1.0.
|
|
2205
|
+
version = "1.0.13"
|
|
2135
2206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
-
checksum = "
|
|
2207
|
+
checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f"
|
|
2137
2208
|
|
|
2138
2209
|
[[package]]
|
|
2139
2210
|
name = "ryu"
|
|
2140
|
-
version = "1.0.
|
|
2211
|
+
version = "1.0.14"
|
|
2141
2212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
-
checksum = "
|
|
2213
|
+
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
|
|
2143
2214
|
|
|
2144
2215
|
[[package]]
|
|
2145
2216
|
name = "safemem"
|
|
@@ -2199,51 +2270,51 @@ dependencies = [
|
|
|
2199
2270
|
|
|
2200
2271
|
[[package]]
|
|
2201
2272
|
name = "serde"
|
|
2202
|
-
version = "1.0.
|
|
2273
|
+
version = "1.0.171"
|
|
2203
2274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
-
checksum = "
|
|
2275
|
+
checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
|
|
2205
2276
|
dependencies = [
|
|
2206
2277
|
"serde_derive",
|
|
2207
2278
|
]
|
|
2208
2279
|
|
|
2209
2280
|
[[package]]
|
|
2210
2281
|
name = "serde_derive"
|
|
2211
|
-
version = "1.0.
|
|
2282
|
+
version = "1.0.171"
|
|
2212
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
-
checksum = "
|
|
2284
|
+
checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
|
|
2214
2285
|
dependencies = [
|
|
2215
2286
|
"proc-macro2",
|
|
2216
2287
|
"quote",
|
|
2217
|
-
"syn 2.0.
|
|
2288
|
+
"syn 2.0.25",
|
|
2218
2289
|
]
|
|
2219
2290
|
|
|
2220
2291
|
[[package]]
|
|
2221
2292
|
name = "serde_json"
|
|
2222
|
-
version = "1.0.
|
|
2293
|
+
version = "1.0.100"
|
|
2223
2294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
-
checksum = "
|
|
2295
|
+
checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c"
|
|
2225
2296
|
dependencies = [
|
|
2226
|
-
"itoa 1.0.
|
|
2297
|
+
"itoa 1.0.8",
|
|
2227
2298
|
"ryu",
|
|
2228
2299
|
"serde",
|
|
2229
2300
|
]
|
|
2230
2301
|
|
|
2231
2302
|
[[package]]
|
|
2232
2303
|
name = "serde_repr"
|
|
2233
|
-
version = "0.1.
|
|
2304
|
+
version = "0.1.14"
|
|
2234
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
-
checksum = "
|
|
2306
|
+
checksum = "1d89a8107374290037607734c0b73a85db7ed80cae314b3c5791f192a496e731"
|
|
2236
2307
|
dependencies = [
|
|
2237
2308
|
"proc-macro2",
|
|
2238
2309
|
"quote",
|
|
2239
|
-
"syn 2.0.
|
|
2310
|
+
"syn 2.0.25",
|
|
2240
2311
|
]
|
|
2241
2312
|
|
|
2242
2313
|
[[package]]
|
|
2243
2314
|
name = "serde_spanned"
|
|
2244
|
-
version = "0.6.
|
|
2315
|
+
version = "0.6.3"
|
|
2245
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
-
checksum = "
|
|
2317
|
+
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
|
|
2247
2318
|
dependencies = [
|
|
2248
2319
|
"serde",
|
|
2249
2320
|
]
|
|
@@ -2255,21 +2326,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2255
2326
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2256
2327
|
dependencies = [
|
|
2257
2328
|
"form_urlencoded",
|
|
2258
|
-
"itoa 1.0.
|
|
2329
|
+
"itoa 1.0.8",
|
|
2259
2330
|
"ryu",
|
|
2260
2331
|
"serde",
|
|
2261
2332
|
]
|
|
2262
2333
|
|
|
2263
2334
|
[[package]]
|
|
2264
2335
|
name = "serde_with"
|
|
2265
|
-
version = "
|
|
2336
|
+
version = "3.0.0"
|
|
2266
2337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
-
checksum = "
|
|
2338
|
+
checksum = "9f02d8aa6e3c385bf084924f660ce2a3a6bd333ba55b35e8590b321f35d88513"
|
|
2268
2339
|
dependencies = [
|
|
2269
|
-
"base64 0.
|
|
2340
|
+
"base64 0.21.2",
|
|
2270
2341
|
"chrono",
|
|
2271
2342
|
"hex",
|
|
2272
|
-
"indexmap",
|
|
2343
|
+
"indexmap 1.9.3",
|
|
2273
2344
|
"serde",
|
|
2274
2345
|
"serde_json",
|
|
2275
2346
|
"serde_with_macros",
|
|
@@ -2278,14 +2349,14 @@ dependencies = [
|
|
|
2278
2349
|
|
|
2279
2350
|
[[package]]
|
|
2280
2351
|
name = "serde_with_macros"
|
|
2281
|
-
version = "
|
|
2352
|
+
version = "3.0.0"
|
|
2282
2353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
-
checksum = "
|
|
2354
|
+
checksum = "edc7d5d3932fb12ce722ee5e64dd38c504efba37567f0c402f6ca728c3b8b070"
|
|
2284
2355
|
dependencies = [
|
|
2285
2356
|
"darling",
|
|
2286
2357
|
"proc-macro2",
|
|
2287
2358
|
"quote",
|
|
2288
|
-
"syn 2.0.
|
|
2359
|
+
"syn 2.0.25",
|
|
2289
2360
|
]
|
|
2290
2361
|
|
|
2291
2362
|
[[package]]
|
|
@@ -2322,9 +2393,9 @@ dependencies = [
|
|
|
2322
2393
|
|
|
2323
2394
|
[[package]]
|
|
2324
2395
|
name = "sha2"
|
|
2325
|
-
version = "0.10.
|
|
2396
|
+
version = "0.10.7"
|
|
2326
2397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
-
checksum = "
|
|
2398
|
+
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
|
|
2328
2399
|
dependencies = [
|
|
2329
2400
|
"cfg-if",
|
|
2330
2401
|
"cpufeatures",
|
|
@@ -2363,9 +2434,9 @@ dependencies = [
|
|
|
2363
2434
|
|
|
2364
2435
|
[[package]]
|
|
2365
2436
|
name = "smallvec"
|
|
2366
|
-
version = "1.
|
|
2437
|
+
version = "1.11.0"
|
|
2367
2438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
-
checksum = "
|
|
2439
|
+
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
|
|
2369
2440
|
|
|
2370
2441
|
[[package]]
|
|
2371
2442
|
name = "socket2"
|
|
@@ -2476,9 +2547,9 @@ dependencies = [
|
|
|
2476
2547
|
|
|
2477
2548
|
[[package]]
|
|
2478
2549
|
name = "syn"
|
|
2479
|
-
version = "2.0.
|
|
2550
|
+
version = "2.0.25"
|
|
2480
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
-
checksum = "
|
|
2552
|
+
checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
|
|
2482
2553
|
dependencies = [
|
|
2483
2554
|
"proc-macro2",
|
|
2484
2555
|
"quote",
|
|
@@ -2487,9 +2558,9 @@ dependencies = [
|
|
|
2487
2558
|
|
|
2488
2559
|
[[package]]
|
|
2489
2560
|
name = "system-deps"
|
|
2490
|
-
version = "6.1.
|
|
2561
|
+
version = "6.1.1"
|
|
2491
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
-
checksum = "
|
|
2563
|
+
checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3"
|
|
2493
2564
|
dependencies = [
|
|
2494
2565
|
"cfg-expr",
|
|
2495
2566
|
"heck",
|
|
@@ -2558,15 +2629,15 @@ dependencies = [
|
|
|
2558
2629
|
|
|
2559
2630
|
[[package]]
|
|
2560
2631
|
name = "target-lexicon"
|
|
2561
|
-
version = "0.12.
|
|
2632
|
+
version = "0.12.8"
|
|
2562
2633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "
|
|
2634
|
+
checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac"
|
|
2564
2635
|
|
|
2565
2636
|
[[package]]
|
|
2566
2637
|
name = "tauri"
|
|
2567
|
-
version = "2.0.0-alpha.
|
|
2638
|
+
version = "2.0.0-alpha.10"
|
|
2568
2639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
-
checksum = "
|
|
2640
|
+
checksum = "2e18377a75e314aa1d476896af881ed63f57a78ca84889fe63e69067f0de158d"
|
|
2570
2641
|
dependencies = [
|
|
2571
2642
|
"anyhow",
|
|
2572
2643
|
"bytes",
|
|
@@ -2612,9 +2683,9 @@ dependencies = [
|
|
|
2612
2683
|
|
|
2613
2684
|
[[package]]
|
|
2614
2685
|
name = "tauri-build"
|
|
2615
|
-
version = "2.0.0-alpha.
|
|
2686
|
+
version = "2.0.0-alpha.6"
|
|
2616
2687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
-
checksum = "
|
|
2688
|
+
checksum = "a52990870fd043f1d3bd6719ae713ef2e0c50431334d7249f6ae8509d1b8c326"
|
|
2618
2689
|
dependencies = [
|
|
2619
2690
|
"anyhow",
|
|
2620
2691
|
"cargo_toml",
|
|
@@ -2631,9 +2702,9 @@ dependencies = [
|
|
|
2631
2702
|
|
|
2632
2703
|
[[package]]
|
|
2633
2704
|
name = "tauri-codegen"
|
|
2634
|
-
version = "2.0.0-alpha.
|
|
2705
|
+
version = "2.0.0-alpha.6"
|
|
2635
2706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
-
checksum = "
|
|
2707
|
+
checksum = "5c1f1611ab0896f2693163ba4e8f3e39c02a1b70cdca4314286b5e365a5e08c6"
|
|
2637
2708
|
dependencies = [
|
|
2638
2709
|
"base64 0.21.2",
|
|
2639
2710
|
"brotli",
|
|
@@ -2657,9 +2728,9 @@ dependencies = [
|
|
|
2657
2728
|
|
|
2658
2729
|
[[package]]
|
|
2659
2730
|
name = "tauri-macros"
|
|
2660
|
-
version = "2.0.0-alpha.
|
|
2731
|
+
version = "2.0.0-alpha.6"
|
|
2661
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
|
-
checksum = "
|
|
2733
|
+
checksum = "22752425c6dd6f3a058f376db7371f1d5bac250e340d40ba6c97ecf7182eef29"
|
|
2663
2734
|
dependencies = [
|
|
2664
2735
|
"heck",
|
|
2665
2736
|
"proc-macro2",
|
|
@@ -2682,9 +2753,9 @@ dependencies = [
|
|
|
2682
2753
|
|
|
2683
2754
|
[[package]]
|
|
2684
2755
|
name = "tauri-runtime"
|
|
2685
|
-
version = "0.13.0-alpha.
|
|
2756
|
+
version = "0.13.0-alpha.6"
|
|
2686
2757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2687
|
-
checksum = "
|
|
2758
|
+
checksum = "d7ce19f1309299bbc38ee9236307fad4943bd8fb09dd3fea5e9dd93c1d0898d6"
|
|
2688
2759
|
dependencies = [
|
|
2689
2760
|
"gtk",
|
|
2690
2761
|
"http",
|
|
@@ -2703,9 +2774,9 @@ dependencies = [
|
|
|
2703
2774
|
|
|
2704
2775
|
[[package]]
|
|
2705
2776
|
name = "tauri-runtime-wry"
|
|
2706
|
-
version = "0.13.0-alpha.
|
|
2777
|
+
version = "0.13.0-alpha.6"
|
|
2707
2778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
-
checksum = "
|
|
2779
|
+
checksum = "1231be42085f3a8b150e615601f8a070bd16bf579771a5dafe2931970a05b518"
|
|
2709
2780
|
dependencies = [
|
|
2710
2781
|
"cocoa",
|
|
2711
2782
|
"gtk",
|
|
@@ -2723,8 +2794,8 @@ dependencies = [
|
|
|
2723
2794
|
]
|
|
2724
2795
|
|
|
2725
2796
|
[[package]]
|
|
2726
|
-
name = "tauri-ui
|
|
2727
|
-
version = "0.
|
|
2797
|
+
name = "tauri-ui"
|
|
2798
|
+
version = "0.1.0"
|
|
2728
2799
|
dependencies = [
|
|
2729
2800
|
"serde",
|
|
2730
2801
|
"serde_json",
|
|
@@ -2735,12 +2806,13 @@ dependencies = [
|
|
|
2735
2806
|
|
|
2736
2807
|
[[package]]
|
|
2737
2808
|
name = "tauri-utils"
|
|
2738
|
-
version = "2.0.0-alpha.
|
|
2809
|
+
version = "2.0.0-alpha.6"
|
|
2739
2810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
-
checksum = "
|
|
2811
|
+
checksum = "2e2812e0cdfffb892c654555b2f1b8c84a035b4c56eb1646cb3eb5a9d8164d8e"
|
|
2741
2812
|
dependencies = [
|
|
2742
2813
|
"brotli",
|
|
2743
2814
|
"ctor",
|
|
2815
|
+
"dunce",
|
|
2744
2816
|
"glob",
|
|
2745
2817
|
"heck",
|
|
2746
2818
|
"html5ever",
|
|
@@ -2773,15 +2845,16 @@ dependencies = [
|
|
|
2773
2845
|
|
|
2774
2846
|
[[package]]
|
|
2775
2847
|
name = "tempfile"
|
|
2776
|
-
version = "3.
|
|
2848
|
+
version = "3.6.0"
|
|
2777
2849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
-
checksum = "
|
|
2850
|
+
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
|
|
2779
2851
|
dependencies = [
|
|
2852
|
+
"autocfg",
|
|
2780
2853
|
"cfg-if",
|
|
2781
2854
|
"fastrand",
|
|
2782
2855
|
"redox_syscall 0.3.5",
|
|
2783
2856
|
"rustix",
|
|
2784
|
-
"windows-sys
|
|
2857
|
+
"windows-sys",
|
|
2785
2858
|
]
|
|
2786
2859
|
|
|
2787
2860
|
[[package]]
|
|
@@ -2803,22 +2876,22 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
|
|
|
2803
2876
|
|
|
2804
2877
|
[[package]]
|
|
2805
2878
|
name = "thiserror"
|
|
2806
|
-
version = "1.0.
|
|
2879
|
+
version = "1.0.43"
|
|
2807
2880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
-
checksum = "
|
|
2881
|
+
checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
|
|
2809
2882
|
dependencies = [
|
|
2810
2883
|
"thiserror-impl",
|
|
2811
2884
|
]
|
|
2812
2885
|
|
|
2813
2886
|
[[package]]
|
|
2814
2887
|
name = "thiserror-impl"
|
|
2815
|
-
version = "1.0.
|
|
2888
|
+
version = "1.0.43"
|
|
2816
2889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
|
-
checksum = "
|
|
2890
|
+
checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
|
|
2818
2891
|
dependencies = [
|
|
2819
2892
|
"proc-macro2",
|
|
2820
2893
|
"quote",
|
|
2821
|
-
"syn 2.0.
|
|
2894
|
+
"syn 2.0.25",
|
|
2822
2895
|
]
|
|
2823
2896
|
|
|
2824
2897
|
[[package]]
|
|
@@ -2833,11 +2906,11 @@ dependencies = [
|
|
|
2833
2906
|
|
|
2834
2907
|
[[package]]
|
|
2835
2908
|
name = "time"
|
|
2836
|
-
version = "0.3.
|
|
2909
|
+
version = "0.3.23"
|
|
2837
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
-
checksum = "
|
|
2911
|
+
checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446"
|
|
2839
2912
|
dependencies = [
|
|
2840
|
-
"itoa 1.0.
|
|
2913
|
+
"itoa 1.0.8",
|
|
2841
2914
|
"serde",
|
|
2842
2915
|
"time-core",
|
|
2843
2916
|
"time-macros",
|
|
@@ -2851,9 +2924,9 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
|
|
|
2851
2924
|
|
|
2852
2925
|
[[package]]
|
|
2853
2926
|
name = "time-macros"
|
|
2854
|
-
version = "0.2.
|
|
2927
|
+
version = "0.2.10"
|
|
2855
2928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
-
checksum = "
|
|
2929
|
+
checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4"
|
|
2857
2930
|
dependencies = [
|
|
2858
2931
|
"time-core",
|
|
2859
2932
|
]
|
|
@@ -2875,18 +2948,19 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2875
2948
|
|
|
2876
2949
|
[[package]]
|
|
2877
2950
|
name = "tokio"
|
|
2878
|
-
version = "1.
|
|
2951
|
+
version = "1.29.1"
|
|
2879
2952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
-
checksum = "
|
|
2953
|
+
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
|
|
2881
2954
|
dependencies = [
|
|
2882
2955
|
"autocfg",
|
|
2956
|
+
"backtrace",
|
|
2883
2957
|
"bytes",
|
|
2884
2958
|
"libc",
|
|
2885
2959
|
"mio",
|
|
2886
2960
|
"num_cpus",
|
|
2887
2961
|
"pin-project-lite",
|
|
2888
2962
|
"socket2",
|
|
2889
|
-
"windows-sys
|
|
2963
|
+
"windows-sys",
|
|
2890
2964
|
]
|
|
2891
2965
|
|
|
2892
2966
|
[[package]]
|
|
@@ -2905,9 +2979,9 @@ dependencies = [
|
|
|
2905
2979
|
|
|
2906
2980
|
[[package]]
|
|
2907
2981
|
name = "toml"
|
|
2908
|
-
version = "0.7.
|
|
2982
|
+
version = "0.7.6"
|
|
2909
2983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
2984
|
+
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
|
|
2911
2985
|
dependencies = [
|
|
2912
2986
|
"serde",
|
|
2913
2987
|
"serde_spanned",
|
|
@@ -2917,20 +2991,20 @@ dependencies = [
|
|
|
2917
2991
|
|
|
2918
2992
|
[[package]]
|
|
2919
2993
|
name = "toml_datetime"
|
|
2920
|
-
version = "0.6.
|
|
2994
|
+
version = "0.6.3"
|
|
2921
2995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
-
checksum = "
|
|
2996
|
+
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
|
|
2923
2997
|
dependencies = [
|
|
2924
2998
|
"serde",
|
|
2925
2999
|
]
|
|
2926
3000
|
|
|
2927
3001
|
[[package]]
|
|
2928
3002
|
name = "toml_edit"
|
|
2929
|
-
version = "0.19.
|
|
3003
|
+
version = "0.19.12"
|
|
2930
3004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
|
-
checksum = "
|
|
3005
|
+
checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78"
|
|
2932
3006
|
dependencies = [
|
|
2933
|
-
"indexmap",
|
|
3007
|
+
"indexmap 2.0.0",
|
|
2934
3008
|
"serde",
|
|
2935
3009
|
"serde_spanned",
|
|
2936
3010
|
"toml_datetime",
|
|
@@ -2957,13 +3031,13 @@ dependencies = [
|
|
|
2957
3031
|
|
|
2958
3032
|
[[package]]
|
|
2959
3033
|
name = "tracing-attributes"
|
|
2960
|
-
version = "0.1.
|
|
3034
|
+
version = "0.1.26"
|
|
2961
3035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3036
|
+
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
|
|
2963
3037
|
dependencies = [
|
|
2964
3038
|
"proc-macro2",
|
|
2965
3039
|
"quote",
|
|
2966
|
-
"syn 2.0.
|
|
3040
|
+
"syn 2.0.25",
|
|
2967
3041
|
]
|
|
2968
3042
|
|
|
2969
3043
|
[[package]]
|
|
@@ -3034,9 +3108,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
|
3034
3108
|
|
|
3035
3109
|
[[package]]
|
|
3036
3110
|
name = "unicode-ident"
|
|
3037
|
-
version = "1.0.
|
|
3111
|
+
version = "1.0.10"
|
|
3038
3112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3039
|
-
checksum = "
|
|
3113
|
+
checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
|
|
3040
3114
|
|
|
3041
3115
|
[[package]]
|
|
3042
3116
|
name = "unicode-normalization"
|
|
@@ -3055,9 +3129,9 @@ checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
|
|
|
3055
3129
|
|
|
3056
3130
|
[[package]]
|
|
3057
3131
|
name = "url"
|
|
3058
|
-
version = "2.
|
|
3132
|
+
version = "2.4.0"
|
|
3059
3133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
-
checksum = "
|
|
3134
|
+
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
|
|
3061
3135
|
dependencies = [
|
|
3062
3136
|
"form_urlencoded",
|
|
3063
3137
|
"idna",
|
|
@@ -3073,11 +3147,11 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
|
3073
3147
|
|
|
3074
3148
|
[[package]]
|
|
3075
3149
|
name = "uuid"
|
|
3076
|
-
version = "1.
|
|
3150
|
+
version = "1.4.0"
|
|
3077
3151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3078
|
-
checksum = "
|
|
3152
|
+
checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
|
|
3079
3153
|
dependencies = [
|
|
3080
|
-
"getrandom 0.2.
|
|
3154
|
+
"getrandom 0.2.10",
|
|
3081
3155
|
]
|
|
3082
3156
|
|
|
3083
3157
|
[[package]]
|
|
@@ -3130,11 +3204,10 @@ dependencies = [
|
|
|
3130
3204
|
|
|
3131
3205
|
[[package]]
|
|
3132
3206
|
name = "want"
|
|
3133
|
-
version = "0.3.
|
|
3207
|
+
version = "0.3.1"
|
|
3134
3208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
-
checksum = "
|
|
3209
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3136
3210
|
dependencies = [
|
|
3137
|
-
"log",
|
|
3138
3211
|
"try-lock",
|
|
3139
3212
|
]
|
|
3140
3213
|
|
|
@@ -3152,9 +3225,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
3152
3225
|
|
|
3153
3226
|
[[package]]
|
|
3154
3227
|
name = "wasm-bindgen"
|
|
3155
|
-
version = "0.2.
|
|
3228
|
+
version = "0.2.87"
|
|
3156
3229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3157
|
-
checksum = "
|
|
3230
|
+
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
|
|
3158
3231
|
dependencies = [
|
|
3159
3232
|
"cfg-if",
|
|
3160
3233
|
"wasm-bindgen-macro",
|
|
@@ -3162,24 +3235,24 @@ dependencies = [
|
|
|
3162
3235
|
|
|
3163
3236
|
[[package]]
|
|
3164
3237
|
name = "wasm-bindgen-backend"
|
|
3165
|
-
version = "0.2.
|
|
3238
|
+
version = "0.2.87"
|
|
3166
3239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
-
checksum = "
|
|
3240
|
+
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
|
|
3168
3241
|
dependencies = [
|
|
3169
3242
|
"bumpalo",
|
|
3170
3243
|
"log",
|
|
3171
3244
|
"once_cell",
|
|
3172
3245
|
"proc-macro2",
|
|
3173
3246
|
"quote",
|
|
3174
|
-
"syn 2.0.
|
|
3247
|
+
"syn 2.0.25",
|
|
3175
3248
|
"wasm-bindgen-shared",
|
|
3176
3249
|
]
|
|
3177
3250
|
|
|
3178
3251
|
[[package]]
|
|
3179
3252
|
name = "wasm-bindgen-futures"
|
|
3180
|
-
version = "0.4.
|
|
3253
|
+
version = "0.4.37"
|
|
3181
3254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
-
checksum = "
|
|
3255
|
+
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
|
|
3183
3256
|
dependencies = [
|
|
3184
3257
|
"cfg-if",
|
|
3185
3258
|
"js-sys",
|
|
@@ -3189,9 +3262,9 @@ dependencies = [
|
|
|
3189
3262
|
|
|
3190
3263
|
[[package]]
|
|
3191
3264
|
name = "wasm-bindgen-macro"
|
|
3192
|
-
version = "0.2.
|
|
3265
|
+
version = "0.2.87"
|
|
3193
3266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
-
checksum = "
|
|
3267
|
+
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
|
|
3195
3268
|
dependencies = [
|
|
3196
3269
|
"quote",
|
|
3197
3270
|
"wasm-bindgen-macro-support",
|
|
@@ -3199,22 +3272,22 @@ dependencies = [
|
|
|
3199
3272
|
|
|
3200
3273
|
[[package]]
|
|
3201
3274
|
name = "wasm-bindgen-macro-support"
|
|
3202
|
-
version = "0.2.
|
|
3275
|
+
version = "0.2.87"
|
|
3203
3276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3204
|
-
checksum = "
|
|
3277
|
+
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
|
3205
3278
|
dependencies = [
|
|
3206
3279
|
"proc-macro2",
|
|
3207
3280
|
"quote",
|
|
3208
|
-
"syn 2.0.
|
|
3281
|
+
"syn 2.0.25",
|
|
3209
3282
|
"wasm-bindgen-backend",
|
|
3210
3283
|
"wasm-bindgen-shared",
|
|
3211
3284
|
]
|
|
3212
3285
|
|
|
3213
3286
|
[[package]]
|
|
3214
3287
|
name = "wasm-bindgen-shared"
|
|
3215
|
-
version = "0.2.
|
|
3288
|
+
version = "0.2.87"
|
|
3216
3289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3217
|
-
checksum = "
|
|
3290
|
+
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
|
3218
3291
|
|
|
3219
3292
|
[[package]]
|
|
3220
3293
|
name = "wasm-streams"
|
|
@@ -3231,9 +3304,9 @@ dependencies = [
|
|
|
3231
3304
|
|
|
3232
3305
|
[[package]]
|
|
3233
3306
|
name = "web-sys"
|
|
3234
|
-
version = "0.3.
|
|
3307
|
+
version = "0.3.64"
|
|
3235
3308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3236
|
-
checksum = "
|
|
3309
|
+
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
|
|
3237
3310
|
dependencies = [
|
|
3238
3311
|
"js-sys",
|
|
3239
3312
|
"wasm-bindgen",
|
|
@@ -3369,7 +3442,7 @@ version = "0.48.0"
|
|
|
3369
3442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3370
3443
|
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
|
3371
3444
|
dependencies = [
|
|
3372
|
-
"windows-targets 0.48.
|
|
3445
|
+
"windows-targets 0.48.1",
|
|
3373
3446
|
]
|
|
3374
3447
|
|
|
3375
3448
|
[[package]]
|
|
@@ -3410,22 +3483,13 @@ version = "0.44.0"
|
|
|
3410
3483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
3484
|
checksum = "ee78911e3f4ce32c1ad9d3c7b0bd95389662ad8d8f1a3155688fed70bd96e2b6"
|
|
3412
3485
|
|
|
3413
|
-
[[package]]
|
|
3414
|
-
name = "windows-sys"
|
|
3415
|
-
version = "0.45.0"
|
|
3416
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
3418
|
-
dependencies = [
|
|
3419
|
-
"windows-targets 0.42.2",
|
|
3420
|
-
]
|
|
3421
|
-
|
|
3422
3486
|
[[package]]
|
|
3423
3487
|
name = "windows-sys"
|
|
3424
3488
|
version = "0.48.0"
|
|
3425
3489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
3490
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3427
3491
|
dependencies = [
|
|
3428
|
-
"windows-targets 0.48.
|
|
3492
|
+
"windows-targets 0.48.1",
|
|
3429
3493
|
]
|
|
3430
3494
|
|
|
3431
3495
|
[[package]]
|
|
@@ -3445,9 +3509,9 @@ dependencies = [
|
|
|
3445
3509
|
|
|
3446
3510
|
[[package]]
|
|
3447
3511
|
name = "windows-targets"
|
|
3448
|
-
version = "0.48.
|
|
3512
|
+
version = "0.48.1"
|
|
3449
3513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3450
|
-
checksum = "
|
|
3514
|
+
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
|
3451
3515
|
dependencies = [
|
|
3452
3516
|
"windows_aarch64_gnullvm 0.48.0",
|
|
3453
3517
|
"windows_aarch64_msvc 0.48.0",
|
|
@@ -3550,9 +3614,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
|
3550
3614
|
|
|
3551
3615
|
[[package]]
|
|
3552
3616
|
name = "winnow"
|
|
3553
|
-
version = "0.4.
|
|
3617
|
+
version = "0.4.9"
|
|
3554
3618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3555
|
-
checksum = "
|
|
3619
|
+
checksum = "81a2094c43cc94775293eaa0e499fbc30048a6d824ac82c0351a8c0bf9112529"
|
|
3556
3620
|
dependencies = [
|
|
3557
3621
|
"memchr",
|
|
3558
3622
|
]
|