create-tauri-ui 0.2.1 → 0.3.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 +19 -10
- package/dist/index.mjs +26 -26
- package/package.json +55 -54
- package/templates/.shared/app-icon.png +0 -0
- package/templates/.shared/src-tauri/Cargo.lock +3832 -3701
- package/templates/.shared/src-tauri/Cargo.toml +4 -1
- package/templates/.shared/src-tauri/src/main.rs +3 -0
- package/templates/.shared/src-tauri/tauri.conf.json +1 -9
- package/templates/next/components.json +1 -1
- package/templates/next/package.json +87 -83
- package/templates/next/pnpm-lock.yaml +608 -566
- package/templates/next/src/app/examples/cards/components/date-picker.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/github-card.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/notifications.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/payment-method.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/team-members.tsx +3 -5
- package/templates/next/src/app/examples/forms/page.tsx +1 -1
- package/templates/next/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/next/src/components/about-dialog.tsx +111 -0
- package/templates/next/src/components/icons.tsx +156 -154
- package/templates/next/src/components/menu-mode-toggle.tsx +47 -46
- package/templates/next/src/components/menu.tsx +178 -214
- package/templates/next/src/components/page-header.tsx +2 -0
- package/templates/next/src/components/ui/accordion.tsx +60 -60
- package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
- package/templates/next/src/components/ui/alert.tsx +59 -59
- package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
- package/templates/next/src/components/ui/avatar.tsx +50 -50
- package/templates/next/src/components/ui/badge.tsx +36 -36
- package/templates/next/src/components/ui/button.tsx +56 -56
- package/templates/next/src/components/ui/calendar.tsx +64 -64
- package/templates/next/src/components/ui/card.tsx +79 -79
- package/templates/next/src/components/ui/checkbox.tsx +30 -30
- package/templates/next/src/components/ui/collapsible.tsx +11 -11
- package/templates/next/src/components/ui/command.tsx +155 -155
- package/templates/next/src/components/ui/context-menu.tsx +200 -200
- package/templates/next/src/components/ui/dialog.tsx +123 -123
- package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
- package/templates/next/src/components/ui/form.tsx +176 -176
- package/templates/next/src/components/ui/hover-card.tsx +29 -29
- package/templates/next/src/components/ui/input.tsx +25 -25
- package/templates/next/src/components/ui/label.tsx +26 -26
- package/templates/next/src/components/ui/menubar.tsx +236 -236
- package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
- package/templates/next/src/components/ui/popover.tsx +31 -31
- package/templates/next/src/components/ui/progress.tsx +28 -28
- package/templates/next/src/components/ui/radio-group.tsx +44 -44
- package/templates/next/src/components/ui/scroll-area.tsx +48 -48
- package/templates/next/src/components/ui/select.tsx +121 -121
- package/templates/next/src/components/ui/separator.tsx +31 -31
- package/templates/next/src/components/ui/sheet.tsx +144 -144
- package/templates/next/src/components/ui/skeleton.tsx +15 -15
- package/templates/next/src/components/ui/slider.tsx +28 -28
- package/templates/next/src/components/ui/switch.tsx +29 -29
- package/templates/next/src/components/ui/table.tsx +114 -114
- package/templates/next/src/components/ui/tabs.tsx +55 -55
- package/templates/next/src/components/ui/textarea.tsx +24 -24
- package/templates/next/src/components/ui/toast.tsx +127 -127
- package/templates/next/src/components/ui/toaster.tsx +35 -35
- package/templates/next/src/components/ui/toggle.tsx +45 -45
- package/templates/next/src/components/ui/tooltip.tsx +30 -30
- package/templates/next/src/components/ui/use-toast.ts +192 -192
- package/templates/next/src/styles/globals.css +5 -3
- package/templates/next/src-tauri/Cargo.lock +270 -139
- package/templates/next/src-tauri/Cargo.toml +39 -36
- package/templates/next/src-tauri/src/main.rs +22 -19
- package/templates/next/src-tauri/tauri.conf.json +1 -9
- package/templates/sveltekit/.github/workflows/release.yml +108 -108
- package/templates/sveltekit/package.json +84 -84
- package/templates/sveltekit/pnpm-lock.yaml +1069 -691
- package/templates/sveltekit/src/app.html +1 -1
- package/templates/sveltekit/src-tauri/Cargo.lock +3701 -3701
- package/templates/sveltekit/src-tauri/Cargo.toml +36 -36
- package/templates/sveltekit/src-tauri/tauri.conf.json +71 -79
- package/templates/sveltekit/static/favicon.ico +0 -0
- package/templates/sveltekit/vite.config.js +10 -6
- package/templates/vite/index.html +1 -1
- package/templates/vite/package.json +83 -76
- package/templates/vite/pnpm-lock.yaml +5178 -5110
- package/templates/vite/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/vite/src/components/about-dialog.tsx +101 -0
- package/templates/vite/src/components/icons.tsx +2 -2
- package/templates/vite/src/components/menu-mode-toggle.tsx +4 -3
- package/templates/vite/src/components/menu.tsx +177 -197
- package/templates/vite/src/components/ui/accordion.tsx +1 -3
- package/templates/vite/src/components/ui/alert-dialog.tsx +3 -10
- package/templates/vite/src/components/ui/alert.tsx +3 -5
- package/templates/vite/src/components/ui/aspect-ratio.tsx +0 -2
- package/templates/vite/src/components/ui/avatar.tsx +0 -2
- package/templates/vite/src/components/ui/badge.tsx +5 -5
- package/templates/vite/src/components/ui/button.tsx +15 -10
- package/templates/vite/src/components/ui/calendar.tsx +0 -2
- package/templates/vite/src/components/ui/card.tsx +1 -3
- package/templates/vite/src/components/ui/checkbox.tsx +2 -4
- package/templates/vite/src/components/ui/collapsible.tsx +0 -2
- package/templates/vite/src/components/ui/command.tsx +2 -4
- package/templates/vite/src/components/ui/context-menu.tsx +6 -8
- package/templates/vite/src/components/ui/dialog.tsx +4 -11
- package/templates/vite/src/components/ui/dropdown-menu.tsx +6 -8
- package/templates/vite/src/components/ui/form.tsx +176 -0
- package/templates/vite/src/components/ui/hover-card.tsx +1 -3
- package/templates/vite/src/components/ui/input.tsx +1 -3
- package/templates/vite/src/components/ui/label.tsx +1 -3
- package/templates/vite/src/components/ui/menubar.tsx +7 -9
- package/templates/vite/src/components/ui/navigation-menu.tsx +2 -4
- package/templates/vite/src/components/ui/popover.tsx +1 -3
- package/templates/vite/src/components/ui/progress.tsx +0 -2
- package/templates/vite/src/components/ui/radio-group.tsx +2 -4
- package/templates/vite/src/components/ui/scroll-area.tsx +0 -2
- package/templates/vite/src/components/ui/select.tsx +4 -5
- package/templates/vite/src/components/ui/separator.tsx +0 -2
- package/templates/vite/src/components/ui/sheet.tsx +22 -110
- package/templates/vite/src/components/ui/skeleton.tsx +0 -2
- package/templates/vite/src/components/ui/slider.tsx +0 -2
- package/templates/vite/src/components/ui/switch.tsx +1 -3
- package/templates/vite/src/components/ui/table.tsx +1 -1
- package/templates/vite/src/components/ui/tabs.tsx +1 -3
- package/templates/vite/src/components/ui/textarea.tsx +1 -3
- package/templates/vite/src/components/ui/toast.tsx +6 -8
- package/templates/vite/src/components/ui/toaster.tsx +0 -2
- package/templates/vite/src/components/ui/toggle.tsx +3 -5
- package/templates/vite/src/components/ui/tooltip.tsx +1 -3
- package/templates/vite/src/components/ui/use-toast.ts +5 -4
- package/templates/vite/src/styles/globals.css +5 -3
- package/templates/vite/src-tauri/Cargo.lock +3832 -3701
- package/templates/vite/src-tauri/Cargo.toml +39 -36
- package/templates/vite/src-tauri/src/main.rs +8 -2
- package/templates/vite/src-tauri/tauri.conf.json +1 -9
- package/templates/vite/vite.config.ts +2 -2
- package/templates/next/src/assets/Inter.var.woff2 +0 -0
- package/templates/vite/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/.github/workflows/release.yml +0 -108
- package/templates/viteuno/.vscode/extensions.json +0 -3
- package/templates/viteuno/README.md +0 -1
- package/templates/viteuno/app-icon.png +0 -0
- package/templates/viteuno/components.json +0 -16
- package/templates/viteuno/index.html +0 -16
- package/templates/viteuno/package.json +0 -73
- package/templates/viteuno/pnpm-lock.yaml +0 -5298
- package/templates/viteuno/preset.shadcn.ts +0 -160
- package/templates/viteuno/prettier.config.cjs +0 -34
- 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 +0 -39
- package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/src/components/icons.tsx +0 -154
- package/templates/viteuno/src/components/menu-mode-toggle.tsx +0 -46
- package/templates/viteuno/src/components/menu.tsx +0 -232
- package/templates/viteuno/src/components/tailwind-indicator.tsx +0 -18
- package/templates/viteuno/src/components/theme-provider.tsx +0 -9
- package/templates/viteuno/src/components/ui/accordion.tsx +0 -60
- package/templates/viteuno/src/components/ui/alert-dialog.tsx +0 -150
- package/templates/viteuno/src/components/ui/alert.tsx +0 -61
- package/templates/viteuno/src/components/ui/aspect-ratio.tsx +0 -7
- package/templates/viteuno/src/components/ui/avatar.tsx +0 -50
- package/templates/viteuno/src/components/ui/badge.tsx +0 -36
- package/templates/viteuno/src/components/ui/button.tsx +0 -51
- package/templates/viteuno/src/components/ui/calendar.tsx +0 -64
- package/templates/viteuno/src/components/ui/card.tsx +0 -81
- package/templates/viteuno/src/components/ui/checkbox.tsx +0 -30
- package/templates/viteuno/src/components/ui/collapsible.tsx +0 -11
- package/templates/viteuno/src/components/ui/command.tsx +0 -155
- package/templates/viteuno/src/components/ui/context-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/dialog.tsx +0 -128
- package/templates/viteuno/src/components/ui/dropdown-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/hover-card.tsx +0 -29
- package/templates/viteuno/src/components/ui/index.ts +0 -0
- package/templates/viteuno/src/components/ui/input.tsx +0 -27
- package/templates/viteuno/src/components/ui/label.tsx +0 -26
- package/templates/viteuno/src/components/ui/menubar.tsx +0 -236
- package/templates/viteuno/src/components/ui/navigation-menu.tsx +0 -130
- package/templates/viteuno/src/components/ui/popover.tsx +0 -31
- package/templates/viteuno/src/components/ui/progress.tsx +0 -28
- package/templates/viteuno/src/components/ui/radio-group.tsx +0 -44
- package/templates/viteuno/src/components/ui/scroll-area.tsx +0 -48
- package/templates/viteuno/src/components/ui/select.tsx +0 -120
- package/templates/viteuno/src/components/ui/separator.tsx +0 -31
- package/templates/viteuno/src/components/ui/sheet.tsx +0 -230
- package/templates/viteuno/src/components/ui/skeleton.tsx +0 -17
- package/templates/viteuno/src/components/ui/slider.tsx +0 -28
- package/templates/viteuno/src/components/ui/switch.tsx +0 -29
- package/templates/viteuno/src/components/ui/table.tsx +0 -114
- package/templates/viteuno/src/components/ui/tabs.tsx +0 -55
- package/templates/viteuno/src/components/ui/textarea.tsx +0 -26
- package/templates/viteuno/src/components/ui/toast.tsx +0 -129
- package/templates/viteuno/src/components/ui/toaster.tsx +0 -35
- package/templates/viteuno/src/components/ui/toggle.tsx +0 -45
- package/templates/viteuno/src/components/ui/tooltip.tsx +0 -30
- package/templates/viteuno/src/components/ui/use-toast.ts +0 -191
- package/templates/viteuno/src/dashboard/components/date-range-picker.tsx +0 -66
- package/templates/viteuno/src/dashboard/components/main-nav.tsx +0 -38
- package/templates/viteuno/src/dashboard/components/overview.tsx +0 -78
- package/templates/viteuno/src/dashboard/components/recent-sales.tsx +0 -67
- package/templates/viteuno/src/dashboard/components/search.tsx +0 -13
- package/templates/viteuno/src/dashboard/components/team-switcher.tsx +0 -205
- package/templates/viteuno/src/dashboard/components/user-nav.tsx +0 -67
- package/templates/viteuno/src/dashboard/page.tsx +0 -140
- package/templates/viteuno/src/lib/utils.ts +0 -19
- package/templates/viteuno/src/main.tsx +0 -14
- package/templates/viteuno/src/styles/globals.css +0 -4
- package/templates/viteuno/src/vite-env.d.ts +0 -1
- package/templates/viteuno/src-tauri/Cargo.lock +0 -3701
- package/templates/viteuno/src-tauri/Cargo.toml +0 -36
- package/templates/viteuno/src-tauri/build.rs +0 -3
- 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 +0 -16
- package/templates/viteuno/src-tauri/tauri.conf.json +0 -79
- package/templates/viteuno/tsconfig.json +0 -26
- package/templates/viteuno/tsconfig.node.json +0 -9
- package/templates/viteuno/uno.config.ts +0 -111
- package/templates/viteuno/vite.config.ts +0 -33
- /package/templates/next/src/app/examples/forms/{profile-form.tsx → components/profile-form.tsx} +0 -0
|
@@ -1,3701 +0,0 @@
|
|
|
1
|
-
# This file is automatically @generated by Cargo.
|
|
2
|
-
# It is not intended for manual editing.
|
|
3
|
-
version = 3
|
|
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
|
-
|
|
14
|
-
[[package]]
|
|
15
|
-
name = "adler"
|
|
16
|
-
version = "1.0.2"
|
|
17
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
19
|
-
|
|
20
|
-
[[package]]
|
|
21
|
-
name = "aho-corasick"
|
|
22
|
-
version = "1.0.2"
|
|
23
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
|
25
|
-
dependencies = [
|
|
26
|
-
"memchr",
|
|
27
|
-
]
|
|
28
|
-
|
|
29
|
-
[[package]]
|
|
30
|
-
name = "alloc-no-stdlib"
|
|
31
|
-
version = "2.0.4"
|
|
32
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
34
|
-
|
|
35
|
-
[[package]]
|
|
36
|
-
name = "alloc-stdlib"
|
|
37
|
-
version = "0.2.2"
|
|
38
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
40
|
-
dependencies = [
|
|
41
|
-
"alloc-no-stdlib",
|
|
42
|
-
]
|
|
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
|
-
|
|
50
|
-
[[package]]
|
|
51
|
-
name = "android_system_properties"
|
|
52
|
-
version = "0.1.5"
|
|
53
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
55
|
-
dependencies = [
|
|
56
|
-
"libc",
|
|
57
|
-
]
|
|
58
|
-
|
|
59
|
-
[[package]]
|
|
60
|
-
name = "anyhow"
|
|
61
|
-
version = "1.0.71"
|
|
62
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
-
checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
|
|
64
|
-
|
|
65
|
-
[[package]]
|
|
66
|
-
name = "atk"
|
|
67
|
-
version = "0.16.0"
|
|
68
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "39991bc421ddf72f70159011b323ff49b0f783cc676a7287c59453da2e2531cf"
|
|
70
|
-
dependencies = [
|
|
71
|
-
"atk-sys",
|
|
72
|
-
"bitflags",
|
|
73
|
-
"glib",
|
|
74
|
-
"libc",
|
|
75
|
-
]
|
|
76
|
-
|
|
77
|
-
[[package]]
|
|
78
|
-
name = "atk-sys"
|
|
79
|
-
version = "0.16.0"
|
|
80
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "11ad703eb64dc058024f0e57ccfa069e15a413b98dbd50a1a950e743b7f11148"
|
|
82
|
-
dependencies = [
|
|
83
|
-
"glib-sys",
|
|
84
|
-
"gobject-sys",
|
|
85
|
-
"libc",
|
|
86
|
-
"system-deps",
|
|
87
|
-
]
|
|
88
|
-
|
|
89
|
-
[[package]]
|
|
90
|
-
name = "autocfg"
|
|
91
|
-
version = "1.1.0"
|
|
92
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
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
|
-
|
|
110
|
-
[[package]]
|
|
111
|
-
name = "base64"
|
|
112
|
-
version = "0.13.1"
|
|
113
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
-
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
115
|
-
|
|
116
|
-
[[package]]
|
|
117
|
-
name = "base64"
|
|
118
|
-
version = "0.21.2"
|
|
119
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
-
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
|
|
121
|
-
|
|
122
|
-
[[package]]
|
|
123
|
-
name = "bitflags"
|
|
124
|
-
version = "1.3.2"
|
|
125
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
127
|
-
|
|
128
|
-
[[package]]
|
|
129
|
-
name = "block"
|
|
130
|
-
version = "0.1.6"
|
|
131
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
-
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
133
|
-
|
|
134
|
-
[[package]]
|
|
135
|
-
name = "block-buffer"
|
|
136
|
-
version = "0.10.4"
|
|
137
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
139
|
-
dependencies = [
|
|
140
|
-
"generic-array",
|
|
141
|
-
]
|
|
142
|
-
|
|
143
|
-
[[package]]
|
|
144
|
-
name = "brotli"
|
|
145
|
-
version = "3.3.4"
|
|
146
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
-
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
|
|
148
|
-
dependencies = [
|
|
149
|
-
"alloc-no-stdlib",
|
|
150
|
-
"alloc-stdlib",
|
|
151
|
-
"brotli-decompressor",
|
|
152
|
-
]
|
|
153
|
-
|
|
154
|
-
[[package]]
|
|
155
|
-
name = "brotli-decompressor"
|
|
156
|
-
version = "2.3.4"
|
|
157
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
-
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
|
|
159
|
-
dependencies = [
|
|
160
|
-
"alloc-no-stdlib",
|
|
161
|
-
"alloc-stdlib",
|
|
162
|
-
]
|
|
163
|
-
|
|
164
|
-
[[package]]
|
|
165
|
-
name = "bumpalo"
|
|
166
|
-
version = "3.13.0"
|
|
167
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
-
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
|
|
169
|
-
|
|
170
|
-
[[package]]
|
|
171
|
-
name = "bytemuck"
|
|
172
|
-
version = "1.13.1"
|
|
173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
-
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
|
|
175
|
-
|
|
176
|
-
[[package]]
|
|
177
|
-
name = "byteorder"
|
|
178
|
-
version = "1.4.3"
|
|
179
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
-
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
181
|
-
|
|
182
|
-
[[package]]
|
|
183
|
-
name = "bytes"
|
|
184
|
-
version = "1.4.0"
|
|
185
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
|
187
|
-
dependencies = [
|
|
188
|
-
"serde",
|
|
189
|
-
]
|
|
190
|
-
|
|
191
|
-
[[package]]
|
|
192
|
-
name = "cairo-rs"
|
|
193
|
-
version = "0.16.7"
|
|
194
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d"
|
|
196
|
-
dependencies = [
|
|
197
|
-
"bitflags",
|
|
198
|
-
"cairo-sys-rs",
|
|
199
|
-
"glib",
|
|
200
|
-
"libc",
|
|
201
|
-
"once_cell",
|
|
202
|
-
"thiserror",
|
|
203
|
-
]
|
|
204
|
-
|
|
205
|
-
[[package]]
|
|
206
|
-
name = "cairo-sys-rs"
|
|
207
|
-
version = "0.16.3"
|
|
208
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
-
checksum = "7c48f4af05fabdcfa9658178e1326efa061853f040ce7d72e33af6885196f421"
|
|
210
|
-
dependencies = [
|
|
211
|
-
"glib-sys",
|
|
212
|
-
"libc",
|
|
213
|
-
"system-deps",
|
|
214
|
-
]
|
|
215
|
-
|
|
216
|
-
[[package]]
|
|
217
|
-
name = "cargo_toml"
|
|
218
|
-
version = "0.15.3"
|
|
219
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
-
checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
|
|
221
|
-
dependencies = [
|
|
222
|
-
"serde",
|
|
223
|
-
"toml",
|
|
224
|
-
]
|
|
225
|
-
|
|
226
|
-
[[package]]
|
|
227
|
-
name = "cc"
|
|
228
|
-
version = "1.0.79"
|
|
229
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
-
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
|
231
|
-
|
|
232
|
-
[[package]]
|
|
233
|
-
name = "cesu8"
|
|
234
|
-
version = "1.1.0"
|
|
235
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
237
|
-
|
|
238
|
-
[[package]]
|
|
239
|
-
name = "cfb"
|
|
240
|
-
version = "0.7.3"
|
|
241
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
-
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
|
|
243
|
-
dependencies = [
|
|
244
|
-
"byteorder",
|
|
245
|
-
"fnv",
|
|
246
|
-
"uuid",
|
|
247
|
-
]
|
|
248
|
-
|
|
249
|
-
[[package]]
|
|
250
|
-
name = "cfg-expr"
|
|
251
|
-
version = "0.15.3"
|
|
252
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
-
checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c"
|
|
254
|
-
dependencies = [
|
|
255
|
-
"smallvec",
|
|
256
|
-
"target-lexicon",
|
|
257
|
-
]
|
|
258
|
-
|
|
259
|
-
[[package]]
|
|
260
|
-
name = "cfg-if"
|
|
261
|
-
version = "1.0.0"
|
|
262
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
264
|
-
|
|
265
|
-
[[package]]
|
|
266
|
-
name = "chrono"
|
|
267
|
-
version = "0.4.26"
|
|
268
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
-
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
|
|
270
|
-
dependencies = [
|
|
271
|
-
"android-tzdata",
|
|
272
|
-
"iana-time-zone",
|
|
273
|
-
"num-traits",
|
|
274
|
-
"serde",
|
|
275
|
-
"winapi",
|
|
276
|
-
]
|
|
277
|
-
|
|
278
|
-
[[package]]
|
|
279
|
-
name = "cocoa"
|
|
280
|
-
version = "0.24.1"
|
|
281
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
-
checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a"
|
|
283
|
-
dependencies = [
|
|
284
|
-
"bitflags",
|
|
285
|
-
"block",
|
|
286
|
-
"cocoa-foundation",
|
|
287
|
-
"core-foundation",
|
|
288
|
-
"core-graphics",
|
|
289
|
-
"foreign-types",
|
|
290
|
-
"libc",
|
|
291
|
-
"objc",
|
|
292
|
-
]
|
|
293
|
-
|
|
294
|
-
[[package]]
|
|
295
|
-
name = "cocoa-foundation"
|
|
296
|
-
version = "0.1.1"
|
|
297
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
-
checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6"
|
|
299
|
-
dependencies = [
|
|
300
|
-
"bitflags",
|
|
301
|
-
"block",
|
|
302
|
-
"core-foundation",
|
|
303
|
-
"core-graphics-types",
|
|
304
|
-
"foreign-types",
|
|
305
|
-
"libc",
|
|
306
|
-
"objc",
|
|
307
|
-
]
|
|
308
|
-
|
|
309
|
-
[[package]]
|
|
310
|
-
name = "color_quant"
|
|
311
|
-
version = "1.1.0"
|
|
312
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
314
|
-
|
|
315
|
-
[[package]]
|
|
316
|
-
name = "combine"
|
|
317
|
-
version = "4.6.6"
|
|
318
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
|
|
320
|
-
dependencies = [
|
|
321
|
-
"bytes",
|
|
322
|
-
"memchr",
|
|
323
|
-
]
|
|
324
|
-
|
|
325
|
-
[[package]]
|
|
326
|
-
name = "convert_case"
|
|
327
|
-
version = "0.4.0"
|
|
328
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
330
|
-
|
|
331
|
-
[[package]]
|
|
332
|
-
name = "core-foundation"
|
|
333
|
-
version = "0.9.3"
|
|
334
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
-
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
|
336
|
-
dependencies = [
|
|
337
|
-
"core-foundation-sys",
|
|
338
|
-
"libc",
|
|
339
|
-
]
|
|
340
|
-
|
|
341
|
-
[[package]]
|
|
342
|
-
name = "core-foundation-sys"
|
|
343
|
-
version = "0.8.4"
|
|
344
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
|
346
|
-
|
|
347
|
-
[[package]]
|
|
348
|
-
name = "core-graphics"
|
|
349
|
-
version = "0.22.3"
|
|
350
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
-
checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
|
|
352
|
-
dependencies = [
|
|
353
|
-
"bitflags",
|
|
354
|
-
"core-foundation",
|
|
355
|
-
"core-graphics-types",
|
|
356
|
-
"foreign-types",
|
|
357
|
-
"libc",
|
|
358
|
-
]
|
|
359
|
-
|
|
360
|
-
[[package]]
|
|
361
|
-
name = "core-graphics-types"
|
|
362
|
-
version = "0.1.2"
|
|
363
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
-
checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
|
|
365
|
-
dependencies = [
|
|
366
|
-
"bitflags",
|
|
367
|
-
"core-foundation",
|
|
368
|
-
"libc",
|
|
369
|
-
]
|
|
370
|
-
|
|
371
|
-
[[package]]
|
|
372
|
-
name = "cpufeatures"
|
|
373
|
-
version = "0.2.9"
|
|
374
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
-
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
|
|
376
|
-
dependencies = [
|
|
377
|
-
"libc",
|
|
378
|
-
]
|
|
379
|
-
|
|
380
|
-
[[package]]
|
|
381
|
-
name = "crc32fast"
|
|
382
|
-
version = "1.3.2"
|
|
383
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
-
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
|
385
|
-
dependencies = [
|
|
386
|
-
"cfg-if",
|
|
387
|
-
]
|
|
388
|
-
|
|
389
|
-
[[package]]
|
|
390
|
-
name = "crossbeam-channel"
|
|
391
|
-
version = "0.5.8"
|
|
392
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
-
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
|
394
|
-
dependencies = [
|
|
395
|
-
"cfg-if",
|
|
396
|
-
"crossbeam-utils",
|
|
397
|
-
]
|
|
398
|
-
|
|
399
|
-
[[package]]
|
|
400
|
-
name = "crossbeam-utils"
|
|
401
|
-
version = "0.8.16"
|
|
402
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
-
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
|
404
|
-
dependencies = [
|
|
405
|
-
"cfg-if",
|
|
406
|
-
]
|
|
407
|
-
|
|
408
|
-
[[package]]
|
|
409
|
-
name = "crypto-common"
|
|
410
|
-
version = "0.1.6"
|
|
411
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
-
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
413
|
-
dependencies = [
|
|
414
|
-
"generic-array",
|
|
415
|
-
"typenum",
|
|
416
|
-
]
|
|
417
|
-
|
|
418
|
-
[[package]]
|
|
419
|
-
name = "cssparser"
|
|
420
|
-
version = "0.27.2"
|
|
421
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
-
checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
|
|
423
|
-
dependencies = [
|
|
424
|
-
"cssparser-macros",
|
|
425
|
-
"dtoa-short",
|
|
426
|
-
"itoa 0.4.8",
|
|
427
|
-
"matches",
|
|
428
|
-
"phf 0.8.0",
|
|
429
|
-
"proc-macro2",
|
|
430
|
-
"quote",
|
|
431
|
-
"smallvec",
|
|
432
|
-
"syn 1.0.109",
|
|
433
|
-
]
|
|
434
|
-
|
|
435
|
-
[[package]]
|
|
436
|
-
name = "cssparser-macros"
|
|
437
|
-
version = "0.6.1"
|
|
438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
440
|
-
dependencies = [
|
|
441
|
-
"quote",
|
|
442
|
-
"syn 2.0.25",
|
|
443
|
-
]
|
|
444
|
-
|
|
445
|
-
[[package]]
|
|
446
|
-
name = "ctor"
|
|
447
|
-
version = "0.1.26"
|
|
448
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
-
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
|
|
450
|
-
dependencies = [
|
|
451
|
-
"quote",
|
|
452
|
-
"syn 1.0.109",
|
|
453
|
-
]
|
|
454
|
-
|
|
455
|
-
[[package]]
|
|
456
|
-
name = "darling"
|
|
457
|
-
version = "0.20.1"
|
|
458
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
-
checksum = "0558d22a7b463ed0241e993f76f09f30b126687447751a8638587b864e4b3944"
|
|
460
|
-
dependencies = [
|
|
461
|
-
"darling_core",
|
|
462
|
-
"darling_macro",
|
|
463
|
-
]
|
|
464
|
-
|
|
465
|
-
[[package]]
|
|
466
|
-
name = "darling_core"
|
|
467
|
-
version = "0.20.1"
|
|
468
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
-
checksum = "ab8bfa2e259f8ee1ce5e97824a3c55ec4404a0d772ca7fa96bf19f0752a046eb"
|
|
470
|
-
dependencies = [
|
|
471
|
-
"fnv",
|
|
472
|
-
"ident_case",
|
|
473
|
-
"proc-macro2",
|
|
474
|
-
"quote",
|
|
475
|
-
"strsim",
|
|
476
|
-
"syn 2.0.25",
|
|
477
|
-
]
|
|
478
|
-
|
|
479
|
-
[[package]]
|
|
480
|
-
name = "darling_macro"
|
|
481
|
-
version = "0.20.1"
|
|
482
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
-
checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a"
|
|
484
|
-
dependencies = [
|
|
485
|
-
"darling_core",
|
|
486
|
-
"quote",
|
|
487
|
-
"syn 2.0.25",
|
|
488
|
-
]
|
|
489
|
-
|
|
490
|
-
[[package]]
|
|
491
|
-
name = "derive_more"
|
|
492
|
-
version = "0.99.17"
|
|
493
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
-
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
|
|
495
|
-
dependencies = [
|
|
496
|
-
"convert_case",
|
|
497
|
-
"proc-macro2",
|
|
498
|
-
"quote",
|
|
499
|
-
"rustc_version",
|
|
500
|
-
"syn 1.0.109",
|
|
501
|
-
]
|
|
502
|
-
|
|
503
|
-
[[package]]
|
|
504
|
-
name = "digest"
|
|
505
|
-
version = "0.10.7"
|
|
506
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
508
|
-
dependencies = [
|
|
509
|
-
"block-buffer",
|
|
510
|
-
"crypto-common",
|
|
511
|
-
]
|
|
512
|
-
|
|
513
|
-
[[package]]
|
|
514
|
-
name = "dirs-next"
|
|
515
|
-
version = "2.0.0"
|
|
516
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
-
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
|
|
518
|
-
dependencies = [
|
|
519
|
-
"cfg-if",
|
|
520
|
-
"dirs-sys-next",
|
|
521
|
-
]
|
|
522
|
-
|
|
523
|
-
[[package]]
|
|
524
|
-
name = "dirs-sys-next"
|
|
525
|
-
version = "0.1.2"
|
|
526
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
-
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
528
|
-
dependencies = [
|
|
529
|
-
"libc",
|
|
530
|
-
"redox_users",
|
|
531
|
-
"winapi",
|
|
532
|
-
]
|
|
533
|
-
|
|
534
|
-
[[package]]
|
|
535
|
-
name = "dispatch"
|
|
536
|
-
version = "0.2.0"
|
|
537
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
539
|
-
|
|
540
|
-
[[package]]
|
|
541
|
-
name = "dtoa"
|
|
542
|
-
version = "1.0.8"
|
|
543
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "519b83cd10f5f6e969625a409f735182bea5558cd8b64c655806ceaae36f1999"
|
|
545
|
-
|
|
546
|
-
[[package]]
|
|
547
|
-
name = "dtoa-short"
|
|
548
|
-
version = "0.3.4"
|
|
549
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
-
checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
|
|
551
|
-
dependencies = [
|
|
552
|
-
"dtoa",
|
|
553
|
-
]
|
|
554
|
-
|
|
555
|
-
[[package]]
|
|
556
|
-
name = "dunce"
|
|
557
|
-
version = "1.0.4"
|
|
558
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
-
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
|
|
560
|
-
|
|
561
|
-
[[package]]
|
|
562
|
-
name = "embed-resource"
|
|
563
|
-
version = "2.2.0"
|
|
564
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
-
checksum = "f7f1e82a60222fc67bfd50d752a9c89da5cce4c39ed39decc84a443b07bbd69a"
|
|
566
|
-
dependencies = [
|
|
567
|
-
"cc",
|
|
568
|
-
"rustc_version",
|
|
569
|
-
"toml",
|
|
570
|
-
"vswhom",
|
|
571
|
-
"winreg 0.11.0",
|
|
572
|
-
]
|
|
573
|
-
|
|
574
|
-
[[package]]
|
|
575
|
-
name = "embed_plist"
|
|
576
|
-
version = "1.2.2"
|
|
577
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
-
checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
|
|
579
|
-
|
|
580
|
-
[[package]]
|
|
581
|
-
name = "encoding_rs"
|
|
582
|
-
version = "0.8.32"
|
|
583
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
-
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
|
|
585
|
-
dependencies = [
|
|
586
|
-
"cfg-if",
|
|
587
|
-
]
|
|
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
|
-
|
|
595
|
-
[[package]]
|
|
596
|
-
name = "errno"
|
|
597
|
-
version = "0.3.1"
|
|
598
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
600
|
-
dependencies = [
|
|
601
|
-
"errno-dragonfly",
|
|
602
|
-
"libc",
|
|
603
|
-
"windows-sys",
|
|
604
|
-
]
|
|
605
|
-
|
|
606
|
-
[[package]]
|
|
607
|
-
name = "errno-dragonfly"
|
|
608
|
-
version = "0.1.2"
|
|
609
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
611
|
-
dependencies = [
|
|
612
|
-
"cc",
|
|
613
|
-
"libc",
|
|
614
|
-
]
|
|
615
|
-
|
|
616
|
-
[[package]]
|
|
617
|
-
name = "fastrand"
|
|
618
|
-
version = "1.9.0"
|
|
619
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
621
|
-
dependencies = [
|
|
622
|
-
"instant",
|
|
623
|
-
]
|
|
624
|
-
|
|
625
|
-
[[package]]
|
|
626
|
-
name = "fdeflate"
|
|
627
|
-
version = "0.3.0"
|
|
628
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
-
checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10"
|
|
630
|
-
dependencies = [
|
|
631
|
-
"simd-adler32",
|
|
632
|
-
]
|
|
633
|
-
|
|
634
|
-
[[package]]
|
|
635
|
-
name = "field-offset"
|
|
636
|
-
version = "0.3.6"
|
|
637
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
-
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
|
|
639
|
-
dependencies = [
|
|
640
|
-
"memoffset",
|
|
641
|
-
"rustc_version",
|
|
642
|
-
]
|
|
643
|
-
|
|
644
|
-
[[package]]
|
|
645
|
-
name = "flate2"
|
|
646
|
-
version = "1.0.26"
|
|
647
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
-
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
|
|
649
|
-
dependencies = [
|
|
650
|
-
"crc32fast",
|
|
651
|
-
"miniz_oxide",
|
|
652
|
-
]
|
|
653
|
-
|
|
654
|
-
[[package]]
|
|
655
|
-
name = "fnv"
|
|
656
|
-
version = "1.0.7"
|
|
657
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
659
|
-
|
|
660
|
-
[[package]]
|
|
661
|
-
name = "foreign-types"
|
|
662
|
-
version = "0.3.2"
|
|
663
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
-
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
665
|
-
dependencies = [
|
|
666
|
-
"foreign-types-shared",
|
|
667
|
-
]
|
|
668
|
-
|
|
669
|
-
[[package]]
|
|
670
|
-
name = "foreign-types-shared"
|
|
671
|
-
version = "0.1.1"
|
|
672
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
-
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
674
|
-
|
|
675
|
-
[[package]]
|
|
676
|
-
name = "form_urlencoded"
|
|
677
|
-
version = "1.2.0"
|
|
678
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
-
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
|
|
680
|
-
dependencies = [
|
|
681
|
-
"percent-encoding",
|
|
682
|
-
]
|
|
683
|
-
|
|
684
|
-
[[package]]
|
|
685
|
-
name = "futf"
|
|
686
|
-
version = "0.1.5"
|
|
687
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
-
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
|
689
|
-
dependencies = [
|
|
690
|
-
"mac",
|
|
691
|
-
"new_debug_unreachable",
|
|
692
|
-
]
|
|
693
|
-
|
|
694
|
-
[[package]]
|
|
695
|
-
name = "futures-channel"
|
|
696
|
-
version = "0.3.28"
|
|
697
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
-
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
|
699
|
-
dependencies = [
|
|
700
|
-
"futures-core",
|
|
701
|
-
]
|
|
702
|
-
|
|
703
|
-
[[package]]
|
|
704
|
-
name = "futures-core"
|
|
705
|
-
version = "0.3.28"
|
|
706
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
-
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
|
708
|
-
|
|
709
|
-
[[package]]
|
|
710
|
-
name = "futures-executor"
|
|
711
|
-
version = "0.3.28"
|
|
712
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
-
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
|
714
|
-
dependencies = [
|
|
715
|
-
"futures-core",
|
|
716
|
-
"futures-task",
|
|
717
|
-
"futures-util",
|
|
718
|
-
]
|
|
719
|
-
|
|
720
|
-
[[package]]
|
|
721
|
-
name = "futures-io"
|
|
722
|
-
version = "0.3.28"
|
|
723
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
-
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
|
725
|
-
|
|
726
|
-
[[package]]
|
|
727
|
-
name = "futures-macro"
|
|
728
|
-
version = "0.3.28"
|
|
729
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
-
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
|
731
|
-
dependencies = [
|
|
732
|
-
"proc-macro2",
|
|
733
|
-
"quote",
|
|
734
|
-
"syn 2.0.25",
|
|
735
|
-
]
|
|
736
|
-
|
|
737
|
-
[[package]]
|
|
738
|
-
name = "futures-sink"
|
|
739
|
-
version = "0.3.28"
|
|
740
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
-
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
|
742
|
-
|
|
743
|
-
[[package]]
|
|
744
|
-
name = "futures-task"
|
|
745
|
-
version = "0.3.28"
|
|
746
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
|
748
|
-
|
|
749
|
-
[[package]]
|
|
750
|
-
name = "futures-util"
|
|
751
|
-
version = "0.3.28"
|
|
752
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
-
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
|
754
|
-
dependencies = [
|
|
755
|
-
"futures-core",
|
|
756
|
-
"futures-io",
|
|
757
|
-
"futures-macro",
|
|
758
|
-
"futures-sink",
|
|
759
|
-
"futures-task",
|
|
760
|
-
"memchr",
|
|
761
|
-
"pin-project-lite",
|
|
762
|
-
"pin-utils",
|
|
763
|
-
"slab",
|
|
764
|
-
]
|
|
765
|
-
|
|
766
|
-
[[package]]
|
|
767
|
-
name = "fxhash"
|
|
768
|
-
version = "0.2.1"
|
|
769
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
-
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
771
|
-
dependencies = [
|
|
772
|
-
"byteorder",
|
|
773
|
-
]
|
|
774
|
-
|
|
775
|
-
[[package]]
|
|
776
|
-
name = "gdk"
|
|
777
|
-
version = "0.16.2"
|
|
778
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
-
checksum = "aa9cb33da481c6c040404a11f8212d193889e9b435db2c14fd86987f630d3ce1"
|
|
780
|
-
dependencies = [
|
|
781
|
-
"bitflags",
|
|
782
|
-
"cairo-rs",
|
|
783
|
-
"gdk-pixbuf",
|
|
784
|
-
"gdk-sys",
|
|
785
|
-
"gio",
|
|
786
|
-
"glib",
|
|
787
|
-
"libc",
|
|
788
|
-
"pango",
|
|
789
|
-
]
|
|
790
|
-
|
|
791
|
-
[[package]]
|
|
792
|
-
name = "gdk-pixbuf"
|
|
793
|
-
version = "0.16.7"
|
|
794
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "c3578c60dee9d029ad86593ed88cb40f35c1b83360e12498d055022385dd9a05"
|
|
796
|
-
dependencies = [
|
|
797
|
-
"bitflags",
|
|
798
|
-
"gdk-pixbuf-sys",
|
|
799
|
-
"gio",
|
|
800
|
-
"glib",
|
|
801
|
-
"libc",
|
|
802
|
-
]
|
|
803
|
-
|
|
804
|
-
[[package]]
|
|
805
|
-
name = "gdk-pixbuf-sys"
|
|
806
|
-
version = "0.16.3"
|
|
807
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
-
checksum = "3092cf797a5f1210479ea38070d9ae8a5b8e9f8f1be9f32f4643c529c7d70016"
|
|
809
|
-
dependencies = [
|
|
810
|
-
"gio-sys",
|
|
811
|
-
"glib-sys",
|
|
812
|
-
"gobject-sys",
|
|
813
|
-
"libc",
|
|
814
|
-
"system-deps",
|
|
815
|
-
]
|
|
816
|
-
|
|
817
|
-
[[package]]
|
|
818
|
-
name = "gdk-sys"
|
|
819
|
-
version = "0.16.0"
|
|
820
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
-
checksum = "d76354f97a913e55b984759a997b693aa7dc71068c9e98bcce51aa167a0a5c5a"
|
|
822
|
-
dependencies = [
|
|
823
|
-
"cairo-sys-rs",
|
|
824
|
-
"gdk-pixbuf-sys",
|
|
825
|
-
"gio-sys",
|
|
826
|
-
"glib-sys",
|
|
827
|
-
"gobject-sys",
|
|
828
|
-
"libc",
|
|
829
|
-
"pango-sys",
|
|
830
|
-
"pkg-config",
|
|
831
|
-
"system-deps",
|
|
832
|
-
]
|
|
833
|
-
|
|
834
|
-
[[package]]
|
|
835
|
-
name = "gdkwayland-sys"
|
|
836
|
-
version = "0.16.0"
|
|
837
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
-
checksum = "4511710212ed3020b61a8622a37aa6f0dd2a84516575da92e9b96928dcbe83ba"
|
|
839
|
-
dependencies = [
|
|
840
|
-
"gdk-sys",
|
|
841
|
-
"glib-sys",
|
|
842
|
-
"gobject-sys",
|
|
843
|
-
"libc",
|
|
844
|
-
"pkg-config",
|
|
845
|
-
"system-deps",
|
|
846
|
-
]
|
|
847
|
-
|
|
848
|
-
[[package]]
|
|
849
|
-
name = "gdkx11-sys"
|
|
850
|
-
version = "0.16.0"
|
|
851
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
-
checksum = "9fa2bf8b5b8c414bc5d05e48b271896d0fd3ddb57464a3108438082da61de6af"
|
|
853
|
-
dependencies = [
|
|
854
|
-
"gdk-sys",
|
|
855
|
-
"glib-sys",
|
|
856
|
-
"libc",
|
|
857
|
-
"system-deps",
|
|
858
|
-
"x11",
|
|
859
|
-
]
|
|
860
|
-
|
|
861
|
-
[[package]]
|
|
862
|
-
name = "generator"
|
|
863
|
-
version = "0.7.5"
|
|
864
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
-
checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
|
|
866
|
-
dependencies = [
|
|
867
|
-
"cc",
|
|
868
|
-
"libc",
|
|
869
|
-
"log",
|
|
870
|
-
"rustversion",
|
|
871
|
-
"windows 0.48.0",
|
|
872
|
-
]
|
|
873
|
-
|
|
874
|
-
[[package]]
|
|
875
|
-
name = "generic-array"
|
|
876
|
-
version = "0.14.7"
|
|
877
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
879
|
-
dependencies = [
|
|
880
|
-
"typenum",
|
|
881
|
-
"version_check",
|
|
882
|
-
]
|
|
883
|
-
|
|
884
|
-
[[package]]
|
|
885
|
-
name = "getrandom"
|
|
886
|
-
version = "0.1.16"
|
|
887
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
-
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
|
889
|
-
dependencies = [
|
|
890
|
-
"cfg-if",
|
|
891
|
-
"libc",
|
|
892
|
-
"wasi 0.9.0+wasi-snapshot-preview1",
|
|
893
|
-
]
|
|
894
|
-
|
|
895
|
-
[[package]]
|
|
896
|
-
name = "getrandom"
|
|
897
|
-
version = "0.2.10"
|
|
898
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
|
900
|
-
dependencies = [
|
|
901
|
-
"cfg-if",
|
|
902
|
-
"libc",
|
|
903
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
904
|
-
]
|
|
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
|
-
|
|
912
|
-
[[package]]
|
|
913
|
-
name = "gio"
|
|
914
|
-
version = "0.16.7"
|
|
915
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
-
checksum = "2a1c84b4534a290a29160ef5c6eff2a9c95833111472e824fc5cb78b513dd092"
|
|
917
|
-
dependencies = [
|
|
918
|
-
"bitflags",
|
|
919
|
-
"futures-channel",
|
|
920
|
-
"futures-core",
|
|
921
|
-
"futures-io",
|
|
922
|
-
"futures-util",
|
|
923
|
-
"gio-sys",
|
|
924
|
-
"glib",
|
|
925
|
-
"libc",
|
|
926
|
-
"once_cell",
|
|
927
|
-
"pin-project-lite",
|
|
928
|
-
"smallvec",
|
|
929
|
-
"thiserror",
|
|
930
|
-
]
|
|
931
|
-
|
|
932
|
-
[[package]]
|
|
933
|
-
name = "gio-sys"
|
|
934
|
-
version = "0.16.3"
|
|
935
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
-
checksum = "e9b693b8e39d042a95547fc258a7b07349b1f0b48f4b2fa3108ba3c51c0b5229"
|
|
937
|
-
dependencies = [
|
|
938
|
-
"glib-sys",
|
|
939
|
-
"gobject-sys",
|
|
940
|
-
"libc",
|
|
941
|
-
"system-deps",
|
|
942
|
-
"winapi",
|
|
943
|
-
]
|
|
944
|
-
|
|
945
|
-
[[package]]
|
|
946
|
-
name = "glib"
|
|
947
|
-
version = "0.16.9"
|
|
948
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "16aa2475c9debed5a32832cb5ff2af5a3f9e1ab9e69df58eaadc1ab2004d6eba"
|
|
950
|
-
dependencies = [
|
|
951
|
-
"bitflags",
|
|
952
|
-
"futures-channel",
|
|
953
|
-
"futures-core",
|
|
954
|
-
"futures-executor",
|
|
955
|
-
"futures-task",
|
|
956
|
-
"futures-util",
|
|
957
|
-
"gio-sys",
|
|
958
|
-
"glib-macros",
|
|
959
|
-
"glib-sys",
|
|
960
|
-
"gobject-sys",
|
|
961
|
-
"libc",
|
|
962
|
-
"once_cell",
|
|
963
|
-
"smallvec",
|
|
964
|
-
"thiserror",
|
|
965
|
-
]
|
|
966
|
-
|
|
967
|
-
[[package]]
|
|
968
|
-
name = "glib-macros"
|
|
969
|
-
version = "0.16.8"
|
|
970
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
-
checksum = "fb1a9325847aa46f1e96ffea37611b9d51fc4827e67f79e7de502a297560a67b"
|
|
972
|
-
dependencies = [
|
|
973
|
-
"anyhow",
|
|
974
|
-
"heck",
|
|
975
|
-
"proc-macro-crate",
|
|
976
|
-
"proc-macro-error",
|
|
977
|
-
"proc-macro2",
|
|
978
|
-
"quote",
|
|
979
|
-
"syn 1.0.109",
|
|
980
|
-
]
|
|
981
|
-
|
|
982
|
-
[[package]]
|
|
983
|
-
name = "glib-sys"
|
|
984
|
-
version = "0.16.3"
|
|
985
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
-
checksum = "c61a4f46316d06bfa33a7ac22df6f0524c8be58e3db2d9ca99ccb1f357b62a65"
|
|
987
|
-
dependencies = [
|
|
988
|
-
"libc",
|
|
989
|
-
"system-deps",
|
|
990
|
-
]
|
|
991
|
-
|
|
992
|
-
[[package]]
|
|
993
|
-
name = "glob"
|
|
994
|
-
version = "0.3.1"
|
|
995
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
-
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
997
|
-
|
|
998
|
-
[[package]]
|
|
999
|
-
name = "gobject-sys"
|
|
1000
|
-
version = "0.16.3"
|
|
1001
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
-
checksum = "3520bb9c07ae2a12c7f2fbb24d4efc11231c8146a86956413fb1a79bb760a0f1"
|
|
1003
|
-
dependencies = [
|
|
1004
|
-
"glib-sys",
|
|
1005
|
-
"libc",
|
|
1006
|
-
"system-deps",
|
|
1007
|
-
]
|
|
1008
|
-
|
|
1009
|
-
[[package]]
|
|
1010
|
-
name = "gtk"
|
|
1011
|
-
version = "0.16.2"
|
|
1012
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
-
checksum = "e4d3507d43908c866c805f74c9dd593c0ce7ba5c38e576e41846639cdcd4bee6"
|
|
1014
|
-
dependencies = [
|
|
1015
|
-
"atk",
|
|
1016
|
-
"bitflags",
|
|
1017
|
-
"cairo-rs",
|
|
1018
|
-
"field-offset",
|
|
1019
|
-
"futures-channel",
|
|
1020
|
-
"gdk",
|
|
1021
|
-
"gdk-pixbuf",
|
|
1022
|
-
"gio",
|
|
1023
|
-
"glib",
|
|
1024
|
-
"gtk-sys",
|
|
1025
|
-
"gtk3-macros",
|
|
1026
|
-
"libc",
|
|
1027
|
-
"once_cell",
|
|
1028
|
-
"pango",
|
|
1029
|
-
"pkg-config",
|
|
1030
|
-
]
|
|
1031
|
-
|
|
1032
|
-
[[package]]
|
|
1033
|
-
name = "gtk-sys"
|
|
1034
|
-
version = "0.16.0"
|
|
1035
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "89b5f8946685d5fe44497007786600c2f368ff6b1e61a16251c89f72a97520a3"
|
|
1037
|
-
dependencies = [
|
|
1038
|
-
"atk-sys",
|
|
1039
|
-
"cairo-sys-rs",
|
|
1040
|
-
"gdk-pixbuf-sys",
|
|
1041
|
-
"gdk-sys",
|
|
1042
|
-
"gio-sys",
|
|
1043
|
-
"glib-sys",
|
|
1044
|
-
"gobject-sys",
|
|
1045
|
-
"libc",
|
|
1046
|
-
"pango-sys",
|
|
1047
|
-
"system-deps",
|
|
1048
|
-
]
|
|
1049
|
-
|
|
1050
|
-
[[package]]
|
|
1051
|
-
name = "gtk3-macros"
|
|
1052
|
-
version = "0.16.3"
|
|
1053
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
-
checksum = "096eb63c6fedf03bafe65e5924595785eaf1bcb7200dac0f2cbe9c9738f05ad8"
|
|
1055
|
-
dependencies = [
|
|
1056
|
-
"anyhow",
|
|
1057
|
-
"proc-macro-crate",
|
|
1058
|
-
"proc-macro-error",
|
|
1059
|
-
"proc-macro2",
|
|
1060
|
-
"quote",
|
|
1061
|
-
"syn 1.0.109",
|
|
1062
|
-
]
|
|
1063
|
-
|
|
1064
|
-
[[package]]
|
|
1065
|
-
name = "h2"
|
|
1066
|
-
version = "0.3.20"
|
|
1067
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
-
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
|
|
1069
|
-
dependencies = [
|
|
1070
|
-
"bytes",
|
|
1071
|
-
"fnv",
|
|
1072
|
-
"futures-core",
|
|
1073
|
-
"futures-sink",
|
|
1074
|
-
"futures-util",
|
|
1075
|
-
"http",
|
|
1076
|
-
"indexmap 1.9.3",
|
|
1077
|
-
"slab",
|
|
1078
|
-
"tokio",
|
|
1079
|
-
"tokio-util",
|
|
1080
|
-
"tracing",
|
|
1081
|
-
]
|
|
1082
|
-
|
|
1083
|
-
[[package]]
|
|
1084
|
-
name = "hashbrown"
|
|
1085
|
-
version = "0.12.3"
|
|
1086
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
-
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1088
|
-
|
|
1089
|
-
[[package]]
|
|
1090
|
-
name = "hashbrown"
|
|
1091
|
-
version = "0.14.0"
|
|
1092
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
-
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
|
1094
|
-
|
|
1095
|
-
[[package]]
|
|
1096
|
-
name = "heck"
|
|
1097
|
-
version = "0.4.1"
|
|
1098
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1100
|
-
|
|
1101
|
-
[[package]]
|
|
1102
|
-
name = "hermit-abi"
|
|
1103
|
-
version = "0.3.2"
|
|
1104
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
|
1106
|
-
|
|
1107
|
-
[[package]]
|
|
1108
|
-
name = "hex"
|
|
1109
|
-
version = "0.4.3"
|
|
1110
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
-
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1112
|
-
|
|
1113
|
-
[[package]]
|
|
1114
|
-
name = "html5ever"
|
|
1115
|
-
version = "0.25.2"
|
|
1116
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
-
checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
|
|
1118
|
-
dependencies = [
|
|
1119
|
-
"log",
|
|
1120
|
-
"mac",
|
|
1121
|
-
"markup5ever",
|
|
1122
|
-
"proc-macro2",
|
|
1123
|
-
"quote",
|
|
1124
|
-
"syn 1.0.109",
|
|
1125
|
-
]
|
|
1126
|
-
|
|
1127
|
-
[[package]]
|
|
1128
|
-
name = "http"
|
|
1129
|
-
version = "0.2.9"
|
|
1130
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1131
|
-
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
|
1132
|
-
dependencies = [
|
|
1133
|
-
"bytes",
|
|
1134
|
-
"fnv",
|
|
1135
|
-
"itoa 1.0.8",
|
|
1136
|
-
]
|
|
1137
|
-
|
|
1138
|
-
[[package]]
|
|
1139
|
-
name = "http-body"
|
|
1140
|
-
version = "0.4.5"
|
|
1141
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
|
1143
|
-
dependencies = [
|
|
1144
|
-
"bytes",
|
|
1145
|
-
"http",
|
|
1146
|
-
"pin-project-lite",
|
|
1147
|
-
]
|
|
1148
|
-
|
|
1149
|
-
[[package]]
|
|
1150
|
-
name = "http-range"
|
|
1151
|
-
version = "0.1.5"
|
|
1152
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
-
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
|
|
1154
|
-
|
|
1155
|
-
[[package]]
|
|
1156
|
-
name = "httparse"
|
|
1157
|
-
version = "1.8.0"
|
|
1158
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
-
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
1160
|
-
|
|
1161
|
-
[[package]]
|
|
1162
|
-
name = "httpdate"
|
|
1163
|
-
version = "1.0.2"
|
|
1164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
-
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
|
1166
|
-
|
|
1167
|
-
[[package]]
|
|
1168
|
-
name = "hyper"
|
|
1169
|
-
version = "0.14.27"
|
|
1170
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
-
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
|
|
1172
|
-
dependencies = [
|
|
1173
|
-
"bytes",
|
|
1174
|
-
"futures-channel",
|
|
1175
|
-
"futures-core",
|
|
1176
|
-
"futures-util",
|
|
1177
|
-
"h2",
|
|
1178
|
-
"http",
|
|
1179
|
-
"http-body",
|
|
1180
|
-
"httparse",
|
|
1181
|
-
"httpdate",
|
|
1182
|
-
"itoa 1.0.8",
|
|
1183
|
-
"pin-project-lite",
|
|
1184
|
-
"socket2",
|
|
1185
|
-
"tokio",
|
|
1186
|
-
"tower-service",
|
|
1187
|
-
"tracing",
|
|
1188
|
-
"want",
|
|
1189
|
-
]
|
|
1190
|
-
|
|
1191
|
-
[[package]]
|
|
1192
|
-
name = "iana-time-zone"
|
|
1193
|
-
version = "0.1.57"
|
|
1194
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
-
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
|
|
1196
|
-
dependencies = [
|
|
1197
|
-
"android_system_properties",
|
|
1198
|
-
"core-foundation-sys",
|
|
1199
|
-
"iana-time-zone-haiku",
|
|
1200
|
-
"js-sys",
|
|
1201
|
-
"wasm-bindgen",
|
|
1202
|
-
"windows 0.48.0",
|
|
1203
|
-
]
|
|
1204
|
-
|
|
1205
|
-
[[package]]
|
|
1206
|
-
name = "iana-time-zone-haiku"
|
|
1207
|
-
version = "0.1.2"
|
|
1208
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1210
|
-
dependencies = [
|
|
1211
|
-
"cc",
|
|
1212
|
-
]
|
|
1213
|
-
|
|
1214
|
-
[[package]]
|
|
1215
|
-
name = "ico"
|
|
1216
|
-
version = "0.3.0"
|
|
1217
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
-
checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
|
|
1219
|
-
dependencies = [
|
|
1220
|
-
"byteorder",
|
|
1221
|
-
"png",
|
|
1222
|
-
]
|
|
1223
|
-
|
|
1224
|
-
[[package]]
|
|
1225
|
-
name = "ident_case"
|
|
1226
|
-
version = "1.0.1"
|
|
1227
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
-
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1229
|
-
|
|
1230
|
-
[[package]]
|
|
1231
|
-
name = "idna"
|
|
1232
|
-
version = "0.4.0"
|
|
1233
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
-
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
|
|
1235
|
-
dependencies = [
|
|
1236
|
-
"unicode-bidi",
|
|
1237
|
-
"unicode-normalization",
|
|
1238
|
-
]
|
|
1239
|
-
|
|
1240
|
-
[[package]]
|
|
1241
|
-
name = "image"
|
|
1242
|
-
version = "0.24.6"
|
|
1243
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
-
checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
|
|
1245
|
-
dependencies = [
|
|
1246
|
-
"bytemuck",
|
|
1247
|
-
"byteorder",
|
|
1248
|
-
"color_quant",
|
|
1249
|
-
"num-rational",
|
|
1250
|
-
"num-traits",
|
|
1251
|
-
]
|
|
1252
|
-
|
|
1253
|
-
[[package]]
|
|
1254
|
-
name = "indexmap"
|
|
1255
|
-
version = "1.9.3"
|
|
1256
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
-
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1258
|
-
dependencies = [
|
|
1259
|
-
"autocfg",
|
|
1260
|
-
"hashbrown 0.12.3",
|
|
1261
|
-
"serde",
|
|
1262
|
-
]
|
|
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
|
-
|
|
1274
|
-
[[package]]
|
|
1275
|
-
name = "infer"
|
|
1276
|
-
version = "0.12.0"
|
|
1277
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
-
checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3"
|
|
1279
|
-
dependencies = [
|
|
1280
|
-
"cfb",
|
|
1281
|
-
]
|
|
1282
|
-
|
|
1283
|
-
[[package]]
|
|
1284
|
-
name = "instant"
|
|
1285
|
-
version = "0.1.12"
|
|
1286
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
1288
|
-
dependencies = [
|
|
1289
|
-
"cfg-if",
|
|
1290
|
-
]
|
|
1291
|
-
|
|
1292
|
-
[[package]]
|
|
1293
|
-
name = "io-lifetimes"
|
|
1294
|
-
version = "1.0.11"
|
|
1295
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
-
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
|
1297
|
-
dependencies = [
|
|
1298
|
-
"hermit-abi",
|
|
1299
|
-
"libc",
|
|
1300
|
-
"windows-sys",
|
|
1301
|
-
]
|
|
1302
|
-
|
|
1303
|
-
[[package]]
|
|
1304
|
-
name = "ipnet"
|
|
1305
|
-
version = "2.8.0"
|
|
1306
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
-
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
|
|
1308
|
-
|
|
1309
|
-
[[package]]
|
|
1310
|
-
name = "itoa"
|
|
1311
|
-
version = "0.4.8"
|
|
1312
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
-
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
1314
|
-
|
|
1315
|
-
[[package]]
|
|
1316
|
-
name = "itoa"
|
|
1317
|
-
version = "1.0.8"
|
|
1318
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
-
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
|
|
1320
|
-
|
|
1321
|
-
[[package]]
|
|
1322
|
-
name = "javascriptcore-rs"
|
|
1323
|
-
version = "0.17.0"
|
|
1324
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
-
checksum = "110b9902c80c12bf113c432d0b71c7a94490b294a8234f326fd0abca2fac0b00"
|
|
1326
|
-
dependencies = [
|
|
1327
|
-
"bitflags",
|
|
1328
|
-
"glib",
|
|
1329
|
-
"javascriptcore-rs-sys",
|
|
1330
|
-
]
|
|
1331
|
-
|
|
1332
|
-
[[package]]
|
|
1333
|
-
name = "javascriptcore-rs-sys"
|
|
1334
|
-
version = "0.5.1"
|
|
1335
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
-
checksum = "98a216519a52cd941a733a0ad3f1023cfdb1cd47f3955e8e863ed56f558f916c"
|
|
1337
|
-
dependencies = [
|
|
1338
|
-
"glib-sys",
|
|
1339
|
-
"gobject-sys",
|
|
1340
|
-
"libc",
|
|
1341
|
-
"system-deps",
|
|
1342
|
-
]
|
|
1343
|
-
|
|
1344
|
-
[[package]]
|
|
1345
|
-
name = "jni"
|
|
1346
|
-
version = "0.20.0"
|
|
1347
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
-
checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c"
|
|
1349
|
-
dependencies = [
|
|
1350
|
-
"cesu8",
|
|
1351
|
-
"combine",
|
|
1352
|
-
"jni-sys",
|
|
1353
|
-
"log",
|
|
1354
|
-
"thiserror",
|
|
1355
|
-
"walkdir",
|
|
1356
|
-
]
|
|
1357
|
-
|
|
1358
|
-
[[package]]
|
|
1359
|
-
name = "jni-sys"
|
|
1360
|
-
version = "0.3.0"
|
|
1361
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
-
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1363
|
-
|
|
1364
|
-
[[package]]
|
|
1365
|
-
name = "js-sys"
|
|
1366
|
-
version = "0.3.64"
|
|
1367
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
|
|
1369
|
-
dependencies = [
|
|
1370
|
-
"wasm-bindgen",
|
|
1371
|
-
]
|
|
1372
|
-
|
|
1373
|
-
[[package]]
|
|
1374
|
-
name = "json-patch"
|
|
1375
|
-
version = "1.0.0"
|
|
1376
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
-
checksum = "1f54898088ccb91df1b492cc80029a6fdf1c48ca0db7c6822a8babad69c94658"
|
|
1378
|
-
dependencies = [
|
|
1379
|
-
"serde",
|
|
1380
|
-
"serde_json",
|
|
1381
|
-
"thiserror",
|
|
1382
|
-
"treediff",
|
|
1383
|
-
]
|
|
1384
|
-
|
|
1385
|
-
[[package]]
|
|
1386
|
-
name = "kuchiki"
|
|
1387
|
-
version = "0.8.1"
|
|
1388
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
-
checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
|
|
1390
|
-
dependencies = [
|
|
1391
|
-
"cssparser",
|
|
1392
|
-
"html5ever",
|
|
1393
|
-
"matches",
|
|
1394
|
-
"selectors",
|
|
1395
|
-
]
|
|
1396
|
-
|
|
1397
|
-
[[package]]
|
|
1398
|
-
name = "lazy_static"
|
|
1399
|
-
version = "1.4.0"
|
|
1400
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
-
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
1402
|
-
|
|
1403
|
-
[[package]]
|
|
1404
|
-
name = "libc"
|
|
1405
|
-
version = "0.2.147"
|
|
1406
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
-
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
|
1408
|
-
|
|
1409
|
-
[[package]]
|
|
1410
|
-
name = "line-wrap"
|
|
1411
|
-
version = "0.1.1"
|
|
1412
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1413
|
-
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
|
|
1414
|
-
dependencies = [
|
|
1415
|
-
"safemem",
|
|
1416
|
-
]
|
|
1417
|
-
|
|
1418
|
-
[[package]]
|
|
1419
|
-
name = "linux-raw-sys"
|
|
1420
|
-
version = "0.3.8"
|
|
1421
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
-
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
|
1423
|
-
|
|
1424
|
-
[[package]]
|
|
1425
|
-
name = "lock_api"
|
|
1426
|
-
version = "0.4.10"
|
|
1427
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
-
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
|
1429
|
-
dependencies = [
|
|
1430
|
-
"autocfg",
|
|
1431
|
-
"scopeguard",
|
|
1432
|
-
]
|
|
1433
|
-
|
|
1434
|
-
[[package]]
|
|
1435
|
-
name = "log"
|
|
1436
|
-
version = "0.4.19"
|
|
1437
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
-
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
|
1439
|
-
|
|
1440
|
-
[[package]]
|
|
1441
|
-
name = "loom"
|
|
1442
|
-
version = "0.5.6"
|
|
1443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
|
|
1445
|
-
dependencies = [
|
|
1446
|
-
"cfg-if",
|
|
1447
|
-
"generator",
|
|
1448
|
-
"scoped-tls",
|
|
1449
|
-
"serde",
|
|
1450
|
-
"serde_json",
|
|
1451
|
-
"tracing",
|
|
1452
|
-
"tracing-subscriber",
|
|
1453
|
-
]
|
|
1454
|
-
|
|
1455
|
-
[[package]]
|
|
1456
|
-
name = "mac"
|
|
1457
|
-
version = "0.1.1"
|
|
1458
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
-
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
1460
|
-
|
|
1461
|
-
[[package]]
|
|
1462
|
-
name = "malloc_buf"
|
|
1463
|
-
version = "0.0.6"
|
|
1464
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
-
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
1466
|
-
dependencies = [
|
|
1467
|
-
"libc",
|
|
1468
|
-
]
|
|
1469
|
-
|
|
1470
|
-
[[package]]
|
|
1471
|
-
name = "markup5ever"
|
|
1472
|
-
version = "0.10.1"
|
|
1473
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
-
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
|
|
1475
|
-
dependencies = [
|
|
1476
|
-
"log",
|
|
1477
|
-
"phf 0.8.0",
|
|
1478
|
-
"phf_codegen",
|
|
1479
|
-
"string_cache",
|
|
1480
|
-
"string_cache_codegen",
|
|
1481
|
-
"tendril",
|
|
1482
|
-
]
|
|
1483
|
-
|
|
1484
|
-
[[package]]
|
|
1485
|
-
name = "matchers"
|
|
1486
|
-
version = "0.1.0"
|
|
1487
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
-
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
1489
|
-
dependencies = [
|
|
1490
|
-
"regex-automata 0.1.10",
|
|
1491
|
-
]
|
|
1492
|
-
|
|
1493
|
-
[[package]]
|
|
1494
|
-
name = "matches"
|
|
1495
|
-
version = "0.1.10"
|
|
1496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
-
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
1498
|
-
|
|
1499
|
-
[[package]]
|
|
1500
|
-
name = "memchr"
|
|
1501
|
-
version = "2.5.0"
|
|
1502
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
-
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
1504
|
-
|
|
1505
|
-
[[package]]
|
|
1506
|
-
name = "memoffset"
|
|
1507
|
-
version = "0.9.0"
|
|
1508
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
1510
|
-
dependencies = [
|
|
1511
|
-
"autocfg",
|
|
1512
|
-
]
|
|
1513
|
-
|
|
1514
|
-
[[package]]
|
|
1515
|
-
name = "mime"
|
|
1516
|
-
version = "0.3.17"
|
|
1517
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
-
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1519
|
-
|
|
1520
|
-
[[package]]
|
|
1521
|
-
name = "miniz_oxide"
|
|
1522
|
-
version = "0.7.1"
|
|
1523
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
-
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
|
1525
|
-
dependencies = [
|
|
1526
|
-
"adler",
|
|
1527
|
-
"simd-adler32",
|
|
1528
|
-
]
|
|
1529
|
-
|
|
1530
|
-
[[package]]
|
|
1531
|
-
name = "mio"
|
|
1532
|
-
version = "0.8.8"
|
|
1533
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
-
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
|
|
1535
|
-
dependencies = [
|
|
1536
|
-
"libc",
|
|
1537
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1538
|
-
"windows-sys",
|
|
1539
|
-
]
|
|
1540
|
-
|
|
1541
|
-
[[package]]
|
|
1542
|
-
name = "ndk"
|
|
1543
|
-
version = "0.6.0"
|
|
1544
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
-
checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
|
|
1546
|
-
dependencies = [
|
|
1547
|
-
"bitflags",
|
|
1548
|
-
"jni-sys",
|
|
1549
|
-
"ndk-sys",
|
|
1550
|
-
"num_enum",
|
|
1551
|
-
"thiserror",
|
|
1552
|
-
]
|
|
1553
|
-
|
|
1554
|
-
[[package]]
|
|
1555
|
-
name = "ndk-context"
|
|
1556
|
-
version = "0.1.1"
|
|
1557
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
-
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
1559
|
-
|
|
1560
|
-
[[package]]
|
|
1561
|
-
name = "ndk-sys"
|
|
1562
|
-
version = "0.3.0"
|
|
1563
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
-
checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97"
|
|
1565
|
-
dependencies = [
|
|
1566
|
-
"jni-sys",
|
|
1567
|
-
]
|
|
1568
|
-
|
|
1569
|
-
[[package]]
|
|
1570
|
-
name = "new_debug_unreachable"
|
|
1571
|
-
version = "1.0.4"
|
|
1572
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
-
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
|
|
1574
|
-
|
|
1575
|
-
[[package]]
|
|
1576
|
-
name = "nodrop"
|
|
1577
|
-
version = "0.1.14"
|
|
1578
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
-
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
|
1580
|
-
|
|
1581
|
-
[[package]]
|
|
1582
|
-
name = "nu-ansi-term"
|
|
1583
|
-
version = "0.46.0"
|
|
1584
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
-
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
1586
|
-
dependencies = [
|
|
1587
|
-
"overload",
|
|
1588
|
-
"winapi",
|
|
1589
|
-
]
|
|
1590
|
-
|
|
1591
|
-
[[package]]
|
|
1592
|
-
name = "num-integer"
|
|
1593
|
-
version = "0.1.45"
|
|
1594
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
-
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
1596
|
-
dependencies = [
|
|
1597
|
-
"autocfg",
|
|
1598
|
-
"num-traits",
|
|
1599
|
-
]
|
|
1600
|
-
|
|
1601
|
-
[[package]]
|
|
1602
|
-
name = "num-rational"
|
|
1603
|
-
version = "0.4.1"
|
|
1604
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
-
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
|
|
1606
|
-
dependencies = [
|
|
1607
|
-
"autocfg",
|
|
1608
|
-
"num-integer",
|
|
1609
|
-
"num-traits",
|
|
1610
|
-
]
|
|
1611
|
-
|
|
1612
|
-
[[package]]
|
|
1613
|
-
name = "num-traits"
|
|
1614
|
-
version = "0.2.15"
|
|
1615
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
-
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
|
1617
|
-
dependencies = [
|
|
1618
|
-
"autocfg",
|
|
1619
|
-
]
|
|
1620
|
-
|
|
1621
|
-
[[package]]
|
|
1622
|
-
name = "num_cpus"
|
|
1623
|
-
version = "1.16.0"
|
|
1624
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
-
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1626
|
-
dependencies = [
|
|
1627
|
-
"hermit-abi",
|
|
1628
|
-
"libc",
|
|
1629
|
-
]
|
|
1630
|
-
|
|
1631
|
-
[[package]]
|
|
1632
|
-
name = "num_enum"
|
|
1633
|
-
version = "0.5.11"
|
|
1634
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
-
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
|
|
1636
|
-
dependencies = [
|
|
1637
|
-
"num_enum_derive",
|
|
1638
|
-
]
|
|
1639
|
-
|
|
1640
|
-
[[package]]
|
|
1641
|
-
name = "num_enum_derive"
|
|
1642
|
-
version = "0.5.11"
|
|
1643
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
-
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
|
|
1645
|
-
dependencies = [
|
|
1646
|
-
"proc-macro-crate",
|
|
1647
|
-
"proc-macro2",
|
|
1648
|
-
"quote",
|
|
1649
|
-
"syn 1.0.109",
|
|
1650
|
-
]
|
|
1651
|
-
|
|
1652
|
-
[[package]]
|
|
1653
|
-
name = "objc"
|
|
1654
|
-
version = "0.2.7"
|
|
1655
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
-
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
1657
|
-
dependencies = [
|
|
1658
|
-
"malloc_buf",
|
|
1659
|
-
"objc_exception",
|
|
1660
|
-
]
|
|
1661
|
-
|
|
1662
|
-
[[package]]
|
|
1663
|
-
name = "objc_exception"
|
|
1664
|
-
version = "0.1.2"
|
|
1665
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
|
|
1667
|
-
dependencies = [
|
|
1668
|
-
"cc",
|
|
1669
|
-
]
|
|
1670
|
-
|
|
1671
|
-
[[package]]
|
|
1672
|
-
name = "objc_id"
|
|
1673
|
-
version = "0.1.1"
|
|
1674
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
-
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
|
|
1676
|
-
dependencies = [
|
|
1677
|
-
"objc",
|
|
1678
|
-
]
|
|
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
|
-
|
|
1689
|
-
[[package]]
|
|
1690
|
-
name = "once_cell"
|
|
1691
|
-
version = "1.18.0"
|
|
1692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
-
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
|
1694
|
-
|
|
1695
|
-
[[package]]
|
|
1696
|
-
name = "overload"
|
|
1697
|
-
version = "0.1.1"
|
|
1698
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
1700
|
-
|
|
1701
|
-
[[package]]
|
|
1702
|
-
name = "pango"
|
|
1703
|
-
version = "0.16.5"
|
|
1704
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
-
checksum = "cdff66b271861037b89d028656184059e03b0b6ccb36003820be19f7200b1e94"
|
|
1706
|
-
dependencies = [
|
|
1707
|
-
"bitflags",
|
|
1708
|
-
"gio",
|
|
1709
|
-
"glib",
|
|
1710
|
-
"libc",
|
|
1711
|
-
"once_cell",
|
|
1712
|
-
"pango-sys",
|
|
1713
|
-
]
|
|
1714
|
-
|
|
1715
|
-
[[package]]
|
|
1716
|
-
name = "pango-sys"
|
|
1717
|
-
version = "0.16.3"
|
|
1718
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "9e134909a9a293e04d2cc31928aa95679c5e4df954d0b85483159bd20d8f047f"
|
|
1720
|
-
dependencies = [
|
|
1721
|
-
"glib-sys",
|
|
1722
|
-
"gobject-sys",
|
|
1723
|
-
"libc",
|
|
1724
|
-
"system-deps",
|
|
1725
|
-
]
|
|
1726
|
-
|
|
1727
|
-
[[package]]
|
|
1728
|
-
name = "parking_lot"
|
|
1729
|
-
version = "0.12.1"
|
|
1730
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
-
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
1732
|
-
dependencies = [
|
|
1733
|
-
"lock_api",
|
|
1734
|
-
"parking_lot_core",
|
|
1735
|
-
]
|
|
1736
|
-
|
|
1737
|
-
[[package]]
|
|
1738
|
-
name = "parking_lot_core"
|
|
1739
|
-
version = "0.9.8"
|
|
1740
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
-
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
|
1742
|
-
dependencies = [
|
|
1743
|
-
"cfg-if",
|
|
1744
|
-
"libc",
|
|
1745
|
-
"redox_syscall 0.3.5",
|
|
1746
|
-
"smallvec",
|
|
1747
|
-
"windows-targets 0.48.1",
|
|
1748
|
-
]
|
|
1749
|
-
|
|
1750
|
-
[[package]]
|
|
1751
|
-
name = "percent-encoding"
|
|
1752
|
-
version = "2.3.0"
|
|
1753
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
-
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
|
1755
|
-
|
|
1756
|
-
[[package]]
|
|
1757
|
-
name = "phf"
|
|
1758
|
-
version = "0.8.0"
|
|
1759
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
-
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
|
|
1761
|
-
dependencies = [
|
|
1762
|
-
"phf_macros 0.8.0",
|
|
1763
|
-
"phf_shared 0.8.0",
|
|
1764
|
-
"proc-macro-hack",
|
|
1765
|
-
]
|
|
1766
|
-
|
|
1767
|
-
[[package]]
|
|
1768
|
-
name = "phf"
|
|
1769
|
-
version = "0.10.1"
|
|
1770
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
-
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
|
1772
|
-
dependencies = [
|
|
1773
|
-
"phf_macros 0.10.0",
|
|
1774
|
-
"phf_shared 0.10.0",
|
|
1775
|
-
"proc-macro-hack",
|
|
1776
|
-
]
|
|
1777
|
-
|
|
1778
|
-
[[package]]
|
|
1779
|
-
name = "phf_codegen"
|
|
1780
|
-
version = "0.8.0"
|
|
1781
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
-
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
|
|
1783
|
-
dependencies = [
|
|
1784
|
-
"phf_generator 0.8.0",
|
|
1785
|
-
"phf_shared 0.8.0",
|
|
1786
|
-
]
|
|
1787
|
-
|
|
1788
|
-
[[package]]
|
|
1789
|
-
name = "phf_generator"
|
|
1790
|
-
version = "0.8.0"
|
|
1791
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
-
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
|
|
1793
|
-
dependencies = [
|
|
1794
|
-
"phf_shared 0.8.0",
|
|
1795
|
-
"rand 0.7.3",
|
|
1796
|
-
]
|
|
1797
|
-
|
|
1798
|
-
[[package]]
|
|
1799
|
-
name = "phf_generator"
|
|
1800
|
-
version = "0.10.0"
|
|
1801
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
-
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
|
|
1803
|
-
dependencies = [
|
|
1804
|
-
"phf_shared 0.10.0",
|
|
1805
|
-
"rand 0.8.5",
|
|
1806
|
-
]
|
|
1807
|
-
|
|
1808
|
-
[[package]]
|
|
1809
|
-
name = "phf_macros"
|
|
1810
|
-
version = "0.8.0"
|
|
1811
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
|
|
1813
|
-
dependencies = [
|
|
1814
|
-
"phf_generator 0.8.0",
|
|
1815
|
-
"phf_shared 0.8.0",
|
|
1816
|
-
"proc-macro-hack",
|
|
1817
|
-
"proc-macro2",
|
|
1818
|
-
"quote",
|
|
1819
|
-
"syn 1.0.109",
|
|
1820
|
-
]
|
|
1821
|
-
|
|
1822
|
-
[[package]]
|
|
1823
|
-
name = "phf_macros"
|
|
1824
|
-
version = "0.10.0"
|
|
1825
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
-
checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
|
|
1827
|
-
dependencies = [
|
|
1828
|
-
"phf_generator 0.10.0",
|
|
1829
|
-
"phf_shared 0.10.0",
|
|
1830
|
-
"proc-macro-hack",
|
|
1831
|
-
"proc-macro2",
|
|
1832
|
-
"quote",
|
|
1833
|
-
"syn 1.0.109",
|
|
1834
|
-
]
|
|
1835
|
-
|
|
1836
|
-
[[package]]
|
|
1837
|
-
name = "phf_shared"
|
|
1838
|
-
version = "0.8.0"
|
|
1839
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
-
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
|
|
1841
|
-
dependencies = [
|
|
1842
|
-
"siphasher",
|
|
1843
|
-
]
|
|
1844
|
-
|
|
1845
|
-
[[package]]
|
|
1846
|
-
name = "phf_shared"
|
|
1847
|
-
version = "0.10.0"
|
|
1848
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
-
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
|
1850
|
-
dependencies = [
|
|
1851
|
-
"siphasher",
|
|
1852
|
-
]
|
|
1853
|
-
|
|
1854
|
-
[[package]]
|
|
1855
|
-
name = "pin-project-lite"
|
|
1856
|
-
version = "0.2.10"
|
|
1857
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
-
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
|
|
1859
|
-
|
|
1860
|
-
[[package]]
|
|
1861
|
-
name = "pin-utils"
|
|
1862
|
-
version = "0.1.0"
|
|
1863
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1865
|
-
|
|
1866
|
-
[[package]]
|
|
1867
|
-
name = "pkg-config"
|
|
1868
|
-
version = "0.3.27"
|
|
1869
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
-
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
|
1871
|
-
|
|
1872
|
-
[[package]]
|
|
1873
|
-
name = "plist"
|
|
1874
|
-
version = "1.5.0"
|
|
1875
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
-
checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06"
|
|
1877
|
-
dependencies = [
|
|
1878
|
-
"base64 0.21.2",
|
|
1879
|
-
"indexmap 1.9.3",
|
|
1880
|
-
"line-wrap",
|
|
1881
|
-
"quick-xml",
|
|
1882
|
-
"serde",
|
|
1883
|
-
"time",
|
|
1884
|
-
]
|
|
1885
|
-
|
|
1886
|
-
[[package]]
|
|
1887
|
-
name = "png"
|
|
1888
|
-
version = "0.17.9"
|
|
1889
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
-
checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
|
|
1891
|
-
dependencies = [
|
|
1892
|
-
"bitflags",
|
|
1893
|
-
"crc32fast",
|
|
1894
|
-
"fdeflate",
|
|
1895
|
-
"flate2",
|
|
1896
|
-
"miniz_oxide",
|
|
1897
|
-
]
|
|
1898
|
-
|
|
1899
|
-
[[package]]
|
|
1900
|
-
name = "ppv-lite86"
|
|
1901
|
-
version = "0.2.17"
|
|
1902
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
-
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1904
|
-
|
|
1905
|
-
[[package]]
|
|
1906
|
-
name = "precomputed-hash"
|
|
1907
|
-
version = "0.1.1"
|
|
1908
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1909
|
-
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
1910
|
-
|
|
1911
|
-
[[package]]
|
|
1912
|
-
name = "proc-macro-crate"
|
|
1913
|
-
version = "1.3.1"
|
|
1914
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
-
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
|
1916
|
-
dependencies = [
|
|
1917
|
-
"once_cell",
|
|
1918
|
-
"toml_edit",
|
|
1919
|
-
]
|
|
1920
|
-
|
|
1921
|
-
[[package]]
|
|
1922
|
-
name = "proc-macro-error"
|
|
1923
|
-
version = "1.0.4"
|
|
1924
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
-
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
1926
|
-
dependencies = [
|
|
1927
|
-
"proc-macro-error-attr",
|
|
1928
|
-
"proc-macro2",
|
|
1929
|
-
"quote",
|
|
1930
|
-
"syn 1.0.109",
|
|
1931
|
-
"version_check",
|
|
1932
|
-
]
|
|
1933
|
-
|
|
1934
|
-
[[package]]
|
|
1935
|
-
name = "proc-macro-error-attr"
|
|
1936
|
-
version = "1.0.4"
|
|
1937
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
-
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
1939
|
-
dependencies = [
|
|
1940
|
-
"proc-macro2",
|
|
1941
|
-
"quote",
|
|
1942
|
-
"version_check",
|
|
1943
|
-
]
|
|
1944
|
-
|
|
1945
|
-
[[package]]
|
|
1946
|
-
name = "proc-macro-hack"
|
|
1947
|
-
version = "0.5.20+deprecated"
|
|
1948
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
-
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
1950
|
-
|
|
1951
|
-
[[package]]
|
|
1952
|
-
name = "proc-macro2"
|
|
1953
|
-
version = "1.0.64"
|
|
1954
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
-
checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
|
|
1956
|
-
dependencies = [
|
|
1957
|
-
"unicode-ident",
|
|
1958
|
-
]
|
|
1959
|
-
|
|
1960
|
-
[[package]]
|
|
1961
|
-
name = "quick-xml"
|
|
1962
|
-
version = "0.29.0"
|
|
1963
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
-
checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51"
|
|
1965
|
-
dependencies = [
|
|
1966
|
-
"memchr",
|
|
1967
|
-
]
|
|
1968
|
-
|
|
1969
|
-
[[package]]
|
|
1970
|
-
name = "quote"
|
|
1971
|
-
version = "1.0.29"
|
|
1972
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
-
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
|
|
1974
|
-
dependencies = [
|
|
1975
|
-
"proc-macro2",
|
|
1976
|
-
]
|
|
1977
|
-
|
|
1978
|
-
[[package]]
|
|
1979
|
-
name = "rand"
|
|
1980
|
-
version = "0.7.3"
|
|
1981
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
-
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
|
1983
|
-
dependencies = [
|
|
1984
|
-
"getrandom 0.1.16",
|
|
1985
|
-
"libc",
|
|
1986
|
-
"rand_chacha 0.2.2",
|
|
1987
|
-
"rand_core 0.5.1",
|
|
1988
|
-
"rand_hc",
|
|
1989
|
-
"rand_pcg",
|
|
1990
|
-
]
|
|
1991
|
-
|
|
1992
|
-
[[package]]
|
|
1993
|
-
name = "rand"
|
|
1994
|
-
version = "0.8.5"
|
|
1995
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
-
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1997
|
-
dependencies = [
|
|
1998
|
-
"libc",
|
|
1999
|
-
"rand_chacha 0.3.1",
|
|
2000
|
-
"rand_core 0.6.4",
|
|
2001
|
-
]
|
|
2002
|
-
|
|
2003
|
-
[[package]]
|
|
2004
|
-
name = "rand_chacha"
|
|
2005
|
-
version = "0.2.2"
|
|
2006
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
-
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
|
2008
|
-
dependencies = [
|
|
2009
|
-
"ppv-lite86",
|
|
2010
|
-
"rand_core 0.5.1",
|
|
2011
|
-
]
|
|
2012
|
-
|
|
2013
|
-
[[package]]
|
|
2014
|
-
name = "rand_chacha"
|
|
2015
|
-
version = "0.3.1"
|
|
2016
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2018
|
-
dependencies = [
|
|
2019
|
-
"ppv-lite86",
|
|
2020
|
-
"rand_core 0.6.4",
|
|
2021
|
-
]
|
|
2022
|
-
|
|
2023
|
-
[[package]]
|
|
2024
|
-
name = "rand_core"
|
|
2025
|
-
version = "0.5.1"
|
|
2026
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
-
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
|
2028
|
-
dependencies = [
|
|
2029
|
-
"getrandom 0.1.16",
|
|
2030
|
-
]
|
|
2031
|
-
|
|
2032
|
-
[[package]]
|
|
2033
|
-
name = "rand_core"
|
|
2034
|
-
version = "0.6.4"
|
|
2035
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2037
|
-
dependencies = [
|
|
2038
|
-
"getrandom 0.2.10",
|
|
2039
|
-
]
|
|
2040
|
-
|
|
2041
|
-
[[package]]
|
|
2042
|
-
name = "rand_hc"
|
|
2043
|
-
version = "0.2.0"
|
|
2044
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
-
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
|
2046
|
-
dependencies = [
|
|
2047
|
-
"rand_core 0.5.1",
|
|
2048
|
-
]
|
|
2049
|
-
|
|
2050
|
-
[[package]]
|
|
2051
|
-
name = "rand_pcg"
|
|
2052
|
-
version = "0.2.1"
|
|
2053
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
-
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
|
|
2055
|
-
dependencies = [
|
|
2056
|
-
"rand_core 0.5.1",
|
|
2057
|
-
]
|
|
2058
|
-
|
|
2059
|
-
[[package]]
|
|
2060
|
-
name = "raw-window-handle"
|
|
2061
|
-
version = "0.5.2"
|
|
2062
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
-
checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
|
|
2064
|
-
|
|
2065
|
-
[[package]]
|
|
2066
|
-
name = "redox_syscall"
|
|
2067
|
-
version = "0.2.16"
|
|
2068
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
|
-
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
2070
|
-
dependencies = [
|
|
2071
|
-
"bitflags",
|
|
2072
|
-
]
|
|
2073
|
-
|
|
2074
|
-
[[package]]
|
|
2075
|
-
name = "redox_syscall"
|
|
2076
|
-
version = "0.3.5"
|
|
2077
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
-
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
2079
|
-
dependencies = [
|
|
2080
|
-
"bitflags",
|
|
2081
|
-
]
|
|
2082
|
-
|
|
2083
|
-
[[package]]
|
|
2084
|
-
name = "redox_users"
|
|
2085
|
-
version = "0.4.3"
|
|
2086
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2087
|
-
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
|
2088
|
-
dependencies = [
|
|
2089
|
-
"getrandom 0.2.10",
|
|
2090
|
-
"redox_syscall 0.2.16",
|
|
2091
|
-
"thiserror",
|
|
2092
|
-
]
|
|
2093
|
-
|
|
2094
|
-
[[package]]
|
|
2095
|
-
name = "regex"
|
|
2096
|
-
version = "1.9.1"
|
|
2097
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
-
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
|
|
2099
|
-
dependencies = [
|
|
2100
|
-
"aho-corasick",
|
|
2101
|
-
"memchr",
|
|
2102
|
-
"regex-automata 0.3.2",
|
|
2103
|
-
"regex-syntax 0.7.3",
|
|
2104
|
-
]
|
|
2105
|
-
|
|
2106
|
-
[[package]]
|
|
2107
|
-
name = "regex-automata"
|
|
2108
|
-
version = "0.1.10"
|
|
2109
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
-
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
2111
|
-
dependencies = [
|
|
2112
|
-
"regex-syntax 0.6.29",
|
|
2113
|
-
]
|
|
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
|
-
|
|
2126
|
-
[[package]]
|
|
2127
|
-
name = "regex-syntax"
|
|
2128
|
-
version = "0.6.29"
|
|
2129
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
-
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
2131
|
-
|
|
2132
|
-
[[package]]
|
|
2133
|
-
name = "regex-syntax"
|
|
2134
|
-
version = "0.7.3"
|
|
2135
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
-
checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
|
|
2137
|
-
|
|
2138
|
-
[[package]]
|
|
2139
|
-
name = "reqwest"
|
|
2140
|
-
version = "0.11.18"
|
|
2141
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
-
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
|
|
2143
|
-
dependencies = [
|
|
2144
|
-
"base64 0.21.2",
|
|
2145
|
-
"bytes",
|
|
2146
|
-
"encoding_rs",
|
|
2147
|
-
"futures-core",
|
|
2148
|
-
"futures-util",
|
|
2149
|
-
"h2",
|
|
2150
|
-
"http",
|
|
2151
|
-
"http-body",
|
|
2152
|
-
"hyper",
|
|
2153
|
-
"ipnet",
|
|
2154
|
-
"js-sys",
|
|
2155
|
-
"log",
|
|
2156
|
-
"mime",
|
|
2157
|
-
"once_cell",
|
|
2158
|
-
"percent-encoding",
|
|
2159
|
-
"pin-project-lite",
|
|
2160
|
-
"serde",
|
|
2161
|
-
"serde_json",
|
|
2162
|
-
"serde_urlencoded",
|
|
2163
|
-
"tokio",
|
|
2164
|
-
"tokio-util",
|
|
2165
|
-
"tower-service",
|
|
2166
|
-
"url",
|
|
2167
|
-
"wasm-bindgen",
|
|
2168
|
-
"wasm-bindgen-futures",
|
|
2169
|
-
"wasm-streams",
|
|
2170
|
-
"web-sys",
|
|
2171
|
-
"winreg 0.10.1",
|
|
2172
|
-
]
|
|
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
|
-
|
|
2180
|
-
[[package]]
|
|
2181
|
-
name = "rustc_version"
|
|
2182
|
-
version = "0.4.0"
|
|
2183
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
2185
|
-
dependencies = [
|
|
2186
|
-
"semver",
|
|
2187
|
-
]
|
|
2188
|
-
|
|
2189
|
-
[[package]]
|
|
2190
|
-
name = "rustix"
|
|
2191
|
-
version = "0.37.23"
|
|
2192
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
-
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
|
|
2194
|
-
dependencies = [
|
|
2195
|
-
"bitflags",
|
|
2196
|
-
"errno",
|
|
2197
|
-
"io-lifetimes",
|
|
2198
|
-
"libc",
|
|
2199
|
-
"linux-raw-sys",
|
|
2200
|
-
"windows-sys",
|
|
2201
|
-
]
|
|
2202
|
-
|
|
2203
|
-
[[package]]
|
|
2204
|
-
name = "rustversion"
|
|
2205
|
-
version = "1.0.13"
|
|
2206
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
-
checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f"
|
|
2208
|
-
|
|
2209
|
-
[[package]]
|
|
2210
|
-
name = "ryu"
|
|
2211
|
-
version = "1.0.14"
|
|
2212
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
-
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
|
|
2214
|
-
|
|
2215
|
-
[[package]]
|
|
2216
|
-
name = "safemem"
|
|
2217
|
-
version = "0.3.3"
|
|
2218
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
-
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
|
|
2220
|
-
|
|
2221
|
-
[[package]]
|
|
2222
|
-
name = "same-file"
|
|
2223
|
-
version = "1.0.6"
|
|
2224
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2225
|
-
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2226
|
-
dependencies = [
|
|
2227
|
-
"winapi-util",
|
|
2228
|
-
]
|
|
2229
|
-
|
|
2230
|
-
[[package]]
|
|
2231
|
-
name = "scoped-tls"
|
|
2232
|
-
version = "1.0.1"
|
|
2233
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
-
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
2235
|
-
|
|
2236
|
-
[[package]]
|
|
2237
|
-
name = "scopeguard"
|
|
2238
|
-
version = "1.1.0"
|
|
2239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
-
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
2241
|
-
|
|
2242
|
-
[[package]]
|
|
2243
|
-
name = "selectors"
|
|
2244
|
-
version = "0.22.0"
|
|
2245
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
-
checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
|
|
2247
|
-
dependencies = [
|
|
2248
|
-
"bitflags",
|
|
2249
|
-
"cssparser",
|
|
2250
|
-
"derive_more",
|
|
2251
|
-
"fxhash",
|
|
2252
|
-
"log",
|
|
2253
|
-
"matches",
|
|
2254
|
-
"phf 0.8.0",
|
|
2255
|
-
"phf_codegen",
|
|
2256
|
-
"precomputed-hash",
|
|
2257
|
-
"servo_arc",
|
|
2258
|
-
"smallvec",
|
|
2259
|
-
"thin-slice",
|
|
2260
|
-
]
|
|
2261
|
-
|
|
2262
|
-
[[package]]
|
|
2263
|
-
name = "semver"
|
|
2264
|
-
version = "1.0.17"
|
|
2265
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
-
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
2267
|
-
dependencies = [
|
|
2268
|
-
"serde",
|
|
2269
|
-
]
|
|
2270
|
-
|
|
2271
|
-
[[package]]
|
|
2272
|
-
name = "serde"
|
|
2273
|
-
version = "1.0.171"
|
|
2274
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
-
checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
|
|
2276
|
-
dependencies = [
|
|
2277
|
-
"serde_derive",
|
|
2278
|
-
]
|
|
2279
|
-
|
|
2280
|
-
[[package]]
|
|
2281
|
-
name = "serde_derive"
|
|
2282
|
-
version = "1.0.171"
|
|
2283
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
|
|
2285
|
-
dependencies = [
|
|
2286
|
-
"proc-macro2",
|
|
2287
|
-
"quote",
|
|
2288
|
-
"syn 2.0.25",
|
|
2289
|
-
]
|
|
2290
|
-
|
|
2291
|
-
[[package]]
|
|
2292
|
-
name = "serde_json"
|
|
2293
|
-
version = "1.0.100"
|
|
2294
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
-
checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c"
|
|
2296
|
-
dependencies = [
|
|
2297
|
-
"itoa 1.0.8",
|
|
2298
|
-
"ryu",
|
|
2299
|
-
"serde",
|
|
2300
|
-
]
|
|
2301
|
-
|
|
2302
|
-
[[package]]
|
|
2303
|
-
name = "serde_repr"
|
|
2304
|
-
version = "0.1.14"
|
|
2305
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
-
checksum = "1d89a8107374290037607734c0b73a85db7ed80cae314b3c5791f192a496e731"
|
|
2307
|
-
dependencies = [
|
|
2308
|
-
"proc-macro2",
|
|
2309
|
-
"quote",
|
|
2310
|
-
"syn 2.0.25",
|
|
2311
|
-
]
|
|
2312
|
-
|
|
2313
|
-
[[package]]
|
|
2314
|
-
name = "serde_spanned"
|
|
2315
|
-
version = "0.6.3"
|
|
2316
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2317
|
-
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
|
|
2318
|
-
dependencies = [
|
|
2319
|
-
"serde",
|
|
2320
|
-
]
|
|
2321
|
-
|
|
2322
|
-
[[package]]
|
|
2323
|
-
name = "serde_urlencoded"
|
|
2324
|
-
version = "0.7.1"
|
|
2325
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
-
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2327
|
-
dependencies = [
|
|
2328
|
-
"form_urlencoded",
|
|
2329
|
-
"itoa 1.0.8",
|
|
2330
|
-
"ryu",
|
|
2331
|
-
"serde",
|
|
2332
|
-
]
|
|
2333
|
-
|
|
2334
|
-
[[package]]
|
|
2335
|
-
name = "serde_with"
|
|
2336
|
-
version = "3.0.0"
|
|
2337
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
-
checksum = "9f02d8aa6e3c385bf084924f660ce2a3a6bd333ba55b35e8590b321f35d88513"
|
|
2339
|
-
dependencies = [
|
|
2340
|
-
"base64 0.21.2",
|
|
2341
|
-
"chrono",
|
|
2342
|
-
"hex",
|
|
2343
|
-
"indexmap 1.9.3",
|
|
2344
|
-
"serde",
|
|
2345
|
-
"serde_json",
|
|
2346
|
-
"serde_with_macros",
|
|
2347
|
-
"time",
|
|
2348
|
-
]
|
|
2349
|
-
|
|
2350
|
-
[[package]]
|
|
2351
|
-
name = "serde_with_macros"
|
|
2352
|
-
version = "3.0.0"
|
|
2353
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "edc7d5d3932fb12ce722ee5e64dd38c504efba37567f0c402f6ca728c3b8b070"
|
|
2355
|
-
dependencies = [
|
|
2356
|
-
"darling",
|
|
2357
|
-
"proc-macro2",
|
|
2358
|
-
"quote",
|
|
2359
|
-
"syn 2.0.25",
|
|
2360
|
-
]
|
|
2361
|
-
|
|
2362
|
-
[[package]]
|
|
2363
|
-
name = "serialize-to-javascript"
|
|
2364
|
-
version = "0.1.1"
|
|
2365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
-
checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
|
|
2367
|
-
dependencies = [
|
|
2368
|
-
"serde",
|
|
2369
|
-
"serde_json",
|
|
2370
|
-
"serialize-to-javascript-impl",
|
|
2371
|
-
]
|
|
2372
|
-
|
|
2373
|
-
[[package]]
|
|
2374
|
-
name = "serialize-to-javascript-impl"
|
|
2375
|
-
version = "0.1.1"
|
|
2376
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
-
checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
|
|
2378
|
-
dependencies = [
|
|
2379
|
-
"proc-macro2",
|
|
2380
|
-
"quote",
|
|
2381
|
-
"syn 1.0.109",
|
|
2382
|
-
]
|
|
2383
|
-
|
|
2384
|
-
[[package]]
|
|
2385
|
-
name = "servo_arc"
|
|
2386
|
-
version = "0.1.1"
|
|
2387
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
-
checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
|
|
2389
|
-
dependencies = [
|
|
2390
|
-
"nodrop",
|
|
2391
|
-
"stable_deref_trait",
|
|
2392
|
-
]
|
|
2393
|
-
|
|
2394
|
-
[[package]]
|
|
2395
|
-
name = "sha2"
|
|
2396
|
-
version = "0.10.7"
|
|
2397
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
-
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
|
|
2399
|
-
dependencies = [
|
|
2400
|
-
"cfg-if",
|
|
2401
|
-
"cpufeatures",
|
|
2402
|
-
"digest",
|
|
2403
|
-
]
|
|
2404
|
-
|
|
2405
|
-
[[package]]
|
|
2406
|
-
name = "sharded-slab"
|
|
2407
|
-
version = "0.1.4"
|
|
2408
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
-
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
|
|
2410
|
-
dependencies = [
|
|
2411
|
-
"lazy_static",
|
|
2412
|
-
]
|
|
2413
|
-
|
|
2414
|
-
[[package]]
|
|
2415
|
-
name = "simd-adler32"
|
|
2416
|
-
version = "0.3.5"
|
|
2417
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
-
checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f"
|
|
2419
|
-
|
|
2420
|
-
[[package]]
|
|
2421
|
-
name = "siphasher"
|
|
2422
|
-
version = "0.3.10"
|
|
2423
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
-
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
2425
|
-
|
|
2426
|
-
[[package]]
|
|
2427
|
-
name = "slab"
|
|
2428
|
-
version = "0.4.8"
|
|
2429
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
-
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
|
|
2431
|
-
dependencies = [
|
|
2432
|
-
"autocfg",
|
|
2433
|
-
]
|
|
2434
|
-
|
|
2435
|
-
[[package]]
|
|
2436
|
-
name = "smallvec"
|
|
2437
|
-
version = "1.11.0"
|
|
2438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
-
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
|
|
2440
|
-
|
|
2441
|
-
[[package]]
|
|
2442
|
-
name = "socket2"
|
|
2443
|
-
version = "0.4.9"
|
|
2444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
-
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
|
|
2446
|
-
dependencies = [
|
|
2447
|
-
"libc",
|
|
2448
|
-
"winapi",
|
|
2449
|
-
]
|
|
2450
|
-
|
|
2451
|
-
[[package]]
|
|
2452
|
-
name = "soup3"
|
|
2453
|
-
version = "0.3.2"
|
|
2454
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
-
checksum = "82bc46048125fefd69d30b32b9d263d6556c9ffe82a7a7df181a86d912da5616"
|
|
2456
|
-
dependencies = [
|
|
2457
|
-
"bitflags",
|
|
2458
|
-
"futures-channel",
|
|
2459
|
-
"gio",
|
|
2460
|
-
"glib",
|
|
2461
|
-
"libc",
|
|
2462
|
-
"once_cell",
|
|
2463
|
-
"soup3-sys",
|
|
2464
|
-
]
|
|
2465
|
-
|
|
2466
|
-
[[package]]
|
|
2467
|
-
name = "soup3-sys"
|
|
2468
|
-
version = "0.3.1"
|
|
2469
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
-
checksum = "014bbeb1c4cdb30739dc181e8d98b7908f124d9555843afa89b5570aaf4ec62b"
|
|
2471
|
-
dependencies = [
|
|
2472
|
-
"gio-sys",
|
|
2473
|
-
"glib-sys",
|
|
2474
|
-
"gobject-sys",
|
|
2475
|
-
"libc",
|
|
2476
|
-
"system-deps",
|
|
2477
|
-
]
|
|
2478
|
-
|
|
2479
|
-
[[package]]
|
|
2480
|
-
name = "stable_deref_trait"
|
|
2481
|
-
version = "1.2.0"
|
|
2482
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
-
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2484
|
-
|
|
2485
|
-
[[package]]
|
|
2486
|
-
name = "state"
|
|
2487
|
-
version = "0.5.3"
|
|
2488
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
-
checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
|
|
2490
|
-
dependencies = [
|
|
2491
|
-
"loom",
|
|
2492
|
-
]
|
|
2493
|
-
|
|
2494
|
-
[[package]]
|
|
2495
|
-
name = "string_cache"
|
|
2496
|
-
version = "0.8.7"
|
|
2497
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
-
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
|
|
2499
|
-
dependencies = [
|
|
2500
|
-
"new_debug_unreachable",
|
|
2501
|
-
"once_cell",
|
|
2502
|
-
"parking_lot",
|
|
2503
|
-
"phf_shared 0.10.0",
|
|
2504
|
-
"precomputed-hash",
|
|
2505
|
-
"serde",
|
|
2506
|
-
]
|
|
2507
|
-
|
|
2508
|
-
[[package]]
|
|
2509
|
-
name = "string_cache_codegen"
|
|
2510
|
-
version = "0.5.2"
|
|
2511
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
-
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
|
|
2513
|
-
dependencies = [
|
|
2514
|
-
"phf_generator 0.10.0",
|
|
2515
|
-
"phf_shared 0.10.0",
|
|
2516
|
-
"proc-macro2",
|
|
2517
|
-
"quote",
|
|
2518
|
-
]
|
|
2519
|
-
|
|
2520
|
-
[[package]]
|
|
2521
|
-
name = "strsim"
|
|
2522
|
-
version = "0.10.0"
|
|
2523
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2524
|
-
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
2525
|
-
|
|
2526
|
-
[[package]]
|
|
2527
|
-
name = "swift-rs"
|
|
2528
|
-
version = "1.0.5"
|
|
2529
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
-
checksum = "05e51d6f2b5fff4808614f429f8a7655ac8bcfe218185413f3a60c508482c2d6"
|
|
2531
|
-
dependencies = [
|
|
2532
|
-
"base64 0.21.2",
|
|
2533
|
-
"serde",
|
|
2534
|
-
"serde_json",
|
|
2535
|
-
]
|
|
2536
|
-
|
|
2537
|
-
[[package]]
|
|
2538
|
-
name = "syn"
|
|
2539
|
-
version = "1.0.109"
|
|
2540
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2542
|
-
dependencies = [
|
|
2543
|
-
"proc-macro2",
|
|
2544
|
-
"quote",
|
|
2545
|
-
"unicode-ident",
|
|
2546
|
-
]
|
|
2547
|
-
|
|
2548
|
-
[[package]]
|
|
2549
|
-
name = "syn"
|
|
2550
|
-
version = "2.0.25"
|
|
2551
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
-
checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
|
|
2553
|
-
dependencies = [
|
|
2554
|
-
"proc-macro2",
|
|
2555
|
-
"quote",
|
|
2556
|
-
"unicode-ident",
|
|
2557
|
-
]
|
|
2558
|
-
|
|
2559
|
-
[[package]]
|
|
2560
|
-
name = "system-deps"
|
|
2561
|
-
version = "6.1.1"
|
|
2562
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3"
|
|
2564
|
-
dependencies = [
|
|
2565
|
-
"cfg-expr",
|
|
2566
|
-
"heck",
|
|
2567
|
-
"pkg-config",
|
|
2568
|
-
"toml",
|
|
2569
|
-
"version-compare",
|
|
2570
|
-
]
|
|
2571
|
-
|
|
2572
|
-
[[package]]
|
|
2573
|
-
name = "tao"
|
|
2574
|
-
version = "0.19.1"
|
|
2575
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
|
-
checksum = "746ae5d0ca57ae275a792f109f6e992e0b41a443abdf3f5c6eff179ef5b3443a"
|
|
2577
|
-
dependencies = [
|
|
2578
|
-
"bitflags",
|
|
2579
|
-
"cairo-rs",
|
|
2580
|
-
"cc",
|
|
2581
|
-
"cocoa",
|
|
2582
|
-
"core-foundation",
|
|
2583
|
-
"core-graphics",
|
|
2584
|
-
"crossbeam-channel",
|
|
2585
|
-
"dispatch",
|
|
2586
|
-
"gdk",
|
|
2587
|
-
"gdk-pixbuf",
|
|
2588
|
-
"gdk-sys",
|
|
2589
|
-
"gdkwayland-sys",
|
|
2590
|
-
"gdkx11-sys",
|
|
2591
|
-
"gio",
|
|
2592
|
-
"glib",
|
|
2593
|
-
"glib-sys",
|
|
2594
|
-
"gtk",
|
|
2595
|
-
"image",
|
|
2596
|
-
"instant",
|
|
2597
|
-
"jni",
|
|
2598
|
-
"lazy_static",
|
|
2599
|
-
"libc",
|
|
2600
|
-
"log",
|
|
2601
|
-
"ndk",
|
|
2602
|
-
"ndk-context",
|
|
2603
|
-
"ndk-sys",
|
|
2604
|
-
"objc",
|
|
2605
|
-
"once_cell",
|
|
2606
|
-
"parking_lot",
|
|
2607
|
-
"png",
|
|
2608
|
-
"raw-window-handle",
|
|
2609
|
-
"scopeguard",
|
|
2610
|
-
"serde",
|
|
2611
|
-
"tao-macros",
|
|
2612
|
-
"unicode-segmentation",
|
|
2613
|
-
"uuid",
|
|
2614
|
-
"windows 0.44.0",
|
|
2615
|
-
"windows-implement",
|
|
2616
|
-
"x11-dl",
|
|
2617
|
-
]
|
|
2618
|
-
|
|
2619
|
-
[[package]]
|
|
2620
|
-
name = "tao-macros"
|
|
2621
|
-
version = "0.1.1"
|
|
2622
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
-
checksum = "3b27a4bcc5eb524658234589bdffc7e7bfb996dbae6ce9393bfd39cb4159b445"
|
|
2624
|
-
dependencies = [
|
|
2625
|
-
"proc-macro2",
|
|
2626
|
-
"quote",
|
|
2627
|
-
"syn 1.0.109",
|
|
2628
|
-
]
|
|
2629
|
-
|
|
2630
|
-
[[package]]
|
|
2631
|
-
name = "target-lexicon"
|
|
2632
|
-
version = "0.12.8"
|
|
2633
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
-
checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac"
|
|
2635
|
-
|
|
2636
|
-
[[package]]
|
|
2637
|
-
name = "tauri"
|
|
2638
|
-
version = "2.0.0-alpha.10"
|
|
2639
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
-
checksum = "2e18377a75e314aa1d476896af881ed63f57a78ca84889fe63e69067f0de158d"
|
|
2641
|
-
dependencies = [
|
|
2642
|
-
"anyhow",
|
|
2643
|
-
"bytes",
|
|
2644
|
-
"cocoa",
|
|
2645
|
-
"dirs-next",
|
|
2646
|
-
"embed_plist",
|
|
2647
|
-
"futures-util",
|
|
2648
|
-
"glib",
|
|
2649
|
-
"glob",
|
|
2650
|
-
"gtk",
|
|
2651
|
-
"heck",
|
|
2652
|
-
"http",
|
|
2653
|
-
"jni",
|
|
2654
|
-
"libc",
|
|
2655
|
-
"log",
|
|
2656
|
-
"objc",
|
|
2657
|
-
"once_cell",
|
|
2658
|
-
"percent-encoding",
|
|
2659
|
-
"rand 0.8.5",
|
|
2660
|
-
"raw-window-handle",
|
|
2661
|
-
"reqwest",
|
|
2662
|
-
"semver",
|
|
2663
|
-
"serde",
|
|
2664
|
-
"serde_json",
|
|
2665
|
-
"serde_repr",
|
|
2666
|
-
"serialize-to-javascript",
|
|
2667
|
-
"state",
|
|
2668
|
-
"swift-rs",
|
|
2669
|
-
"tauri-build",
|
|
2670
|
-
"tauri-macros",
|
|
2671
|
-
"tauri-runtime",
|
|
2672
|
-
"tauri-runtime-wry",
|
|
2673
|
-
"tauri-utils",
|
|
2674
|
-
"tempfile",
|
|
2675
|
-
"thiserror",
|
|
2676
|
-
"tokio",
|
|
2677
|
-
"url",
|
|
2678
|
-
"uuid",
|
|
2679
|
-
"webkit2gtk",
|
|
2680
|
-
"webview2-com",
|
|
2681
|
-
"windows 0.44.0",
|
|
2682
|
-
]
|
|
2683
|
-
|
|
2684
|
-
[[package]]
|
|
2685
|
-
name = "tauri-build"
|
|
2686
|
-
version = "2.0.0-alpha.6"
|
|
2687
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
-
checksum = "a52990870fd043f1d3bd6719ae713ef2e0c50431334d7249f6ae8509d1b8c326"
|
|
2689
|
-
dependencies = [
|
|
2690
|
-
"anyhow",
|
|
2691
|
-
"cargo_toml",
|
|
2692
|
-
"heck",
|
|
2693
|
-
"json-patch",
|
|
2694
|
-
"semver",
|
|
2695
|
-
"serde",
|
|
2696
|
-
"serde_json",
|
|
2697
|
-
"swift-rs",
|
|
2698
|
-
"tauri-utils",
|
|
2699
|
-
"tauri-winres",
|
|
2700
|
-
"walkdir",
|
|
2701
|
-
]
|
|
2702
|
-
|
|
2703
|
-
[[package]]
|
|
2704
|
-
name = "tauri-codegen"
|
|
2705
|
-
version = "2.0.0-alpha.6"
|
|
2706
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
-
checksum = "5c1f1611ab0896f2693163ba4e8f3e39c02a1b70cdca4314286b5e365a5e08c6"
|
|
2708
|
-
dependencies = [
|
|
2709
|
-
"base64 0.21.2",
|
|
2710
|
-
"brotli",
|
|
2711
|
-
"ico",
|
|
2712
|
-
"json-patch",
|
|
2713
|
-
"plist",
|
|
2714
|
-
"png",
|
|
2715
|
-
"proc-macro2",
|
|
2716
|
-
"quote",
|
|
2717
|
-
"semver",
|
|
2718
|
-
"serde",
|
|
2719
|
-
"serde_json",
|
|
2720
|
-
"sha2",
|
|
2721
|
-
"tauri-utils",
|
|
2722
|
-
"thiserror",
|
|
2723
|
-
"time",
|
|
2724
|
-
"url",
|
|
2725
|
-
"uuid",
|
|
2726
|
-
"walkdir",
|
|
2727
|
-
]
|
|
2728
|
-
|
|
2729
|
-
[[package]]
|
|
2730
|
-
name = "tauri-macros"
|
|
2731
|
-
version = "2.0.0-alpha.6"
|
|
2732
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2733
|
-
checksum = "22752425c6dd6f3a058f376db7371f1d5bac250e340d40ba6c97ecf7182eef29"
|
|
2734
|
-
dependencies = [
|
|
2735
|
-
"heck",
|
|
2736
|
-
"proc-macro2",
|
|
2737
|
-
"quote",
|
|
2738
|
-
"syn 1.0.109",
|
|
2739
|
-
"tauri-codegen",
|
|
2740
|
-
"tauri-utils",
|
|
2741
|
-
]
|
|
2742
|
-
|
|
2743
|
-
[[package]]
|
|
2744
|
-
name = "tauri-plugin-window"
|
|
2745
|
-
version = "2.0.0-alpha.0"
|
|
2746
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2747
|
-
checksum = "209fef1a00a981949e2440924b4be267c7639daeba51b29179004fa1c6d74900"
|
|
2748
|
-
dependencies = [
|
|
2749
|
-
"serde",
|
|
2750
|
-
"tauri",
|
|
2751
|
-
"thiserror",
|
|
2752
|
-
]
|
|
2753
|
-
|
|
2754
|
-
[[package]]
|
|
2755
|
-
name = "tauri-runtime"
|
|
2756
|
-
version = "0.13.0-alpha.6"
|
|
2757
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
-
checksum = "d7ce19f1309299bbc38ee9236307fad4943bd8fb09dd3fea5e9dd93c1d0898d6"
|
|
2759
|
-
dependencies = [
|
|
2760
|
-
"gtk",
|
|
2761
|
-
"http",
|
|
2762
|
-
"http-range",
|
|
2763
|
-
"jni",
|
|
2764
|
-
"rand 0.8.5",
|
|
2765
|
-
"raw-window-handle",
|
|
2766
|
-
"serde",
|
|
2767
|
-
"serde_json",
|
|
2768
|
-
"tauri-utils",
|
|
2769
|
-
"thiserror",
|
|
2770
|
-
"url",
|
|
2771
|
-
"uuid",
|
|
2772
|
-
"windows 0.44.0",
|
|
2773
|
-
]
|
|
2774
|
-
|
|
2775
|
-
[[package]]
|
|
2776
|
-
name = "tauri-runtime-wry"
|
|
2777
|
-
version = "0.13.0-alpha.6"
|
|
2778
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
-
checksum = "1231be42085f3a8b150e615601f8a070bd16bf579771a5dafe2931970a05b518"
|
|
2780
|
-
dependencies = [
|
|
2781
|
-
"cocoa",
|
|
2782
|
-
"gtk",
|
|
2783
|
-
"jni",
|
|
2784
|
-
"percent-encoding",
|
|
2785
|
-
"rand 0.8.5",
|
|
2786
|
-
"raw-window-handle",
|
|
2787
|
-
"tauri-runtime",
|
|
2788
|
-
"tauri-utils",
|
|
2789
|
-
"uuid",
|
|
2790
|
-
"webkit2gtk",
|
|
2791
|
-
"webview2-com",
|
|
2792
|
-
"windows 0.44.0",
|
|
2793
|
-
"wry",
|
|
2794
|
-
]
|
|
2795
|
-
|
|
2796
|
-
[[package]]
|
|
2797
|
-
name = "tauri-ui"
|
|
2798
|
-
version = "0.1.0"
|
|
2799
|
-
dependencies = [
|
|
2800
|
-
"serde",
|
|
2801
|
-
"serde_json",
|
|
2802
|
-
"tauri",
|
|
2803
|
-
"tauri-build",
|
|
2804
|
-
"tauri-plugin-window",
|
|
2805
|
-
]
|
|
2806
|
-
|
|
2807
|
-
[[package]]
|
|
2808
|
-
name = "tauri-utils"
|
|
2809
|
-
version = "2.0.0-alpha.6"
|
|
2810
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
-
checksum = "2e2812e0cdfffb892c654555b2f1b8c84a035b4c56eb1646cb3eb5a9d8164d8e"
|
|
2812
|
-
dependencies = [
|
|
2813
|
-
"brotli",
|
|
2814
|
-
"ctor",
|
|
2815
|
-
"dunce",
|
|
2816
|
-
"glob",
|
|
2817
|
-
"heck",
|
|
2818
|
-
"html5ever",
|
|
2819
|
-
"infer",
|
|
2820
|
-
"json-patch",
|
|
2821
|
-
"kuchiki",
|
|
2822
|
-
"memchr",
|
|
2823
|
-
"phf 0.10.1",
|
|
2824
|
-
"proc-macro2",
|
|
2825
|
-
"quote",
|
|
2826
|
-
"semver",
|
|
2827
|
-
"serde",
|
|
2828
|
-
"serde_json",
|
|
2829
|
-
"serde_with",
|
|
2830
|
-
"thiserror",
|
|
2831
|
-
"url",
|
|
2832
|
-
"walkdir",
|
|
2833
|
-
"windows 0.44.0",
|
|
2834
|
-
]
|
|
2835
|
-
|
|
2836
|
-
[[package]]
|
|
2837
|
-
name = "tauri-winres"
|
|
2838
|
-
version = "0.1.1"
|
|
2839
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
-
checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
|
|
2841
|
-
dependencies = [
|
|
2842
|
-
"embed-resource",
|
|
2843
|
-
"toml",
|
|
2844
|
-
]
|
|
2845
|
-
|
|
2846
|
-
[[package]]
|
|
2847
|
-
name = "tempfile"
|
|
2848
|
-
version = "3.6.0"
|
|
2849
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
-
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
|
|
2851
|
-
dependencies = [
|
|
2852
|
-
"autocfg",
|
|
2853
|
-
"cfg-if",
|
|
2854
|
-
"fastrand",
|
|
2855
|
-
"redox_syscall 0.3.5",
|
|
2856
|
-
"rustix",
|
|
2857
|
-
"windows-sys",
|
|
2858
|
-
]
|
|
2859
|
-
|
|
2860
|
-
[[package]]
|
|
2861
|
-
name = "tendril"
|
|
2862
|
-
version = "0.4.3"
|
|
2863
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
-
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
|
2865
|
-
dependencies = [
|
|
2866
|
-
"futf",
|
|
2867
|
-
"mac",
|
|
2868
|
-
"utf-8",
|
|
2869
|
-
]
|
|
2870
|
-
|
|
2871
|
-
[[package]]
|
|
2872
|
-
name = "thin-slice"
|
|
2873
|
-
version = "0.1.1"
|
|
2874
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
-
checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
|
|
2876
|
-
|
|
2877
|
-
[[package]]
|
|
2878
|
-
name = "thiserror"
|
|
2879
|
-
version = "1.0.43"
|
|
2880
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
-
checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
|
|
2882
|
-
dependencies = [
|
|
2883
|
-
"thiserror-impl",
|
|
2884
|
-
]
|
|
2885
|
-
|
|
2886
|
-
[[package]]
|
|
2887
|
-
name = "thiserror-impl"
|
|
2888
|
-
version = "1.0.43"
|
|
2889
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
-
checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
|
|
2891
|
-
dependencies = [
|
|
2892
|
-
"proc-macro2",
|
|
2893
|
-
"quote",
|
|
2894
|
-
"syn 2.0.25",
|
|
2895
|
-
]
|
|
2896
|
-
|
|
2897
|
-
[[package]]
|
|
2898
|
-
name = "thread_local"
|
|
2899
|
-
version = "1.1.7"
|
|
2900
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
-
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
|
2902
|
-
dependencies = [
|
|
2903
|
-
"cfg-if",
|
|
2904
|
-
"once_cell",
|
|
2905
|
-
]
|
|
2906
|
-
|
|
2907
|
-
[[package]]
|
|
2908
|
-
name = "time"
|
|
2909
|
-
version = "0.3.23"
|
|
2910
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
-
checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446"
|
|
2912
|
-
dependencies = [
|
|
2913
|
-
"itoa 1.0.8",
|
|
2914
|
-
"serde",
|
|
2915
|
-
"time-core",
|
|
2916
|
-
"time-macros",
|
|
2917
|
-
]
|
|
2918
|
-
|
|
2919
|
-
[[package]]
|
|
2920
|
-
name = "time-core"
|
|
2921
|
-
version = "0.1.1"
|
|
2922
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
-
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
|
|
2924
|
-
|
|
2925
|
-
[[package]]
|
|
2926
|
-
name = "time-macros"
|
|
2927
|
-
version = "0.2.10"
|
|
2928
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
-
checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4"
|
|
2930
|
-
dependencies = [
|
|
2931
|
-
"time-core",
|
|
2932
|
-
]
|
|
2933
|
-
|
|
2934
|
-
[[package]]
|
|
2935
|
-
name = "tinyvec"
|
|
2936
|
-
version = "1.6.0"
|
|
2937
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
-
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
2939
|
-
dependencies = [
|
|
2940
|
-
"tinyvec_macros",
|
|
2941
|
-
]
|
|
2942
|
-
|
|
2943
|
-
[[package]]
|
|
2944
|
-
name = "tinyvec_macros"
|
|
2945
|
-
version = "0.1.1"
|
|
2946
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
-
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2948
|
-
|
|
2949
|
-
[[package]]
|
|
2950
|
-
name = "tokio"
|
|
2951
|
-
version = "1.29.1"
|
|
2952
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
|
-
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
|
|
2954
|
-
dependencies = [
|
|
2955
|
-
"autocfg",
|
|
2956
|
-
"backtrace",
|
|
2957
|
-
"bytes",
|
|
2958
|
-
"libc",
|
|
2959
|
-
"mio",
|
|
2960
|
-
"num_cpus",
|
|
2961
|
-
"pin-project-lite",
|
|
2962
|
-
"socket2",
|
|
2963
|
-
"windows-sys",
|
|
2964
|
-
]
|
|
2965
|
-
|
|
2966
|
-
[[package]]
|
|
2967
|
-
name = "tokio-util"
|
|
2968
|
-
version = "0.7.8"
|
|
2969
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
-
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
|
|
2971
|
-
dependencies = [
|
|
2972
|
-
"bytes",
|
|
2973
|
-
"futures-core",
|
|
2974
|
-
"futures-sink",
|
|
2975
|
-
"pin-project-lite",
|
|
2976
|
-
"tokio",
|
|
2977
|
-
"tracing",
|
|
2978
|
-
]
|
|
2979
|
-
|
|
2980
|
-
[[package]]
|
|
2981
|
-
name = "toml"
|
|
2982
|
-
version = "0.7.6"
|
|
2983
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
-
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
|
|
2985
|
-
dependencies = [
|
|
2986
|
-
"serde",
|
|
2987
|
-
"serde_spanned",
|
|
2988
|
-
"toml_datetime",
|
|
2989
|
-
"toml_edit",
|
|
2990
|
-
]
|
|
2991
|
-
|
|
2992
|
-
[[package]]
|
|
2993
|
-
name = "toml_datetime"
|
|
2994
|
-
version = "0.6.3"
|
|
2995
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
-
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
|
|
2997
|
-
dependencies = [
|
|
2998
|
-
"serde",
|
|
2999
|
-
]
|
|
3000
|
-
|
|
3001
|
-
[[package]]
|
|
3002
|
-
name = "toml_edit"
|
|
3003
|
-
version = "0.19.12"
|
|
3004
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
-
checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78"
|
|
3006
|
-
dependencies = [
|
|
3007
|
-
"indexmap 2.0.0",
|
|
3008
|
-
"serde",
|
|
3009
|
-
"serde_spanned",
|
|
3010
|
-
"toml_datetime",
|
|
3011
|
-
"winnow",
|
|
3012
|
-
]
|
|
3013
|
-
|
|
3014
|
-
[[package]]
|
|
3015
|
-
name = "tower-service"
|
|
3016
|
-
version = "0.3.2"
|
|
3017
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
-
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
3019
|
-
|
|
3020
|
-
[[package]]
|
|
3021
|
-
name = "tracing"
|
|
3022
|
-
version = "0.1.37"
|
|
3023
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
-
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
|
3025
|
-
dependencies = [
|
|
3026
|
-
"cfg-if",
|
|
3027
|
-
"pin-project-lite",
|
|
3028
|
-
"tracing-attributes",
|
|
3029
|
-
"tracing-core",
|
|
3030
|
-
]
|
|
3031
|
-
|
|
3032
|
-
[[package]]
|
|
3033
|
-
name = "tracing-attributes"
|
|
3034
|
-
version = "0.1.26"
|
|
3035
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
|
|
3037
|
-
dependencies = [
|
|
3038
|
-
"proc-macro2",
|
|
3039
|
-
"quote",
|
|
3040
|
-
"syn 2.0.25",
|
|
3041
|
-
]
|
|
3042
|
-
|
|
3043
|
-
[[package]]
|
|
3044
|
-
name = "tracing-core"
|
|
3045
|
-
version = "0.1.31"
|
|
3046
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3047
|
-
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
|
|
3048
|
-
dependencies = [
|
|
3049
|
-
"once_cell",
|
|
3050
|
-
"valuable",
|
|
3051
|
-
]
|
|
3052
|
-
|
|
3053
|
-
[[package]]
|
|
3054
|
-
name = "tracing-log"
|
|
3055
|
-
version = "0.1.3"
|
|
3056
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
-
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
|
|
3058
|
-
dependencies = [
|
|
3059
|
-
"lazy_static",
|
|
3060
|
-
"log",
|
|
3061
|
-
"tracing-core",
|
|
3062
|
-
]
|
|
3063
|
-
|
|
3064
|
-
[[package]]
|
|
3065
|
-
name = "tracing-subscriber"
|
|
3066
|
-
version = "0.3.17"
|
|
3067
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3068
|
-
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
|
|
3069
|
-
dependencies = [
|
|
3070
|
-
"matchers",
|
|
3071
|
-
"nu-ansi-term",
|
|
3072
|
-
"once_cell",
|
|
3073
|
-
"regex",
|
|
3074
|
-
"sharded-slab",
|
|
3075
|
-
"smallvec",
|
|
3076
|
-
"thread_local",
|
|
3077
|
-
"tracing",
|
|
3078
|
-
"tracing-core",
|
|
3079
|
-
"tracing-log",
|
|
3080
|
-
]
|
|
3081
|
-
|
|
3082
|
-
[[package]]
|
|
3083
|
-
name = "treediff"
|
|
3084
|
-
version = "4.0.2"
|
|
3085
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3086
|
-
checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303"
|
|
3087
|
-
dependencies = [
|
|
3088
|
-
"serde_json",
|
|
3089
|
-
]
|
|
3090
|
-
|
|
3091
|
-
[[package]]
|
|
3092
|
-
name = "try-lock"
|
|
3093
|
-
version = "0.2.4"
|
|
3094
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
-
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
|
|
3096
|
-
|
|
3097
|
-
[[package]]
|
|
3098
|
-
name = "typenum"
|
|
3099
|
-
version = "1.16.0"
|
|
3100
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
-
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
|
3102
|
-
|
|
3103
|
-
[[package]]
|
|
3104
|
-
name = "unicode-bidi"
|
|
3105
|
-
version = "0.3.13"
|
|
3106
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
-
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
3108
|
-
|
|
3109
|
-
[[package]]
|
|
3110
|
-
name = "unicode-ident"
|
|
3111
|
-
version = "1.0.10"
|
|
3112
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
-
checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
|
|
3114
|
-
|
|
3115
|
-
[[package]]
|
|
3116
|
-
name = "unicode-normalization"
|
|
3117
|
-
version = "0.1.22"
|
|
3118
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
-
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
|
3120
|
-
dependencies = [
|
|
3121
|
-
"tinyvec",
|
|
3122
|
-
]
|
|
3123
|
-
|
|
3124
|
-
[[package]]
|
|
3125
|
-
name = "unicode-segmentation"
|
|
3126
|
-
version = "1.10.1"
|
|
3127
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
|
-
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
|
|
3129
|
-
|
|
3130
|
-
[[package]]
|
|
3131
|
-
name = "url"
|
|
3132
|
-
version = "2.4.0"
|
|
3133
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3134
|
-
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
|
|
3135
|
-
dependencies = [
|
|
3136
|
-
"form_urlencoded",
|
|
3137
|
-
"idna",
|
|
3138
|
-
"percent-encoding",
|
|
3139
|
-
"serde",
|
|
3140
|
-
]
|
|
3141
|
-
|
|
3142
|
-
[[package]]
|
|
3143
|
-
name = "utf-8"
|
|
3144
|
-
version = "0.7.6"
|
|
3145
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3146
|
-
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3147
|
-
|
|
3148
|
-
[[package]]
|
|
3149
|
-
name = "uuid"
|
|
3150
|
-
version = "1.4.0"
|
|
3151
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
-
checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
|
|
3153
|
-
dependencies = [
|
|
3154
|
-
"getrandom 0.2.10",
|
|
3155
|
-
]
|
|
3156
|
-
|
|
3157
|
-
[[package]]
|
|
3158
|
-
name = "valuable"
|
|
3159
|
-
version = "0.1.0"
|
|
3160
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3161
|
-
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
3162
|
-
|
|
3163
|
-
[[package]]
|
|
3164
|
-
name = "version-compare"
|
|
3165
|
-
version = "0.1.1"
|
|
3166
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
-
checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
|
|
3168
|
-
|
|
3169
|
-
[[package]]
|
|
3170
|
-
name = "version_check"
|
|
3171
|
-
version = "0.9.4"
|
|
3172
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
-
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
3174
|
-
|
|
3175
|
-
[[package]]
|
|
3176
|
-
name = "vswhom"
|
|
3177
|
-
version = "0.1.0"
|
|
3178
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3179
|
-
checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
|
|
3180
|
-
dependencies = [
|
|
3181
|
-
"libc",
|
|
3182
|
-
"vswhom-sys",
|
|
3183
|
-
]
|
|
3184
|
-
|
|
3185
|
-
[[package]]
|
|
3186
|
-
name = "vswhom-sys"
|
|
3187
|
-
version = "0.1.2"
|
|
3188
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
|
-
checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18"
|
|
3190
|
-
dependencies = [
|
|
3191
|
-
"cc",
|
|
3192
|
-
"libc",
|
|
3193
|
-
]
|
|
3194
|
-
|
|
3195
|
-
[[package]]
|
|
3196
|
-
name = "walkdir"
|
|
3197
|
-
version = "2.3.3"
|
|
3198
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3199
|
-
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
|
|
3200
|
-
dependencies = [
|
|
3201
|
-
"same-file",
|
|
3202
|
-
"winapi-util",
|
|
3203
|
-
]
|
|
3204
|
-
|
|
3205
|
-
[[package]]
|
|
3206
|
-
name = "want"
|
|
3207
|
-
version = "0.3.1"
|
|
3208
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3209
|
-
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3210
|
-
dependencies = [
|
|
3211
|
-
"try-lock",
|
|
3212
|
-
]
|
|
3213
|
-
|
|
3214
|
-
[[package]]
|
|
3215
|
-
name = "wasi"
|
|
3216
|
-
version = "0.9.0+wasi-snapshot-preview1"
|
|
3217
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
-
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
|
3219
|
-
|
|
3220
|
-
[[package]]
|
|
3221
|
-
name = "wasi"
|
|
3222
|
-
version = "0.11.0+wasi-snapshot-preview1"
|
|
3223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3224
|
-
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3225
|
-
|
|
3226
|
-
[[package]]
|
|
3227
|
-
name = "wasm-bindgen"
|
|
3228
|
-
version = "0.2.87"
|
|
3229
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3230
|
-
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
|
|
3231
|
-
dependencies = [
|
|
3232
|
-
"cfg-if",
|
|
3233
|
-
"wasm-bindgen-macro",
|
|
3234
|
-
]
|
|
3235
|
-
|
|
3236
|
-
[[package]]
|
|
3237
|
-
name = "wasm-bindgen-backend"
|
|
3238
|
-
version = "0.2.87"
|
|
3239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3240
|
-
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
|
|
3241
|
-
dependencies = [
|
|
3242
|
-
"bumpalo",
|
|
3243
|
-
"log",
|
|
3244
|
-
"once_cell",
|
|
3245
|
-
"proc-macro2",
|
|
3246
|
-
"quote",
|
|
3247
|
-
"syn 2.0.25",
|
|
3248
|
-
"wasm-bindgen-shared",
|
|
3249
|
-
]
|
|
3250
|
-
|
|
3251
|
-
[[package]]
|
|
3252
|
-
name = "wasm-bindgen-futures"
|
|
3253
|
-
version = "0.4.37"
|
|
3254
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
-
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
|
|
3256
|
-
dependencies = [
|
|
3257
|
-
"cfg-if",
|
|
3258
|
-
"js-sys",
|
|
3259
|
-
"wasm-bindgen",
|
|
3260
|
-
"web-sys",
|
|
3261
|
-
]
|
|
3262
|
-
|
|
3263
|
-
[[package]]
|
|
3264
|
-
name = "wasm-bindgen-macro"
|
|
3265
|
-
version = "0.2.87"
|
|
3266
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
-
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
|
|
3268
|
-
dependencies = [
|
|
3269
|
-
"quote",
|
|
3270
|
-
"wasm-bindgen-macro-support",
|
|
3271
|
-
]
|
|
3272
|
-
|
|
3273
|
-
[[package]]
|
|
3274
|
-
name = "wasm-bindgen-macro-support"
|
|
3275
|
-
version = "0.2.87"
|
|
3276
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3277
|
-
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
|
3278
|
-
dependencies = [
|
|
3279
|
-
"proc-macro2",
|
|
3280
|
-
"quote",
|
|
3281
|
-
"syn 2.0.25",
|
|
3282
|
-
"wasm-bindgen-backend",
|
|
3283
|
-
"wasm-bindgen-shared",
|
|
3284
|
-
]
|
|
3285
|
-
|
|
3286
|
-
[[package]]
|
|
3287
|
-
name = "wasm-bindgen-shared"
|
|
3288
|
-
version = "0.2.87"
|
|
3289
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
|
-
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
|
3291
|
-
|
|
3292
|
-
[[package]]
|
|
3293
|
-
name = "wasm-streams"
|
|
3294
|
-
version = "0.2.3"
|
|
3295
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
-
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
|
|
3297
|
-
dependencies = [
|
|
3298
|
-
"futures-util",
|
|
3299
|
-
"js-sys",
|
|
3300
|
-
"wasm-bindgen",
|
|
3301
|
-
"wasm-bindgen-futures",
|
|
3302
|
-
"web-sys",
|
|
3303
|
-
]
|
|
3304
|
-
|
|
3305
|
-
[[package]]
|
|
3306
|
-
name = "web-sys"
|
|
3307
|
-
version = "0.3.64"
|
|
3308
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3309
|
-
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
|
|
3310
|
-
dependencies = [
|
|
3311
|
-
"js-sys",
|
|
3312
|
-
"wasm-bindgen",
|
|
3313
|
-
]
|
|
3314
|
-
|
|
3315
|
-
[[package]]
|
|
3316
|
-
name = "webkit2gtk"
|
|
3317
|
-
version = "0.19.2"
|
|
3318
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3319
|
-
checksum = "d8eea819afe15eb8dcdff4f19d8bfda540bae84d874c10e6f4b8faf2d6704bd1"
|
|
3320
|
-
dependencies = [
|
|
3321
|
-
"bitflags",
|
|
3322
|
-
"cairo-rs",
|
|
3323
|
-
"gdk",
|
|
3324
|
-
"gdk-sys",
|
|
3325
|
-
"gio",
|
|
3326
|
-
"gio-sys",
|
|
3327
|
-
"glib",
|
|
3328
|
-
"glib-sys",
|
|
3329
|
-
"gobject-sys",
|
|
3330
|
-
"gtk",
|
|
3331
|
-
"gtk-sys",
|
|
3332
|
-
"javascriptcore-rs",
|
|
3333
|
-
"libc",
|
|
3334
|
-
"once_cell",
|
|
3335
|
-
"soup3",
|
|
3336
|
-
"webkit2gtk-sys",
|
|
3337
|
-
]
|
|
3338
|
-
|
|
3339
|
-
[[package]]
|
|
3340
|
-
name = "webkit2gtk-sys"
|
|
3341
|
-
version = "0.19.1"
|
|
3342
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3343
|
-
checksum = "d0ac7a95ddd3fdfcaf83d8e513b4b1ad101b95b413b6aa6662ed95f284fc3d5b"
|
|
3344
|
-
dependencies = [
|
|
3345
|
-
"bitflags",
|
|
3346
|
-
"cairo-sys-rs",
|
|
3347
|
-
"gdk-sys",
|
|
3348
|
-
"gio-sys",
|
|
3349
|
-
"glib-sys",
|
|
3350
|
-
"gobject-sys",
|
|
3351
|
-
"gtk-sys",
|
|
3352
|
-
"javascriptcore-rs-sys",
|
|
3353
|
-
"libc",
|
|
3354
|
-
"pkg-config",
|
|
3355
|
-
"soup3-sys",
|
|
3356
|
-
"system-deps",
|
|
3357
|
-
]
|
|
3358
|
-
|
|
3359
|
-
[[package]]
|
|
3360
|
-
name = "webview2-com"
|
|
3361
|
-
version = "0.22.1"
|
|
3362
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
-
checksum = "11296e5daf3a653b79bf47d66c380e4143d5b9c975818871179a3bda79499562"
|
|
3364
|
-
dependencies = [
|
|
3365
|
-
"webview2-com-macros",
|
|
3366
|
-
"webview2-com-sys",
|
|
3367
|
-
"windows 0.44.0",
|
|
3368
|
-
"windows-implement",
|
|
3369
|
-
]
|
|
3370
|
-
|
|
3371
|
-
[[package]]
|
|
3372
|
-
name = "webview2-com-macros"
|
|
3373
|
-
version = "0.6.0"
|
|
3374
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
-
checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
|
|
3376
|
-
dependencies = [
|
|
3377
|
-
"proc-macro2",
|
|
3378
|
-
"quote",
|
|
3379
|
-
"syn 1.0.109",
|
|
3380
|
-
]
|
|
3381
|
-
|
|
3382
|
-
[[package]]
|
|
3383
|
-
name = "webview2-com-sys"
|
|
3384
|
-
version = "0.22.1"
|
|
3385
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "cde542bed28058a5b028d459689ee57f1d06685bb6c266da3b91b1be6703952f"
|
|
3387
|
-
dependencies = [
|
|
3388
|
-
"regex",
|
|
3389
|
-
"serde",
|
|
3390
|
-
"serde_json",
|
|
3391
|
-
"thiserror",
|
|
3392
|
-
"windows 0.44.0",
|
|
3393
|
-
"windows-bindgen",
|
|
3394
|
-
"windows-metadata",
|
|
3395
|
-
]
|
|
3396
|
-
|
|
3397
|
-
[[package]]
|
|
3398
|
-
name = "winapi"
|
|
3399
|
-
version = "0.3.9"
|
|
3400
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3401
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3402
|
-
dependencies = [
|
|
3403
|
-
"winapi-i686-pc-windows-gnu",
|
|
3404
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
3405
|
-
]
|
|
3406
|
-
|
|
3407
|
-
[[package]]
|
|
3408
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
3409
|
-
version = "0.4.0"
|
|
3410
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3412
|
-
|
|
3413
|
-
[[package]]
|
|
3414
|
-
name = "winapi-util"
|
|
3415
|
-
version = "0.1.5"
|
|
3416
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
-
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
3418
|
-
dependencies = [
|
|
3419
|
-
"winapi",
|
|
3420
|
-
]
|
|
3421
|
-
|
|
3422
|
-
[[package]]
|
|
3423
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
3424
|
-
version = "0.4.0"
|
|
3425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3427
|
-
|
|
3428
|
-
[[package]]
|
|
3429
|
-
name = "windows"
|
|
3430
|
-
version = "0.44.0"
|
|
3431
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3432
|
-
checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b"
|
|
3433
|
-
dependencies = [
|
|
3434
|
-
"windows-implement",
|
|
3435
|
-
"windows-interface",
|
|
3436
|
-
"windows-targets 0.42.2",
|
|
3437
|
-
]
|
|
3438
|
-
|
|
3439
|
-
[[package]]
|
|
3440
|
-
name = "windows"
|
|
3441
|
-
version = "0.48.0"
|
|
3442
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
-
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
|
3444
|
-
dependencies = [
|
|
3445
|
-
"windows-targets 0.48.1",
|
|
3446
|
-
]
|
|
3447
|
-
|
|
3448
|
-
[[package]]
|
|
3449
|
-
name = "windows-bindgen"
|
|
3450
|
-
version = "0.44.0"
|
|
3451
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
-
checksum = "222204ecf46521382a4d88b4a1bbefca9f8855697b4ab7d20803901425e061a3"
|
|
3453
|
-
dependencies = [
|
|
3454
|
-
"windows-metadata",
|
|
3455
|
-
"windows-tokens",
|
|
3456
|
-
]
|
|
3457
|
-
|
|
3458
|
-
[[package]]
|
|
3459
|
-
name = "windows-implement"
|
|
3460
|
-
version = "0.44.0"
|
|
3461
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3462
|
-
checksum = "6ce87ca8e3417b02dc2a8a22769306658670ec92d78f1bd420d6310a67c245c6"
|
|
3463
|
-
dependencies = [
|
|
3464
|
-
"proc-macro2",
|
|
3465
|
-
"quote",
|
|
3466
|
-
"syn 1.0.109",
|
|
3467
|
-
]
|
|
3468
|
-
|
|
3469
|
-
[[package]]
|
|
3470
|
-
name = "windows-interface"
|
|
3471
|
-
version = "0.44.0"
|
|
3472
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3473
|
-
checksum = "853f69a591ecd4f810d29f17e902d40e349fb05b0b11fff63b08b826bfe39c7f"
|
|
3474
|
-
dependencies = [
|
|
3475
|
-
"proc-macro2",
|
|
3476
|
-
"quote",
|
|
3477
|
-
"syn 1.0.109",
|
|
3478
|
-
]
|
|
3479
|
-
|
|
3480
|
-
[[package]]
|
|
3481
|
-
name = "windows-metadata"
|
|
3482
|
-
version = "0.44.0"
|
|
3483
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3484
|
-
checksum = "ee78911e3f4ce32c1ad9d3c7b0bd95389662ad8d8f1a3155688fed70bd96e2b6"
|
|
3485
|
-
|
|
3486
|
-
[[package]]
|
|
3487
|
-
name = "windows-sys"
|
|
3488
|
-
version = "0.48.0"
|
|
3489
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3490
|
-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3491
|
-
dependencies = [
|
|
3492
|
-
"windows-targets 0.48.1",
|
|
3493
|
-
]
|
|
3494
|
-
|
|
3495
|
-
[[package]]
|
|
3496
|
-
name = "windows-targets"
|
|
3497
|
-
version = "0.42.2"
|
|
3498
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
3500
|
-
dependencies = [
|
|
3501
|
-
"windows_aarch64_gnullvm 0.42.2",
|
|
3502
|
-
"windows_aarch64_msvc 0.42.2",
|
|
3503
|
-
"windows_i686_gnu 0.42.2",
|
|
3504
|
-
"windows_i686_msvc 0.42.2",
|
|
3505
|
-
"windows_x86_64_gnu 0.42.2",
|
|
3506
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
3507
|
-
"windows_x86_64_msvc 0.42.2",
|
|
3508
|
-
]
|
|
3509
|
-
|
|
3510
|
-
[[package]]
|
|
3511
|
-
name = "windows-targets"
|
|
3512
|
-
version = "0.48.1"
|
|
3513
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3514
|
-
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
|
3515
|
-
dependencies = [
|
|
3516
|
-
"windows_aarch64_gnullvm 0.48.0",
|
|
3517
|
-
"windows_aarch64_msvc 0.48.0",
|
|
3518
|
-
"windows_i686_gnu 0.48.0",
|
|
3519
|
-
"windows_i686_msvc 0.48.0",
|
|
3520
|
-
"windows_x86_64_gnu 0.48.0",
|
|
3521
|
-
"windows_x86_64_gnullvm 0.48.0",
|
|
3522
|
-
"windows_x86_64_msvc 0.48.0",
|
|
3523
|
-
]
|
|
3524
|
-
|
|
3525
|
-
[[package]]
|
|
3526
|
-
name = "windows-tokens"
|
|
3527
|
-
version = "0.44.0"
|
|
3528
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3529
|
-
checksum = "fa4251900975a0d10841c5d4bde79c56681543367ef811f3fabb8d1803b0959b"
|
|
3530
|
-
|
|
3531
|
-
[[package]]
|
|
3532
|
-
name = "windows_aarch64_gnullvm"
|
|
3533
|
-
version = "0.42.2"
|
|
3534
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3535
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
3536
|
-
|
|
3537
|
-
[[package]]
|
|
3538
|
-
name = "windows_aarch64_gnullvm"
|
|
3539
|
-
version = "0.48.0"
|
|
3540
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
-
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
3542
|
-
|
|
3543
|
-
[[package]]
|
|
3544
|
-
name = "windows_aarch64_msvc"
|
|
3545
|
-
version = "0.42.2"
|
|
3546
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
3548
|
-
|
|
3549
|
-
[[package]]
|
|
3550
|
-
name = "windows_aarch64_msvc"
|
|
3551
|
-
version = "0.48.0"
|
|
3552
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
-
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
3554
|
-
|
|
3555
|
-
[[package]]
|
|
3556
|
-
name = "windows_i686_gnu"
|
|
3557
|
-
version = "0.42.2"
|
|
3558
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
3560
|
-
|
|
3561
|
-
[[package]]
|
|
3562
|
-
name = "windows_i686_gnu"
|
|
3563
|
-
version = "0.48.0"
|
|
3564
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
-
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
3566
|
-
|
|
3567
|
-
[[package]]
|
|
3568
|
-
name = "windows_i686_msvc"
|
|
3569
|
-
version = "0.42.2"
|
|
3570
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
3572
|
-
|
|
3573
|
-
[[package]]
|
|
3574
|
-
name = "windows_i686_msvc"
|
|
3575
|
-
version = "0.48.0"
|
|
3576
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3577
|
-
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
3578
|
-
|
|
3579
|
-
[[package]]
|
|
3580
|
-
name = "windows_x86_64_gnu"
|
|
3581
|
-
version = "0.42.2"
|
|
3582
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3583
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
3584
|
-
|
|
3585
|
-
[[package]]
|
|
3586
|
-
name = "windows_x86_64_gnu"
|
|
3587
|
-
version = "0.48.0"
|
|
3588
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3589
|
-
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
3590
|
-
|
|
3591
|
-
[[package]]
|
|
3592
|
-
name = "windows_x86_64_gnullvm"
|
|
3593
|
-
version = "0.42.2"
|
|
3594
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3596
|
-
|
|
3597
|
-
[[package]]
|
|
3598
|
-
name = "windows_x86_64_gnullvm"
|
|
3599
|
-
version = "0.48.0"
|
|
3600
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3601
|
-
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
3602
|
-
|
|
3603
|
-
[[package]]
|
|
3604
|
-
name = "windows_x86_64_msvc"
|
|
3605
|
-
version = "0.42.2"
|
|
3606
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3607
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
3608
|
-
|
|
3609
|
-
[[package]]
|
|
3610
|
-
name = "windows_x86_64_msvc"
|
|
3611
|
-
version = "0.48.0"
|
|
3612
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
|
-
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
3614
|
-
|
|
3615
|
-
[[package]]
|
|
3616
|
-
name = "winnow"
|
|
3617
|
-
version = "0.4.9"
|
|
3618
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
-
checksum = "81a2094c43cc94775293eaa0e499fbc30048a6d824ac82c0351a8c0bf9112529"
|
|
3620
|
-
dependencies = [
|
|
3621
|
-
"memchr",
|
|
3622
|
-
]
|
|
3623
|
-
|
|
3624
|
-
[[package]]
|
|
3625
|
-
name = "winreg"
|
|
3626
|
-
version = "0.10.1"
|
|
3627
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3628
|
-
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
|
3629
|
-
dependencies = [
|
|
3630
|
-
"winapi",
|
|
3631
|
-
]
|
|
3632
|
-
|
|
3633
|
-
[[package]]
|
|
3634
|
-
name = "winreg"
|
|
3635
|
-
version = "0.11.0"
|
|
3636
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
-
checksum = "76a1a57ff50e9b408431e8f97d5456f2807f8eb2a2cd79b06068fc87f8ecf189"
|
|
3638
|
-
dependencies = [
|
|
3639
|
-
"cfg-if",
|
|
3640
|
-
"winapi",
|
|
3641
|
-
]
|
|
3642
|
-
|
|
3643
|
-
[[package]]
|
|
3644
|
-
name = "wry"
|
|
3645
|
-
version = "0.28.3"
|
|
3646
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
-
checksum = "7d15f9f827d537cefe6d047be3930f5d89b238dfb85e08ba6a319153217635aa"
|
|
3648
|
-
dependencies = [
|
|
3649
|
-
"base64 0.13.1",
|
|
3650
|
-
"block",
|
|
3651
|
-
"cocoa",
|
|
3652
|
-
"core-graphics",
|
|
3653
|
-
"crossbeam-channel",
|
|
3654
|
-
"dunce",
|
|
3655
|
-
"gdk",
|
|
3656
|
-
"gio",
|
|
3657
|
-
"glib",
|
|
3658
|
-
"gtk",
|
|
3659
|
-
"html5ever",
|
|
3660
|
-
"http",
|
|
3661
|
-
"javascriptcore-rs",
|
|
3662
|
-
"kuchiki",
|
|
3663
|
-
"libc",
|
|
3664
|
-
"log",
|
|
3665
|
-
"objc",
|
|
3666
|
-
"objc_id",
|
|
3667
|
-
"once_cell",
|
|
3668
|
-
"serde",
|
|
3669
|
-
"serde_json",
|
|
3670
|
-
"sha2",
|
|
3671
|
-
"soup3",
|
|
3672
|
-
"tao",
|
|
3673
|
-
"thiserror",
|
|
3674
|
-
"url",
|
|
3675
|
-
"webkit2gtk",
|
|
3676
|
-
"webkit2gtk-sys",
|
|
3677
|
-
"webview2-com",
|
|
3678
|
-
"windows 0.44.0",
|
|
3679
|
-
"windows-implement",
|
|
3680
|
-
]
|
|
3681
|
-
|
|
3682
|
-
[[package]]
|
|
3683
|
-
name = "x11"
|
|
3684
|
-
version = "2.21.0"
|
|
3685
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3686
|
-
checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
|
|
3687
|
-
dependencies = [
|
|
3688
|
-
"libc",
|
|
3689
|
-
"pkg-config",
|
|
3690
|
-
]
|
|
3691
|
-
|
|
3692
|
-
[[package]]
|
|
3693
|
-
name = "x11-dl"
|
|
3694
|
-
version = "2.21.0"
|
|
3695
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3696
|
-
checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
|
|
3697
|
-
dependencies = [
|
|
3698
|
-
"libc",
|
|
3699
|
-
"once_cell",
|
|
3700
|
-
"pkg-config",
|
|
3701
|
-
]
|