create-tauri-ui 0.2.0 → 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 +22 -11
- package/dist/index.mjs +26 -26
- package/package.json +3 -2
- package/templates/.shared/app-icon.png +0 -0
- package/templates/.shared/src-tauri/Cargo.lock +270 -139
- package/templates/.shared/src-tauri/Cargo.toml +39 -36
- package/templates/.shared/src-tauri/src/main.rs +3 -0
- package/templates/.shared/src-tauri/tauri.conf.json +71 -79
- package/templates/next/components.json +15 -15
- package/templates/next/next.config.js +14 -14
- package/templates/next/package.json +18 -14
- 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/app/layout.tsx +47 -47
- 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 +223 -259
- 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/lib/utils.ts +6 -6
- package/templates/next/src/styles/globals.css +88 -86
- package/templates/next/src-tauri/Cargo.lock +3832 -3701
- package/templates/next/src-tauri/Cargo.toml +4 -1
- package/templates/next/src-tauri/src/main.rs +22 -19
- package/templates/next/src-tauri/tauri.conf.json +71 -79
- package/templates/next/tailwind.config.js +77 -77
- package/templates/next/tsconfig.json +34 -34
- package/templates/sveltekit/.github/workflows/release.yml +108 -108
- package/templates/sveltekit/package.json +22 -22
- package/templates/sveltekit/pnpm-lock.yaml +1069 -691
- package/templates/sveltekit/src/app.html +1 -1
- package/templates/sveltekit/src-tauri/Cargo.lock +136 -136
- package/templates/sveltekit/src-tauri/tauri.conf.json +2 -10
- package/templates/sveltekit/static/favicon.ico +0 -0
- package/templates/sveltekit/vite.config.js +10 -6
- package/templates/vite/components.json +15 -15
- package/templates/vite/index.html +1 -1
- package/templates/vite/package.json +20 -13
- package/templates/vite/pnpm-lock.yaml +598 -530
- 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 +270 -139
- package/templates/vite/src-tauri/Cargo.toml +4 -1
- package/templates/vite/src-tauri/src/main.rs +8 -2
- package/templates/vite/src-tauri/tauri.conf.json +71 -79
- 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
|
@@ -58,9 +58,9 @@ dependencies = [
|
|
|
58
58
|
|
|
59
59
|
[[package]]
|
|
60
60
|
name = "anyhow"
|
|
61
|
-
version = "1.0.
|
|
61
|
+
version = "1.0.72"
|
|
62
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
-
checksum = "
|
|
63
|
+
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "atk"
|
|
@@ -69,7 +69,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
69
69
|
checksum = "39991bc421ddf72f70159011b323ff49b0f783cc676a7287c59453da2e2531cf"
|
|
70
70
|
dependencies = [
|
|
71
71
|
"atk-sys",
|
|
72
|
-
"bitflags",
|
|
72
|
+
"bitflags 1.3.2",
|
|
73
73
|
"glib",
|
|
74
74
|
"libc",
|
|
75
75
|
]
|
|
@@ -125,6 +125,12 @@ version = "1.3.2"
|
|
|
125
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
126
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
127
127
|
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "bitflags"
|
|
130
|
+
version = "2.3.3"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
|
|
133
|
+
|
|
128
134
|
[[package]]
|
|
129
135
|
name = "block"
|
|
130
136
|
version = "0.1.6"
|
|
@@ -194,7 +200,7 @@ version = "0.16.7"
|
|
|
194
200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
201
|
checksum = "f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d"
|
|
196
202
|
dependencies = [
|
|
197
|
-
"bitflags",
|
|
203
|
+
"bitflags 1.3.2",
|
|
198
204
|
"cairo-sys-rs",
|
|
199
205
|
"glib",
|
|
200
206
|
"libc",
|
|
@@ -248,9 +254,9 @@ dependencies = [
|
|
|
248
254
|
|
|
249
255
|
[[package]]
|
|
250
256
|
name = "cfg-expr"
|
|
251
|
-
version = "0.15.
|
|
257
|
+
version = "0.15.4"
|
|
252
258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
-
checksum = "
|
|
259
|
+
checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9"
|
|
254
260
|
dependencies = [
|
|
255
261
|
"smallvec",
|
|
256
262
|
"target-lexicon",
|
|
@@ -281,7 +287,7 @@ version = "0.24.1"
|
|
|
281
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
288
|
checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a"
|
|
283
289
|
dependencies = [
|
|
284
|
-
"bitflags",
|
|
290
|
+
"bitflags 1.3.2",
|
|
285
291
|
"block",
|
|
286
292
|
"cocoa-foundation",
|
|
287
293
|
"core-foundation",
|
|
@@ -297,7 +303,7 @@ version = "0.1.1"
|
|
|
297
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
304
|
checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6"
|
|
299
305
|
dependencies = [
|
|
300
|
-
"bitflags",
|
|
306
|
+
"bitflags 1.3.2",
|
|
301
307
|
"block",
|
|
302
308
|
"core-foundation",
|
|
303
309
|
"core-graphics-types",
|
|
@@ -350,7 +356,7 @@ version = "0.22.3"
|
|
|
350
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
357
|
checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
|
|
352
358
|
dependencies = [
|
|
353
|
-
"bitflags",
|
|
359
|
+
"bitflags 1.3.2",
|
|
354
360
|
"core-foundation",
|
|
355
361
|
"core-graphics-types",
|
|
356
362
|
"foreign-types",
|
|
@@ -363,7 +369,7 @@ version = "0.1.2"
|
|
|
363
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
370
|
checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
|
|
365
371
|
dependencies = [
|
|
366
|
-
"bitflags",
|
|
372
|
+
"bitflags 1.3.2",
|
|
367
373
|
"core-foundation",
|
|
368
374
|
"libc",
|
|
369
375
|
]
|
|
@@ -439,7 +445,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
439
445
|
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
440
446
|
dependencies = [
|
|
441
447
|
"quote",
|
|
442
|
-
"syn 2.0.
|
|
448
|
+
"syn 2.0.28",
|
|
443
449
|
]
|
|
444
450
|
|
|
445
451
|
[[package]]
|
|
@@ -454,9 +460,9 @@ dependencies = [
|
|
|
454
460
|
|
|
455
461
|
[[package]]
|
|
456
462
|
name = "darling"
|
|
457
|
-
version = "0.20.
|
|
463
|
+
version = "0.20.3"
|
|
458
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
-
checksum = "
|
|
465
|
+
checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
|
|
460
466
|
dependencies = [
|
|
461
467
|
"darling_core",
|
|
462
468
|
"darling_macro",
|
|
@@ -464,27 +470,36 @@ dependencies = [
|
|
|
464
470
|
|
|
465
471
|
[[package]]
|
|
466
472
|
name = "darling_core"
|
|
467
|
-
version = "0.20.
|
|
473
|
+
version = "0.20.3"
|
|
468
474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
-
checksum = "
|
|
475
|
+
checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
|
|
470
476
|
dependencies = [
|
|
471
477
|
"fnv",
|
|
472
478
|
"ident_case",
|
|
473
479
|
"proc-macro2",
|
|
474
480
|
"quote",
|
|
475
481
|
"strsim",
|
|
476
|
-
"syn 2.0.
|
|
482
|
+
"syn 2.0.28",
|
|
477
483
|
]
|
|
478
484
|
|
|
479
485
|
[[package]]
|
|
480
486
|
name = "darling_macro"
|
|
481
|
-
version = "0.20.
|
|
487
|
+
version = "0.20.3"
|
|
482
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
-
checksum = "
|
|
489
|
+
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
|
|
484
490
|
dependencies = [
|
|
485
491
|
"darling_core",
|
|
486
492
|
"quote",
|
|
487
|
-
"syn 2.0.
|
|
493
|
+
"syn 2.0.28",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "deranged"
|
|
498
|
+
version = "0.3.6"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "8810e7e2cf385b1e9b50d68264908ec367ba642c96d02edfe61c39e88e2a3c01"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"serde",
|
|
488
503
|
]
|
|
489
504
|
|
|
490
505
|
[[package]]
|
|
@@ -539,9 +554,9 @@ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
|
539
554
|
|
|
540
555
|
[[package]]
|
|
541
556
|
name = "dtoa"
|
|
542
|
-
version = "1.0.
|
|
557
|
+
version = "1.0.9"
|
|
543
558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "
|
|
559
|
+
checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
|
|
545
560
|
|
|
546
561
|
[[package]]
|
|
547
562
|
name = "dtoa-short"
|
|
@@ -588,19 +603,19 @@ dependencies = [
|
|
|
588
603
|
|
|
589
604
|
[[package]]
|
|
590
605
|
name = "equivalent"
|
|
591
|
-
version = "1.0.
|
|
606
|
+
version = "1.0.1"
|
|
592
607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "
|
|
608
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
594
609
|
|
|
595
610
|
[[package]]
|
|
596
611
|
name = "errno"
|
|
597
|
-
version = "0.3.
|
|
612
|
+
version = "0.3.2"
|
|
598
613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
614
|
+
checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f"
|
|
600
615
|
dependencies = [
|
|
601
616
|
"errno-dragonfly",
|
|
602
617
|
"libc",
|
|
603
|
-
"windows-sys",
|
|
618
|
+
"windows-sys 0.48.0",
|
|
604
619
|
]
|
|
605
620
|
|
|
606
621
|
[[package]]
|
|
@@ -615,12 +630,9 @@ dependencies = [
|
|
|
615
630
|
|
|
616
631
|
[[package]]
|
|
617
632
|
name = "fastrand"
|
|
618
|
-
version = "
|
|
633
|
+
version = "2.0.0"
|
|
619
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
621
|
-
dependencies = [
|
|
622
|
-
"instant",
|
|
623
|
-
]
|
|
635
|
+
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
|
|
624
636
|
|
|
625
637
|
[[package]]
|
|
626
638
|
name = "fdeflate"
|
|
@@ -731,7 +743,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
|
|
731
743
|
dependencies = [
|
|
732
744
|
"proc-macro2",
|
|
733
745
|
"quote",
|
|
734
|
-
"syn 2.0.
|
|
746
|
+
"syn 2.0.28",
|
|
735
747
|
]
|
|
736
748
|
|
|
737
749
|
[[package]]
|
|
@@ -778,7 +790,7 @@ version = "0.16.2"
|
|
|
778
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
791
|
checksum = "aa9cb33da481c6c040404a11f8212d193889e9b435db2c14fd86987f630d3ce1"
|
|
780
792
|
dependencies = [
|
|
781
|
-
"bitflags",
|
|
793
|
+
"bitflags 1.3.2",
|
|
782
794
|
"cairo-rs",
|
|
783
795
|
"gdk-pixbuf",
|
|
784
796
|
"gdk-sys",
|
|
@@ -794,7 +806,7 @@ version = "0.16.7"
|
|
|
794
806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
807
|
checksum = "c3578c60dee9d029ad86593ed88cb40f35c1b83360e12498d055022385dd9a05"
|
|
796
808
|
dependencies = [
|
|
797
|
-
"bitflags",
|
|
809
|
+
"bitflags 1.3.2",
|
|
798
810
|
"gdk-pixbuf-sys",
|
|
799
811
|
"gio",
|
|
800
812
|
"glib",
|
|
@@ -915,7 +927,7 @@ version = "0.16.7"
|
|
|
915
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
928
|
checksum = "2a1c84b4534a290a29160ef5c6eff2a9c95833111472e824fc5cb78b513dd092"
|
|
917
929
|
dependencies = [
|
|
918
|
-
"bitflags",
|
|
930
|
+
"bitflags 1.3.2",
|
|
919
931
|
"futures-channel",
|
|
920
932
|
"futures-core",
|
|
921
933
|
"futures-io",
|
|
@@ -948,7 +960,7 @@ version = "0.16.9"
|
|
|
948
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
961
|
checksum = "16aa2475c9debed5a32832cb5ff2af5a3f9e1ab9e69df58eaadc1ab2004d6eba"
|
|
950
962
|
dependencies = [
|
|
951
|
-
"bitflags",
|
|
963
|
+
"bitflags 1.3.2",
|
|
952
964
|
"futures-channel",
|
|
953
965
|
"futures-core",
|
|
954
966
|
"futures-executor",
|
|
@@ -1013,7 +1025,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1013
1025
|
checksum = "e4d3507d43908c866c805f74c9dd593c0ce7ba5c38e576e41846639cdcd4bee6"
|
|
1014
1026
|
dependencies = [
|
|
1015
1027
|
"atk",
|
|
1016
|
-
"bitflags",
|
|
1028
|
+
"bitflags 1.3.2",
|
|
1017
1029
|
"cairo-rs",
|
|
1018
1030
|
"field-offset",
|
|
1019
1031
|
"futures-channel",
|
|
@@ -1132,7 +1144,7 @@ checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
|
|
1132
1144
|
dependencies = [
|
|
1133
1145
|
"bytes",
|
|
1134
1146
|
"fnv",
|
|
1135
|
-
"itoa 1.0.
|
|
1147
|
+
"itoa 1.0.9",
|
|
1136
1148
|
]
|
|
1137
1149
|
|
|
1138
1150
|
[[package]]
|
|
@@ -1179,7 +1191,7 @@ dependencies = [
|
|
|
1179
1191
|
"http-body",
|
|
1180
1192
|
"httparse",
|
|
1181
1193
|
"httpdate",
|
|
1182
|
-
"itoa 1.0.
|
|
1194
|
+
"itoa 1.0.9",
|
|
1183
1195
|
"pin-project-lite",
|
|
1184
1196
|
"socket2",
|
|
1185
1197
|
"tokio",
|
|
@@ -1290,21 +1302,29 @@ dependencies = [
|
|
|
1290
1302
|
]
|
|
1291
1303
|
|
|
1292
1304
|
[[package]]
|
|
1293
|
-
name = "
|
|
1294
|
-
version = "
|
|
1305
|
+
name = "ipnet"
|
|
1306
|
+
version = "2.8.0"
|
|
1295
1307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
-
checksum = "
|
|
1308
|
+
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "is-docker"
|
|
1312
|
+
version = "0.2.0"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
|
|
1297
1315
|
dependencies = [
|
|
1298
|
-
"
|
|
1299
|
-
"libc",
|
|
1300
|
-
"windows-sys",
|
|
1316
|
+
"once_cell",
|
|
1301
1317
|
]
|
|
1302
1318
|
|
|
1303
1319
|
[[package]]
|
|
1304
|
-
name = "
|
|
1305
|
-
version = "
|
|
1320
|
+
name = "is-wsl"
|
|
1321
|
+
version = "0.4.0"
|
|
1306
1322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
-
checksum = "
|
|
1323
|
+
checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
|
|
1324
|
+
dependencies = [
|
|
1325
|
+
"is-docker",
|
|
1326
|
+
"once_cell",
|
|
1327
|
+
]
|
|
1308
1328
|
|
|
1309
1329
|
[[package]]
|
|
1310
1330
|
name = "itoa"
|
|
@@ -1314,9 +1334,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
|
1314
1334
|
|
|
1315
1335
|
[[package]]
|
|
1316
1336
|
name = "itoa"
|
|
1317
|
-
version = "1.0.
|
|
1337
|
+
version = "1.0.9"
|
|
1318
1338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
-
checksum = "
|
|
1339
|
+
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
|
|
1320
1340
|
|
|
1321
1341
|
[[package]]
|
|
1322
1342
|
name = "javascriptcore-rs"
|
|
@@ -1324,7 +1344,7 @@ version = "0.17.0"
|
|
|
1324
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
1345
|
checksum = "110b9902c80c12bf113c432d0b71c7a94490b294a8234f326fd0abca2fac0b00"
|
|
1326
1346
|
dependencies = [
|
|
1327
|
-
"bitflags",
|
|
1347
|
+
"bitflags 1.3.2",
|
|
1328
1348
|
"glib",
|
|
1329
1349
|
"javascriptcore-rs-sys",
|
|
1330
1350
|
]
|
|
@@ -1417,9 +1437,9 @@ dependencies = [
|
|
|
1417
1437
|
|
|
1418
1438
|
[[package]]
|
|
1419
1439
|
name = "linux-raw-sys"
|
|
1420
|
-
version = "0.3
|
|
1440
|
+
version = "0.4.3"
|
|
1421
1441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
-
checksum = "
|
|
1442
|
+
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
|
|
1423
1443
|
|
|
1424
1444
|
[[package]]
|
|
1425
1445
|
name = "lock_api"
|
|
@@ -1535,7 +1555,7 @@ checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
|
|
|
1535
1555
|
dependencies = [
|
|
1536
1556
|
"libc",
|
|
1537
1557
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1538
|
-
"windows-sys",
|
|
1558
|
+
"windows-sys 0.48.0",
|
|
1539
1559
|
]
|
|
1540
1560
|
|
|
1541
1561
|
[[package]]
|
|
@@ -1544,7 +1564,7 @@ version = "0.6.0"
|
|
|
1544
1564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
1565
|
checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
|
|
1546
1566
|
dependencies = [
|
|
1547
|
-
"bitflags",
|
|
1567
|
+
"bitflags 1.3.2",
|
|
1548
1568
|
"jni-sys",
|
|
1549
1569
|
"ndk-sys",
|
|
1550
1570
|
"num_enum",
|
|
@@ -1611,9 +1631,9 @@ dependencies = [
|
|
|
1611
1631
|
|
|
1612
1632
|
[[package]]
|
|
1613
1633
|
name = "num-traits"
|
|
1614
|
-
version = "0.2.
|
|
1634
|
+
version = "0.2.16"
|
|
1615
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
-
checksum = "
|
|
1636
|
+
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
|
|
1617
1637
|
dependencies = [
|
|
1618
1638
|
"autocfg",
|
|
1619
1639
|
]
|
|
@@ -1692,6 +1712,38 @@ version = "1.18.0"
|
|
|
1692
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
1713
|
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
|
1694
1714
|
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "open"
|
|
1717
|
+
version = "4.2.0"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "3a083c0c7e5e4a8ec4176346cf61f67ac674e8bfb059d9226e1c54a96b377c12"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"is-wsl",
|
|
1722
|
+
"libc",
|
|
1723
|
+
"pathdiff",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "os_info"
|
|
1728
|
+
version = "3.7.0"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e"
|
|
1731
|
+
dependencies = [
|
|
1732
|
+
"log",
|
|
1733
|
+
"serde",
|
|
1734
|
+
"winapi",
|
|
1735
|
+
]
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "os_pipe"
|
|
1739
|
+
version = "1.1.4"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"libc",
|
|
1744
|
+
"windows-sys 0.48.0",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1695
1747
|
[[package]]
|
|
1696
1748
|
name = "overload"
|
|
1697
1749
|
version = "0.1.1"
|
|
@@ -1704,7 +1756,7 @@ version = "0.16.5"
|
|
|
1704
1756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
1757
|
checksum = "cdff66b271861037b89d028656184059e03b0b6ccb36003820be19f7200b1e94"
|
|
1706
1758
|
dependencies = [
|
|
1707
|
-
"bitflags",
|
|
1759
|
+
"bitflags 1.3.2",
|
|
1708
1760
|
"gio",
|
|
1709
1761
|
"glib",
|
|
1710
1762
|
"libc",
|
|
@@ -1747,6 +1799,12 @@ dependencies = [
|
|
|
1747
1799
|
"windows-targets 0.48.1",
|
|
1748
1800
|
]
|
|
1749
1801
|
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "pathdiff"
|
|
1804
|
+
version = "0.2.1"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
|
|
1807
|
+
|
|
1750
1808
|
[[package]]
|
|
1751
1809
|
name = "percent-encoding"
|
|
1752
1810
|
version = "2.3.0"
|
|
@@ -1889,7 +1947,7 @@ version = "0.17.9"
|
|
|
1889
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
1948
|
checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
|
|
1891
1949
|
dependencies = [
|
|
1892
|
-
"bitflags",
|
|
1950
|
+
"bitflags 1.3.2",
|
|
1893
1951
|
"crc32fast",
|
|
1894
1952
|
"fdeflate",
|
|
1895
1953
|
"flate2",
|
|
@@ -1950,9 +2008,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
1950
2008
|
|
|
1951
2009
|
[[package]]
|
|
1952
2010
|
name = "proc-macro2"
|
|
1953
|
-
version = "1.0.
|
|
2011
|
+
version = "1.0.66"
|
|
1954
2012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
-
checksum = "
|
|
2013
|
+
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
|
|
1956
2014
|
dependencies = [
|
|
1957
2015
|
"unicode-ident",
|
|
1958
2016
|
]
|
|
@@ -1968,9 +2026,9 @@ dependencies = [
|
|
|
1968
2026
|
|
|
1969
2027
|
[[package]]
|
|
1970
2028
|
name = "quote"
|
|
1971
|
-
version = "1.0.
|
|
2029
|
+
version = "1.0.32"
|
|
1972
2030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
-
checksum = "
|
|
2031
|
+
checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
|
|
1974
2032
|
dependencies = [
|
|
1975
2033
|
"proc-macro2",
|
|
1976
2034
|
]
|
|
@@ -2068,7 +2126,7 @@ version = "0.2.16"
|
|
|
2068
2126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
2127
|
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
2070
2128
|
dependencies = [
|
|
2071
|
-
"bitflags",
|
|
2129
|
+
"bitflags 1.3.2",
|
|
2072
2130
|
]
|
|
2073
2131
|
|
|
2074
2132
|
[[package]]
|
|
@@ -2077,7 +2135,7 @@ version = "0.3.5"
|
|
|
2077
2135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
2136
|
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
2079
2137
|
dependencies = [
|
|
2080
|
-
"bitflags",
|
|
2138
|
+
"bitflags 1.3.2",
|
|
2081
2139
|
]
|
|
2082
2140
|
|
|
2083
2141
|
[[package]]
|
|
@@ -2099,8 +2157,8 @@ checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
|
|
|
2099
2157
|
dependencies = [
|
|
2100
2158
|
"aho-corasick",
|
|
2101
2159
|
"memchr",
|
|
2102
|
-
"regex-automata 0.3.
|
|
2103
|
-
"regex-syntax 0.7.
|
|
2160
|
+
"regex-automata 0.3.4",
|
|
2161
|
+
"regex-syntax 0.7.4",
|
|
2104
2162
|
]
|
|
2105
2163
|
|
|
2106
2164
|
[[package]]
|
|
@@ -2114,13 +2172,13 @@ dependencies = [
|
|
|
2114
2172
|
|
|
2115
2173
|
[[package]]
|
|
2116
2174
|
name = "regex-automata"
|
|
2117
|
-
version = "0.3.
|
|
2175
|
+
version = "0.3.4"
|
|
2118
2176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
-
checksum = "
|
|
2177
|
+
checksum = "b7b6d6190b7594385f61bd3911cd1be99dfddcfc365a4160cc2ab5bff4aed294"
|
|
2120
2178
|
dependencies = [
|
|
2121
2179
|
"aho-corasick",
|
|
2122
2180
|
"memchr",
|
|
2123
|
-
"regex-syntax 0.7.
|
|
2181
|
+
"regex-syntax 0.7.4",
|
|
2124
2182
|
]
|
|
2125
2183
|
|
|
2126
2184
|
[[package]]
|
|
@@ -2131,9 +2189,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
2131
2189
|
|
|
2132
2190
|
[[package]]
|
|
2133
2191
|
name = "regex-syntax"
|
|
2134
|
-
version = "0.7.
|
|
2192
|
+
version = "0.7.4"
|
|
2135
2193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
-
checksum = "
|
|
2194
|
+
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
|
|
2137
2195
|
|
|
2138
2196
|
[[package]]
|
|
2139
2197
|
name = "reqwest"
|
|
@@ -2188,29 +2246,28 @@ dependencies = [
|
|
|
2188
2246
|
|
|
2189
2247
|
[[package]]
|
|
2190
2248
|
name = "rustix"
|
|
2191
|
-
version = "0.
|
|
2249
|
+
version = "0.38.4"
|
|
2192
2250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
-
checksum = "
|
|
2251
|
+
checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
|
|
2194
2252
|
dependencies = [
|
|
2195
|
-
"bitflags",
|
|
2253
|
+
"bitflags 2.3.3",
|
|
2196
2254
|
"errno",
|
|
2197
|
-
"io-lifetimes",
|
|
2198
2255
|
"libc",
|
|
2199
2256
|
"linux-raw-sys",
|
|
2200
|
-
"windows-sys",
|
|
2257
|
+
"windows-sys 0.48.0",
|
|
2201
2258
|
]
|
|
2202
2259
|
|
|
2203
2260
|
[[package]]
|
|
2204
2261
|
name = "rustversion"
|
|
2205
|
-
version = "1.0.
|
|
2262
|
+
version = "1.0.14"
|
|
2206
2263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
-
checksum = "
|
|
2264
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
|
2208
2265
|
|
|
2209
2266
|
[[package]]
|
|
2210
2267
|
name = "ryu"
|
|
2211
|
-
version = "1.0.
|
|
2268
|
+
version = "1.0.15"
|
|
2212
2269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
-
checksum = "
|
|
2270
|
+
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
|
|
2214
2271
|
|
|
2215
2272
|
[[package]]
|
|
2216
2273
|
name = "safemem"
|
|
@@ -2235,9 +2292,9 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
|
2235
2292
|
|
|
2236
2293
|
[[package]]
|
|
2237
2294
|
name = "scopeguard"
|
|
2238
|
-
version = "1.
|
|
2295
|
+
version = "1.2.0"
|
|
2239
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
-
checksum = "
|
|
2297
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2241
2298
|
|
|
2242
2299
|
[[package]]
|
|
2243
2300
|
name = "selectors"
|
|
@@ -2245,7 +2302,7 @@ version = "0.22.0"
|
|
|
2245
2302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
2303
|
checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
|
|
2247
2304
|
dependencies = [
|
|
2248
|
-
"bitflags",
|
|
2305
|
+
"bitflags 1.3.2",
|
|
2249
2306
|
"cssparser",
|
|
2250
2307
|
"derive_more",
|
|
2251
2308
|
"fxhash",
|
|
@@ -2261,53 +2318,53 @@ dependencies = [
|
|
|
2261
2318
|
|
|
2262
2319
|
[[package]]
|
|
2263
2320
|
name = "semver"
|
|
2264
|
-
version = "1.0.
|
|
2321
|
+
version = "1.0.18"
|
|
2265
2322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
-
checksum = "
|
|
2323
|
+
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
|
|
2267
2324
|
dependencies = [
|
|
2268
2325
|
"serde",
|
|
2269
2326
|
]
|
|
2270
2327
|
|
|
2271
2328
|
[[package]]
|
|
2272
2329
|
name = "serde"
|
|
2273
|
-
version = "1.0.
|
|
2330
|
+
version = "1.0.180"
|
|
2274
2331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
-
checksum = "
|
|
2332
|
+
checksum = "0ea67f183f058fe88a4e3ec6e2788e003840893b91bac4559cabedd00863b3ed"
|
|
2276
2333
|
dependencies = [
|
|
2277
2334
|
"serde_derive",
|
|
2278
2335
|
]
|
|
2279
2336
|
|
|
2280
2337
|
[[package]]
|
|
2281
2338
|
name = "serde_derive"
|
|
2282
|
-
version = "1.0.
|
|
2339
|
+
version = "1.0.180"
|
|
2283
2340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "
|
|
2341
|
+
checksum = "24e744d7782b686ab3b73267ef05697159cc0e5abbed3f47f9933165e5219036"
|
|
2285
2342
|
dependencies = [
|
|
2286
2343
|
"proc-macro2",
|
|
2287
2344
|
"quote",
|
|
2288
|
-
"syn 2.0.
|
|
2345
|
+
"syn 2.0.28",
|
|
2289
2346
|
]
|
|
2290
2347
|
|
|
2291
2348
|
[[package]]
|
|
2292
2349
|
name = "serde_json"
|
|
2293
|
-
version = "1.0.
|
|
2350
|
+
version = "1.0.104"
|
|
2294
2351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
-
checksum = "
|
|
2352
|
+
checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c"
|
|
2296
2353
|
dependencies = [
|
|
2297
|
-
"itoa 1.0.
|
|
2354
|
+
"itoa 1.0.9",
|
|
2298
2355
|
"ryu",
|
|
2299
2356
|
"serde",
|
|
2300
2357
|
]
|
|
2301
2358
|
|
|
2302
2359
|
[[package]]
|
|
2303
2360
|
name = "serde_repr"
|
|
2304
|
-
version = "0.1.
|
|
2361
|
+
version = "0.1.16"
|
|
2305
2362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
-
checksum = "
|
|
2363
|
+
checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00"
|
|
2307
2364
|
dependencies = [
|
|
2308
2365
|
"proc-macro2",
|
|
2309
2366
|
"quote",
|
|
2310
|
-
"syn 2.0.
|
|
2367
|
+
"syn 2.0.28",
|
|
2311
2368
|
]
|
|
2312
2369
|
|
|
2313
2370
|
[[package]]
|
|
@@ -2326,16 +2383,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2326
2383
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2327
2384
|
dependencies = [
|
|
2328
2385
|
"form_urlencoded",
|
|
2329
|
-
"itoa 1.0.
|
|
2386
|
+
"itoa 1.0.9",
|
|
2330
2387
|
"ryu",
|
|
2331
2388
|
"serde",
|
|
2332
2389
|
]
|
|
2333
2390
|
|
|
2334
2391
|
[[package]]
|
|
2335
2392
|
name = "serde_with"
|
|
2336
|
-
version = "3.
|
|
2393
|
+
version = "3.1.0"
|
|
2337
2394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
-
checksum = "
|
|
2395
|
+
checksum = "21e47d95bc83ed33b2ecf84f4187ad1ab9685d18ff28db000c99deac8ce180e3"
|
|
2339
2396
|
dependencies = [
|
|
2340
2397
|
"base64 0.21.2",
|
|
2341
2398
|
"chrono",
|
|
@@ -2349,14 +2406,14 @@ dependencies = [
|
|
|
2349
2406
|
|
|
2350
2407
|
[[package]]
|
|
2351
2408
|
name = "serde_with_macros"
|
|
2352
|
-
version = "3.
|
|
2409
|
+
version = "3.1.0"
|
|
2353
2410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "
|
|
2411
|
+
checksum = "ea3cee93715c2e266b9338b7544da68a9f24e227722ba482bd1c024367c77c65"
|
|
2355
2412
|
dependencies = [
|
|
2356
2413
|
"darling",
|
|
2357
2414
|
"proc-macro2",
|
|
2358
2415
|
"quote",
|
|
2359
|
-
"syn 2.0.
|
|
2416
|
+
"syn 2.0.28",
|
|
2360
2417
|
]
|
|
2361
2418
|
|
|
2362
2419
|
[[package]]
|
|
@@ -2411,11 +2468,21 @@ dependencies = [
|
|
|
2411
2468
|
"lazy_static",
|
|
2412
2469
|
]
|
|
2413
2470
|
|
|
2471
|
+
[[package]]
|
|
2472
|
+
name = "shared_child"
|
|
2473
|
+
version = "1.0.0"
|
|
2474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
+
checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef"
|
|
2476
|
+
dependencies = [
|
|
2477
|
+
"libc",
|
|
2478
|
+
"winapi",
|
|
2479
|
+
]
|
|
2480
|
+
|
|
2414
2481
|
[[package]]
|
|
2415
2482
|
name = "simd-adler32"
|
|
2416
|
-
version = "0.3.
|
|
2483
|
+
version = "0.3.7"
|
|
2417
2484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
-
checksum = "
|
|
2485
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2419
2486
|
|
|
2420
2487
|
[[package]]
|
|
2421
2488
|
name = "siphasher"
|
|
@@ -2454,7 +2521,7 @@ version = "0.3.2"
|
|
|
2454
2521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
2522
|
checksum = "82bc46048125fefd69d30b32b9d263d6556c9ffe82a7a7df181a86d912da5616"
|
|
2456
2523
|
dependencies = [
|
|
2457
|
-
"bitflags",
|
|
2524
|
+
"bitflags 1.3.2",
|
|
2458
2525
|
"futures-channel",
|
|
2459
2526
|
"gio",
|
|
2460
2527
|
"glib",
|
|
@@ -2547,15 +2614,25 @@ dependencies = [
|
|
|
2547
2614
|
|
|
2548
2615
|
[[package]]
|
|
2549
2616
|
name = "syn"
|
|
2550
|
-
version = "2.0.
|
|
2617
|
+
version = "2.0.28"
|
|
2551
2618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
-
checksum = "
|
|
2619
|
+
checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567"
|
|
2553
2620
|
dependencies = [
|
|
2554
2621
|
"proc-macro2",
|
|
2555
2622
|
"quote",
|
|
2556
2623
|
"unicode-ident",
|
|
2557
2624
|
]
|
|
2558
2625
|
|
|
2626
|
+
[[package]]
|
|
2627
|
+
name = "sys-locale"
|
|
2628
|
+
version = "0.3.0"
|
|
2629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
+
checksum = "ea0b9eefabb91675082b41eb94c3ecd91af7656caee3fb4961a07c0ec8c7ca6f"
|
|
2631
|
+
dependencies = [
|
|
2632
|
+
"libc",
|
|
2633
|
+
"windows-sys 0.45.0",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2559
2636
|
[[package]]
|
|
2560
2637
|
name = "system-deps"
|
|
2561
2638
|
version = "6.1.1"
|
|
@@ -2575,7 +2652,7 @@ version = "0.19.1"
|
|
|
2575
2652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
2653
|
checksum = "746ae5d0ca57ae275a792f109f6e992e0b41a443abdf3f5c6eff179ef5b3443a"
|
|
2577
2654
|
dependencies = [
|
|
2578
|
-
"bitflags",
|
|
2655
|
+
"bitflags 1.3.2",
|
|
2579
2656
|
"cairo-rs",
|
|
2580
2657
|
"cc",
|
|
2581
2658
|
"cocoa",
|
|
@@ -2629,9 +2706,9 @@ dependencies = [
|
|
|
2629
2706
|
|
|
2630
2707
|
[[package]]
|
|
2631
2708
|
name = "target-lexicon"
|
|
2632
|
-
version = "0.12.
|
|
2709
|
+
version = "0.12.11"
|
|
2633
2710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
-
checksum = "
|
|
2711
|
+
checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
|
|
2635
2712
|
|
|
2636
2713
|
[[package]]
|
|
2637
2714
|
name = "tauri"
|
|
@@ -2740,6 +2817,48 @@ dependencies = [
|
|
|
2740
2817
|
"tauri-utils",
|
|
2741
2818
|
]
|
|
2742
2819
|
|
|
2820
|
+
[[package]]
|
|
2821
|
+
name = "tauri-plugin-app"
|
|
2822
|
+
version = "2.0.0-alpha.0"
|
|
2823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
+
checksum = "c88679f65ddc88b5d8b148d7713178a236dcc43d91063688a021d5a4c89ceaea"
|
|
2825
|
+
dependencies = [
|
|
2826
|
+
"tauri",
|
|
2827
|
+
]
|
|
2828
|
+
|
|
2829
|
+
[[package]]
|
|
2830
|
+
name = "tauri-plugin-os"
|
|
2831
|
+
version = "2.0.0-alpha.0"
|
|
2832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
+
checksum = "78c8389ec68b426ff145f9520a718d1dcda4a4147ba4fea98b0dc71127992c10"
|
|
2834
|
+
dependencies = [
|
|
2835
|
+
"log",
|
|
2836
|
+
"os_info",
|
|
2837
|
+
"serde",
|
|
2838
|
+
"serde_json",
|
|
2839
|
+
"sys-locale",
|
|
2840
|
+
"tauri",
|
|
2841
|
+
"thiserror",
|
|
2842
|
+
]
|
|
2843
|
+
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "tauri-plugin-shell"
|
|
2846
|
+
version = "2.0.0-alpha.0"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "de1809a138afc1806b5b1b7af9469d4e5e119e59b598f014cee090f49909a17f"
|
|
2849
|
+
dependencies = [
|
|
2850
|
+
"encoding_rs",
|
|
2851
|
+
"log",
|
|
2852
|
+
"open",
|
|
2853
|
+
"os_pipe",
|
|
2854
|
+
"regex",
|
|
2855
|
+
"serde",
|
|
2856
|
+
"serde_json",
|
|
2857
|
+
"shared_child",
|
|
2858
|
+
"tauri",
|
|
2859
|
+
"thiserror",
|
|
2860
|
+
]
|
|
2861
|
+
|
|
2743
2862
|
[[package]]
|
|
2744
2863
|
name = "tauri-plugin-window"
|
|
2745
2864
|
version = "2.0.0-alpha.0"
|
|
@@ -2801,6 +2920,9 @@ dependencies = [
|
|
|
2801
2920
|
"serde_json",
|
|
2802
2921
|
"tauri",
|
|
2803
2922
|
"tauri-build",
|
|
2923
|
+
"tauri-plugin-app",
|
|
2924
|
+
"tauri-plugin-os",
|
|
2925
|
+
"tauri-plugin-shell",
|
|
2804
2926
|
"tauri-plugin-window",
|
|
2805
2927
|
]
|
|
2806
2928
|
|
|
@@ -2845,16 +2967,15 @@ dependencies = [
|
|
|
2845
2967
|
|
|
2846
2968
|
[[package]]
|
|
2847
2969
|
name = "tempfile"
|
|
2848
|
-
version = "3.
|
|
2970
|
+
version = "3.7.0"
|
|
2849
2971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
-
checksum = "
|
|
2972
|
+
checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998"
|
|
2851
2973
|
dependencies = [
|
|
2852
|
-
"autocfg",
|
|
2853
2974
|
"cfg-if",
|
|
2854
2975
|
"fastrand",
|
|
2855
2976
|
"redox_syscall 0.3.5",
|
|
2856
2977
|
"rustix",
|
|
2857
|
-
"windows-sys",
|
|
2978
|
+
"windows-sys 0.48.0",
|
|
2858
2979
|
]
|
|
2859
2980
|
|
|
2860
2981
|
[[package]]
|
|
@@ -2876,22 +2997,22 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
|
|
|
2876
2997
|
|
|
2877
2998
|
[[package]]
|
|
2878
2999
|
name = "thiserror"
|
|
2879
|
-
version = "1.0.
|
|
3000
|
+
version = "1.0.44"
|
|
2880
3001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
-
checksum = "
|
|
3002
|
+
checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90"
|
|
2882
3003
|
dependencies = [
|
|
2883
3004
|
"thiserror-impl",
|
|
2884
3005
|
]
|
|
2885
3006
|
|
|
2886
3007
|
[[package]]
|
|
2887
3008
|
name = "thiserror-impl"
|
|
2888
|
-
version = "1.0.
|
|
3009
|
+
version = "1.0.44"
|
|
2889
3010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
-
checksum = "
|
|
3011
|
+
checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96"
|
|
2891
3012
|
dependencies = [
|
|
2892
3013
|
"proc-macro2",
|
|
2893
3014
|
"quote",
|
|
2894
|
-
"syn 2.0.
|
|
3015
|
+
"syn 2.0.28",
|
|
2895
3016
|
]
|
|
2896
3017
|
|
|
2897
3018
|
[[package]]
|
|
@@ -2906,11 +3027,12 @@ dependencies = [
|
|
|
2906
3027
|
|
|
2907
3028
|
[[package]]
|
|
2908
3029
|
name = "time"
|
|
2909
|
-
version = "0.3.
|
|
3030
|
+
version = "0.3.24"
|
|
2910
3031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
-
checksum = "
|
|
3032
|
+
checksum = "b79eabcd964882a646b3584543ccabeae7869e9ac32a46f6f22b7a5bd405308b"
|
|
2912
3033
|
dependencies = [
|
|
2913
|
-
"
|
|
3034
|
+
"deranged",
|
|
3035
|
+
"itoa 1.0.9",
|
|
2914
3036
|
"serde",
|
|
2915
3037
|
"time-core",
|
|
2916
3038
|
"time-macros",
|
|
@@ -2924,9 +3046,9 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
|
|
|
2924
3046
|
|
|
2925
3047
|
[[package]]
|
|
2926
3048
|
name = "time-macros"
|
|
2927
|
-
version = "0.2.
|
|
3049
|
+
version = "0.2.11"
|
|
2928
3050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
-
checksum = "
|
|
3051
|
+
checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd"
|
|
2930
3052
|
dependencies = [
|
|
2931
3053
|
"time-core",
|
|
2932
3054
|
]
|
|
@@ -2960,7 +3082,7 @@ dependencies = [
|
|
|
2960
3082
|
"num_cpus",
|
|
2961
3083
|
"pin-project-lite",
|
|
2962
3084
|
"socket2",
|
|
2963
|
-
"windows-sys",
|
|
3085
|
+
"windows-sys 0.48.0",
|
|
2964
3086
|
]
|
|
2965
3087
|
|
|
2966
3088
|
[[package]]
|
|
@@ -3000,9 +3122,9 @@ dependencies = [
|
|
|
3000
3122
|
|
|
3001
3123
|
[[package]]
|
|
3002
3124
|
name = "toml_edit"
|
|
3003
|
-
version = "0.19.
|
|
3125
|
+
version = "0.19.14"
|
|
3004
3126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
-
checksum = "
|
|
3127
|
+
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
|
|
3006
3128
|
dependencies = [
|
|
3007
3129
|
"indexmap 2.0.0",
|
|
3008
3130
|
"serde",
|
|
@@ -3037,7 +3159,7 @@ checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
|
|
|
3037
3159
|
dependencies = [
|
|
3038
3160
|
"proc-macro2",
|
|
3039
3161
|
"quote",
|
|
3040
|
-
"syn 2.0.
|
|
3162
|
+
"syn 2.0.28",
|
|
3041
3163
|
]
|
|
3042
3164
|
|
|
3043
3165
|
[[package]]
|
|
@@ -3108,9 +3230,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
|
3108
3230
|
|
|
3109
3231
|
[[package]]
|
|
3110
3232
|
name = "unicode-ident"
|
|
3111
|
-
version = "1.0.
|
|
3233
|
+
version = "1.0.11"
|
|
3112
3234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
-
checksum = "
|
|
3235
|
+
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
|
|
3114
3236
|
|
|
3115
3237
|
[[package]]
|
|
3116
3238
|
name = "unicode-normalization"
|
|
@@ -3147,9 +3269,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
|
3147
3269
|
|
|
3148
3270
|
[[package]]
|
|
3149
3271
|
name = "uuid"
|
|
3150
|
-
version = "1.4.
|
|
3272
|
+
version = "1.4.1"
|
|
3151
3273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
-
checksum = "
|
|
3274
|
+
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
|
|
3153
3275
|
dependencies = [
|
|
3154
3276
|
"getrandom 0.2.10",
|
|
3155
3277
|
]
|
|
@@ -3244,7 +3366,7 @@ dependencies = [
|
|
|
3244
3366
|
"once_cell",
|
|
3245
3367
|
"proc-macro2",
|
|
3246
3368
|
"quote",
|
|
3247
|
-
"syn 2.0.
|
|
3369
|
+
"syn 2.0.28",
|
|
3248
3370
|
"wasm-bindgen-shared",
|
|
3249
3371
|
]
|
|
3250
3372
|
|
|
@@ -3278,7 +3400,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
|
|
3278
3400
|
dependencies = [
|
|
3279
3401
|
"proc-macro2",
|
|
3280
3402
|
"quote",
|
|
3281
|
-
"syn 2.0.
|
|
3403
|
+
"syn 2.0.28",
|
|
3282
3404
|
"wasm-bindgen-backend",
|
|
3283
3405
|
"wasm-bindgen-shared",
|
|
3284
3406
|
]
|
|
@@ -3318,7 +3440,7 @@ version = "0.19.2"
|
|
|
3318
3440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3319
3441
|
checksum = "d8eea819afe15eb8dcdff4f19d8bfda540bae84d874c10e6f4b8faf2d6704bd1"
|
|
3320
3442
|
dependencies = [
|
|
3321
|
-
"bitflags",
|
|
3443
|
+
"bitflags 1.3.2",
|
|
3322
3444
|
"cairo-rs",
|
|
3323
3445
|
"gdk",
|
|
3324
3446
|
"gdk-sys",
|
|
@@ -3342,7 +3464,7 @@ version = "0.19.1"
|
|
|
3342
3464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3343
3465
|
checksum = "d0ac7a95ddd3fdfcaf83d8e513b4b1ad101b95b413b6aa6662ed95f284fc3d5b"
|
|
3344
3466
|
dependencies = [
|
|
3345
|
-
"bitflags",
|
|
3467
|
+
"bitflags 1.3.2",
|
|
3346
3468
|
"cairo-sys-rs",
|
|
3347
3469
|
"gdk-sys",
|
|
3348
3470
|
"gio-sys",
|
|
@@ -3483,6 +3605,15 @@ version = "0.44.0"
|
|
|
3483
3605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3484
3606
|
checksum = "ee78911e3f4ce32c1ad9d3c7b0bd95389662ad8d8f1a3155688fed70bd96e2b6"
|
|
3485
3607
|
|
|
3608
|
+
[[package]]
|
|
3609
|
+
name = "windows-sys"
|
|
3610
|
+
version = "0.45.0"
|
|
3611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3612
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
3613
|
+
dependencies = [
|
|
3614
|
+
"windows-targets 0.42.2",
|
|
3615
|
+
]
|
|
3616
|
+
|
|
3486
3617
|
[[package]]
|
|
3487
3618
|
name = "windows-sys"
|
|
3488
3619
|
version = "0.48.0"
|
|
@@ -3614,9 +3745,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
|
3614
3745
|
|
|
3615
3746
|
[[package]]
|
|
3616
3747
|
name = "winnow"
|
|
3617
|
-
version = "0.
|
|
3748
|
+
version = "0.5.2"
|
|
3618
3749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
-
checksum = "
|
|
3750
|
+
checksum = "8bd122eb777186e60c3fdf765a58ac76e41c582f1f535fbf3314434c6b58f3f7"
|
|
3620
3751
|
dependencies = [
|
|
3621
3752
|
"memchr",
|
|
3622
3753
|
]
|