create-tauri-ui 0.1.4 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (496) hide show
  1. package/README.md +56 -13
  2. package/dist/index.mjs +26 -27
  3. package/index.js +1 -1
  4. package/package.json +54 -63
  5. package/templates/.shared/.github/workflows/release.yml +112 -0
  6. package/templates/.shared/app-icon.png +0 -0
  7. package/templates/.shared/src-tauri/Cargo.lock +3701 -0
  8. package/templates/.shared/src-tauri/Cargo.toml +36 -0
  9. package/templates/.shared/src-tauri/build.rs +3 -0
  10. package/templates/.shared/src-tauri/icons/128x128.png +0 -0
  11. package/templates/.shared/src-tauri/icons/128x128@2x.png +0 -0
  12. package/templates/.shared/src-tauri/icons/32x32.png +0 -0
  13. package/templates/.shared/src-tauri/icons/Square107x107Logo.png +0 -0
  14. package/templates/.shared/src-tauri/icons/Square142x142Logo.png +0 -0
  15. package/templates/.shared/src-tauri/icons/Square150x150Logo.png +0 -0
  16. package/templates/.shared/src-tauri/icons/Square284x284Logo.png +0 -0
  17. package/templates/.shared/src-tauri/icons/Square30x30Logo.png +0 -0
  18. package/templates/.shared/src-tauri/icons/Square310x310Logo.png +0 -0
  19. package/templates/.shared/src-tauri/icons/Square44x44Logo.png +0 -0
  20. package/templates/.shared/src-tauri/icons/Square71x71Logo.png +0 -0
  21. package/templates/.shared/src-tauri/icons/Square89x89Logo.png +0 -0
  22. package/templates/.shared/src-tauri/icons/StoreLogo.png +0 -0
  23. package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  24. package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  25. package/templates/.shared/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  26. package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  27. package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  28. package/templates/.shared/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  29. package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  30. package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  31. package/templates/.shared/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  32. package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  33. package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  34. package/templates/.shared/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  35. package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  36. package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  37. package/templates/.shared/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  38. package/templates/.shared/src-tauri/icons/icon.icns +0 -0
  39. package/templates/.shared/src-tauri/icons/icon.ico +0 -0
  40. package/templates/.shared/src-tauri/icons/icon.png +0 -0
  41. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  42. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  43. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  44. package/templates/.shared/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  45. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  46. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  47. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  48. package/templates/.shared/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  49. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  50. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  51. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  52. package/templates/.shared/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  53. package/templates/.shared/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  54. package/templates/.shared/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  55. package/templates/.shared/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  56. package/templates/.shared/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  57. package/templates/.shared/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  58. package/templates/.shared/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  59. package/templates/.shared/src-tauri/src/main.rs +19 -0
  60. package/templates/.shared/src-tauri/tauri.conf.json +79 -0
  61. package/templates/next/.env +1 -1
  62. package/templates/next/.github/workflows/release.yml +108 -108
  63. package/templates/next/.vscode/extensions.json +3 -3
  64. package/templates/next/README.md +95 -88
  65. package/templates/next/components.json +16 -0
  66. package/templates/next/next-env.d.ts +5 -5
  67. package/templates/next/next.config.js +14 -17
  68. package/templates/next/package.json +83 -82
  69. package/templates/next/pnpm-lock.yaml +4869 -4754
  70. package/templates/next/postcss.config.js +6 -6
  71. package/templates/next/prettier.config.js +35 -35
  72. package/templates/next/src/app/examples/authentication/components/user-auth-form.tsx +1 -1
  73. package/templates/next/src/app/examples/authentication/page.tsx +67 -59
  74. package/templates/next/src/app/examples/cards/components/create-account.tsx +1 -1
  75. package/templates/next/src/app/examples/cards/components/date-picker.tsx +2 -2
  76. package/templates/next/src/app/examples/cards/components/github-card.tsx +15 -10
  77. package/templates/next/src/app/examples/cards/components/notifications.tsx +9 -9
  78. package/templates/next/src/app/examples/cards/components/payment-method.tsx +14 -4
  79. package/templates/next/src/app/examples/cards/components/report-an-issue.tsx +4 -1
  80. package/templates/next/src/app/examples/cards/components/share-document.tsx +5 -1
  81. package/templates/next/src/app/examples/cards/components/team-members.tsx +8 -4
  82. package/templates/next/src/app/examples/cards/page.tsx +37 -36
  83. package/templates/next/src/app/examples/dashboard/components/date-range-picker.tsx +2 -3
  84. package/templates/next/src/app/examples/dashboard/components/main-nav.tsx +10 -8
  85. package/templates/next/src/app/examples/dashboard/components/recent-sales.tsx +5 -1
  86. package/templates/next/src/app/examples/dashboard/components/search.tsx +1 -1
  87. package/templates/next/src/app/examples/dashboard/components/team-switcher.tsx +15 -7
  88. package/templates/next/src/app/examples/dashboard/components/user-nav.tsx +10 -15
  89. package/templates/next/src/app/examples/dashboard/page.tsx +164 -114
  90. package/templates/next/src/app/examples/forms/account/account-form.tsx +13 -13
  91. package/templates/next/src/app/examples/forms/appearance/appearance-form.tsx +5 -5
  92. package/templates/next/src/app/examples/forms/components/sidebar-nav.tsx +3 -2
  93. package/templates/next/src/app/examples/forms/display/display-form.tsx +2 -2
  94. package/templates/next/src/app/examples/forms/layout.tsx +16 -14
  95. package/templates/next/src/app/examples/forms/notifications/notifications-form.tsx +6 -5
  96. package/templates/next/src/app/examples/forms/notifications/page.tsx +0 -1
  97. package/templates/next/src/app/examples/forms/profile-form.tsx +16 -15
  98. package/templates/next/src/app/examples/layout.tsx +7 -7
  99. package/templates/next/src/app/examples/music/components/album-artwork.tsx +15 -4
  100. package/templates/next/src/app/examples/music/components/menu.tsx +27 -5
  101. package/templates/next/src/app/examples/music/components/podcast-empty-placeholder.tsx +15 -4
  102. package/templates/next/src/app/examples/music/components/sidebar.tsx +147 -43
  103. package/templates/next/src/app/examples/music/page.tsx +113 -106
  104. package/templates/next/src/app/examples/playground/components/model-selector.tsx +3 -3
  105. package/templates/next/src/app/examples/playground/components/preset-actions.tsx +2 -4
  106. package/templates/next/src/app/examples/playground/components/preset-selector.tsx +4 -4
  107. package/templates/next/src/app/examples/playground/components/preset-share.tsx +2 -2
  108. package/templates/next/src/app/examples/playground/page.tsx +268 -115
  109. package/templates/next/src/app/examples/tasks/components/data-table-column-header.tsx +12 -7
  110. package/templates/next/src/app/examples/tasks/components/data-table-faceted-filter.tsx +4 -4
  111. package/templates/next/src/app/examples/tasks/components/data-table-pagination.tsx +10 -10
  112. package/templates/next/src/app/examples/tasks/components/data-table-row-actions.tsx +6 -19
  113. package/templates/next/src/app/examples/tasks/components/data-table-toolbar.tsx +3 -5
  114. package/templates/next/src/app/examples/tasks/components/data-table-view-options.tsx +2 -2
  115. package/templates/next/src/app/examples/tasks/components/user-nav.tsx +10 -15
  116. package/templates/next/src/app/examples/tasks/data/data.tsx +17 -17
  117. package/templates/next/src/app/examples/tasks/data/tasks.json +1 -1
  118. package/templates/next/src/app/examples/tasks/page.tsx +14 -12
  119. package/templates/next/src/app/layout.tsx +47 -43
  120. package/templates/next/src/app/page.tsx +5 -5
  121. package/templates/next/src/components/{examples/date-picker/with-range.tsx → example/date-picker-with-range.tsx} +1 -1
  122. package/templates/next/src/components/examples-nav.tsx +70 -70
  123. package/templates/next/src/components/greeting.tsx +21 -21
  124. package/templates/next/src/components/icons.tsx +154 -154
  125. package/templates/next/src/components/menu-mode-toggle.tsx +46 -46
  126. package/templates/next/src/components/menu.tsx +259 -259
  127. package/templates/next/src/components/mode-toggle.tsx +43 -43
  128. package/templates/next/src/components/page-header.tsx +50 -50
  129. package/templates/next/src/components/style-switcher.tsx +19 -19
  130. package/templates/next/src/components/tailwind-indicator.tsx +18 -18
  131. package/templates/next/src/components/theme-provider.tsx +9 -9
  132. package/templates/next/src/components/ui/accordion.tsx +1 -1
  133. package/templates/next/src/components/ui/alert-dialog.tsx +3 -8
  134. package/templates/next/src/components/ui/alert.tsx +3 -5
  135. package/templates/next/src/components/ui/badge.tsx +5 -5
  136. package/templates/next/src/components/ui/button.tsx +15 -10
  137. package/templates/next/src/components/ui/card.tsx +1 -3
  138. package/templates/next/src/components/ui/checkbox.tsx +2 -2
  139. package/templates/next/src/components/ui/command.tsx +2 -2
  140. package/templates/next/src/components/ui/context-menu.tsx +6 -6
  141. package/templates/next/src/components/ui/dialog.tsx +4 -9
  142. package/templates/next/src/components/ui/dropdown-menu.tsx +6 -6
  143. package/templates/next/src/components/ui/hover-card.tsx +1 -1
  144. package/templates/next/src/components/ui/input.tsx +1 -3
  145. package/templates/next/src/components/ui/label.tsx +1 -1
  146. package/templates/next/src/components/ui/menubar.tsx +7 -7
  147. package/templates/next/src/components/ui/navigation-menu.tsx +2 -4
  148. package/templates/next/src/components/ui/popover.tsx +1 -1
  149. package/templates/next/src/components/ui/radio-group.tsx +2 -2
  150. package/templates/next/src/components/ui/select.tsx +4 -3
  151. package/templates/next/src/components/ui/sheet.tsx +22 -108
  152. package/templates/next/src/components/ui/skeleton.tsx +0 -2
  153. package/templates/next/src/components/ui/switch.tsx +1 -1
  154. package/templates/next/src/components/ui/table.tsx +1 -1
  155. package/templates/next/src/components/ui/tabs.tsx +1 -1
  156. package/templates/next/src/components/ui/textarea.tsx +1 -3
  157. package/templates/next/src/components/ui/toast.tsx +6 -8
  158. package/templates/next/src/components/ui/toggle.tsx +3 -3
  159. package/templates/next/src/components/ui/tooltip.tsx +1 -1
  160. package/templates/next/src/components/ui/use-toast.ts +5 -4
  161. package/templates/next/src/data/albums.ts +71 -71
  162. package/templates/next/src/data/playlists.ts +16 -16
  163. package/templates/next/src/lib/utils.ts +6 -19
  164. package/templates/next/src/styles/globals.css +86 -124
  165. package/templates/next/src-tauri/Cargo.lock +3701 -3637
  166. package/templates/next/src-tauri/Cargo.toml +36 -36
  167. package/templates/next/src-tauri/build.rs +3 -3
  168. package/templates/next/src-tauri/icons/128x128.png +0 -0
  169. package/templates/next/src-tauri/icons/128x128@2x.png +0 -0
  170. package/templates/next/src-tauri/icons/32x32.png +0 -0
  171. package/templates/next/src-tauri/icons/Square107x107Logo.png +0 -0
  172. package/templates/next/src-tauri/icons/Square142x142Logo.png +0 -0
  173. package/templates/next/src-tauri/icons/Square150x150Logo.png +0 -0
  174. package/templates/next/src-tauri/icons/Square284x284Logo.png +0 -0
  175. package/templates/next/src-tauri/icons/Square30x30Logo.png +0 -0
  176. package/templates/next/src-tauri/icons/Square310x310Logo.png +0 -0
  177. package/templates/next/src-tauri/icons/Square44x44Logo.png +0 -0
  178. package/templates/next/src-tauri/icons/Square71x71Logo.png +0 -0
  179. package/templates/next/src-tauri/icons/Square89x89Logo.png +0 -0
  180. package/templates/next/src-tauri/icons/StoreLogo.png +0 -0
  181. package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  182. package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  183. package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  184. package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  185. package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  186. package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  187. package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  188. package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  189. package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  190. package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  191. package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  192. package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  193. package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  194. package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  195. package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  196. package/templates/next/src-tauri/icons/icon.icns +0 -0
  197. package/templates/next/src-tauri/icons/icon.ico +0 -0
  198. package/templates/next/src-tauri/icons/icon.png +0 -0
  199. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  200. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  201. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  202. package/templates/next/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  203. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  204. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  205. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  206. package/templates/next/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  207. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  208. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  209. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  210. package/templates/next/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  211. package/templates/next/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  212. package/templates/next/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  213. package/templates/next/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  214. package/templates/next/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  215. package/templates/next/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  216. package/templates/next/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  217. package/templates/next/src-tauri/src/main.rs +19 -19
  218. package/templates/next/src-tauri/tauri.conf.json +79 -63
  219. package/templates/next/tailwind.config.js +78 -80
  220. package/templates/next/tsconfig.json +35 -35
  221. package/templates/sveltekit/.github/workflows/release.yml +108 -0
  222. package/templates/sveltekit/package.json +29 -29
  223. package/templates/sveltekit/src-tauri/Cargo.lock +268 -206
  224. package/templates/sveltekit/src-tauri/Cargo.toml +12 -10
  225. package/templates/sveltekit/src-tauri/build.rs +3 -3
  226. package/templates/sveltekit/src-tauri/tauri.conf.json +23 -6
  227. package/templates/vite/components.json +16 -0
  228. package/templates/vite/package.json +19 -18
  229. package/templates/vite/pnpm-lock.yaml +801 -696
  230. package/templates/vite/public/avatars/01.png +0 -0
  231. package/templates/vite/public/avatars/02.png +0 -0
  232. package/templates/vite/public/avatars/03.png +0 -0
  233. package/templates/vite/public/avatars/04.png +0 -0
  234. package/templates/vite/public/avatars/05.png +0 -0
  235. package/templates/vite/src/components/menu.tsx +1 -1
  236. package/templates/vite/src/dashboard/components/date-range-picker.tsx +2 -3
  237. package/templates/vite/src/dashboard/components/recent-sales.tsx +5 -1
  238. package/templates/vite/src/dashboard/components/search.tsx +1 -1
  239. package/templates/vite/src/dashboard/components/team-switcher.tsx +15 -7
  240. package/templates/vite/src/dashboard/components/user-nav.tsx +10 -15
  241. package/templates/vite/src/dashboard/page.tsx +172 -121
  242. package/templates/vite/src/styles/globals.css +1 -39
  243. package/templates/vite/src-tauri/Cargo.lock +302 -238
  244. package/templates/vite/src-tauri/Cargo.toml +11 -8
  245. package/templates/vite/src-tauri/build.rs +3 -3
  246. package/templates/vite/src-tauri/tauri.conf.json +79 -63
  247. package/templates/viteuno/.github/workflows/release.yml +108 -0
  248. package/templates/viteuno/.vscode/extensions.json +3 -0
  249. package/templates/viteuno/README.md +1 -0
  250. package/templates/viteuno/app-icon.png +0 -0
  251. package/templates/viteuno/components.json +16 -0
  252. package/templates/viteuno/index.html +16 -0
  253. package/templates/viteuno/package.json +73 -0
  254. package/templates/viteuno/pnpm-lock.yaml +5298 -0
  255. package/templates/viteuno/preset.shadcn.ts +160 -0
  256. package/templates/viteuno/prettier.config.cjs +34 -0
  257. package/templates/viteuno/public/avatars/01.png +0 -0
  258. package/templates/viteuno/public/avatars/02.png +0 -0
  259. package/templates/viteuno/public/avatars/03.png +0 -0
  260. package/templates/viteuno/public/avatars/04.png +0 -0
  261. package/templates/viteuno/public/avatars/05.png +0 -0
  262. package/templates/viteuno/src/App.tsx +39 -0
  263. package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
  264. package/templates/viteuno/src/components/icons.tsx +154 -0
  265. package/templates/viteuno/src/components/menu-mode-toggle.tsx +46 -0
  266. package/templates/viteuno/src/components/menu.tsx +232 -0
  267. package/templates/viteuno/src/components/tailwind-indicator.tsx +18 -0
  268. package/templates/viteuno/src/components/theme-provider.tsx +9 -0
  269. package/templates/viteuno/src/components/ui/accordion.tsx +60 -0
  270. package/templates/viteuno/src/components/ui/alert-dialog.tsx +150 -0
  271. package/templates/viteuno/src/components/ui/alert.tsx +61 -0
  272. package/templates/viteuno/src/components/ui/aspect-ratio.tsx +7 -0
  273. package/templates/viteuno/src/components/ui/avatar.tsx +50 -0
  274. package/templates/viteuno/src/components/ui/badge.tsx +36 -0
  275. package/templates/viteuno/src/components/ui/button.tsx +51 -0
  276. package/templates/viteuno/src/components/ui/calendar.tsx +64 -0
  277. package/templates/viteuno/src/components/ui/card.tsx +81 -0
  278. package/templates/viteuno/src/components/ui/checkbox.tsx +30 -0
  279. package/templates/viteuno/src/components/ui/collapsible.tsx +11 -0
  280. package/templates/viteuno/src/components/ui/command.tsx +155 -0
  281. package/templates/viteuno/src/components/ui/context-menu.tsx +200 -0
  282. package/templates/viteuno/src/components/ui/dialog.tsx +128 -0
  283. package/templates/viteuno/src/components/ui/dropdown-menu.tsx +200 -0
  284. package/templates/viteuno/src/components/ui/hover-card.tsx +29 -0
  285. package/templates/viteuno/src/components/ui/index.ts +0 -0
  286. package/templates/viteuno/src/components/ui/input.tsx +27 -0
  287. package/templates/viteuno/src/components/ui/label.tsx +26 -0
  288. package/templates/viteuno/src/components/ui/menubar.tsx +236 -0
  289. package/templates/viteuno/src/components/ui/navigation-menu.tsx +130 -0
  290. package/templates/viteuno/src/components/ui/popover.tsx +31 -0
  291. package/templates/viteuno/src/components/ui/progress.tsx +28 -0
  292. package/templates/viteuno/src/components/ui/radio-group.tsx +44 -0
  293. package/templates/viteuno/src/components/ui/scroll-area.tsx +48 -0
  294. package/templates/viteuno/src/components/ui/select.tsx +120 -0
  295. package/templates/viteuno/src/components/ui/separator.tsx +31 -0
  296. package/templates/viteuno/src/components/ui/sheet.tsx +230 -0
  297. package/templates/viteuno/src/components/ui/skeleton.tsx +17 -0
  298. package/templates/viteuno/src/components/ui/slider.tsx +28 -0
  299. package/templates/viteuno/src/components/ui/switch.tsx +29 -0
  300. package/templates/viteuno/src/components/ui/table.tsx +114 -0
  301. package/templates/viteuno/src/components/ui/tabs.tsx +55 -0
  302. package/templates/viteuno/src/components/ui/textarea.tsx +26 -0
  303. package/templates/viteuno/src/components/ui/toast.tsx +129 -0
  304. package/templates/viteuno/src/components/ui/toaster.tsx +35 -0
  305. package/templates/viteuno/src/components/ui/toggle.tsx +45 -0
  306. package/templates/viteuno/src/components/ui/tooltip.tsx +30 -0
  307. package/templates/viteuno/src/components/ui/use-toast.ts +191 -0
  308. package/templates/{next/src/components/examples/calendar → viteuno/src/dashboard/components}/date-range-picker.tsx +5 -4
  309. package/templates/viteuno/src/dashboard/components/main-nav.tsx +38 -0
  310. package/templates/viteuno/src/dashboard/components/overview.tsx +78 -0
  311. package/templates/viteuno/src/dashboard/components/recent-sales.tsx +67 -0
  312. package/templates/viteuno/src/dashboard/components/search.tsx +13 -0
  313. package/templates/viteuno/src/dashboard/components/team-switcher.tsx +205 -0
  314. package/templates/viteuno/src/dashboard/components/user-nav.tsx +67 -0
  315. package/templates/viteuno/src/dashboard/page.tsx +140 -0
  316. package/templates/viteuno/src/lib/utils.ts +19 -0
  317. package/templates/viteuno/src/main.tsx +14 -0
  318. package/templates/viteuno/src/styles/globals.css +4 -0
  319. package/templates/viteuno/src/vite-env.d.ts +1 -0
  320. package/templates/viteuno/src-tauri/Cargo.lock +3701 -0
  321. package/templates/viteuno/src-tauri/Cargo.toml +36 -0
  322. package/templates/viteuno/src-tauri/build.rs +3 -0
  323. package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
  324. package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
  325. package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
  326. package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
  327. package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
  328. package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
  329. package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
  330. package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
  331. package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
  332. package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
  333. package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
  334. package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
  335. package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
  336. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
  337. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  338. package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
  339. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
  340. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  341. package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
  342. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
  343. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  344. package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
  345. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
  346. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  347. package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  348. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
  349. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  350. package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  351. package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
  352. package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
  353. package/templates/viteuno/src-tauri/icons/icon.png +0 -0
  354. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
  355. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
  356. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
  357. package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
  358. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
  359. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
  360. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
  361. package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
  362. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
  363. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
  364. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
  365. package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
  366. package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
  367. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
  368. package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
  369. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
  370. package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
  371. package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
  372. package/templates/viteuno/src-tauri/src/main.rs +16 -0
  373. package/templates/viteuno/src-tauri/tauri.conf.json +79 -0
  374. package/templates/viteuno/tsconfig.json +26 -0
  375. package/templates/viteuno/tsconfig.node.json +9 -0
  376. package/templates/viteuno/uno.config.ts +111 -0
  377. package/templates/viteuno/vite.config.ts +33 -0
  378. package/templates/next/src/app/examples/cards/styles.css +0 -63
  379. package/templates/next/src/app/examples/music/styles.css +0 -65
  380. package/templates/next/src/app/examples/playground/components/icons.tsx +0 -153
  381. package/templates/next/src/app/examples/playground/styles.css +0 -65
  382. package/templates/next/src/components/examples/.eslintrc.json +0 -6
  383. package/templates/next/src/components/examples/accordion/demo.tsx +0 -32
  384. package/templates/next/src/components/examples/alert/demo.tsx +0 -15
  385. package/templates/next/src/components/examples/alert/destructive.tsx +0 -15
  386. package/templates/next/src/components/examples/alert-dialog/demo.tsx +0 -35
  387. package/templates/next/src/components/examples/aspect-ratio/demo.tsx +0 -16
  388. package/templates/next/src/components/examples/avatar/demo.tsx +0 -10
  389. package/templates/next/src/components/examples/badge/demo.tsx +0 -5
  390. package/templates/next/src/components/examples/badge/destructive.tsx +0 -5
  391. package/templates/next/src/components/examples/badge/outline.tsx +0 -5
  392. package/templates/next/src/components/examples/badge/secondary.tsx +0 -5
  393. package/templates/next/src/components/examples/button/as-child.tsx +0 -10
  394. package/templates/next/src/components/examples/button/demo.tsx +0 -5
  395. package/templates/next/src/components/examples/button/destructive.tsx +0 -5
  396. package/templates/next/src/components/examples/button/ghost.tsx +0 -5
  397. package/templates/next/src/components/examples/button/link.tsx +0 -5
  398. package/templates/next/src/components/examples/button/loading.tsx +0 -12
  399. package/templates/next/src/components/examples/button/outline.tsx +0 -5
  400. package/templates/next/src/components/examples/button/secondary.tsx +0 -5
  401. package/templates/next/src/components/examples/button/with-icon.tsx +0 -11
  402. package/templates/next/src/components/examples/calendar/date-picker.tsx +0 -43
  403. package/templates/next/src/components/examples/calendar/demo.tsx +0 -18
  404. package/templates/next/src/components/examples/calendar/react-hook-form.tsx +0 -101
  405. package/templates/next/src/components/examples/calendar/with-presets.tsx +0 -62
  406. package/templates/next/src/components/examples/card/demo.tsx +0 -79
  407. package/templates/next/src/components/examples/card/with-form.tsx +0 -59
  408. package/templates/next/src/components/examples/checkbox/demo.tsx +0 -17
  409. package/templates/next/src/components/examples/checkbox/disabled.tsx +0 -15
  410. package/templates/next/src/components/examples/checkbox/react-hook-form-multiple.tsx +0 -127
  411. package/templates/next/src/components/examples/checkbox/react-hook-form-single.tsx +0 -72
  412. package/templates/next/src/components/examples/checkbox/with-text.tsx +0 -22
  413. package/templates/next/src/components/examples/collapsible/demo.tsx +0 -46
  414. package/templates/next/src/components/examples/combobox/demo.tsx +0 -90
  415. package/templates/next/src/components/examples/combobox/dropdown-menu.tsx +0 -110
  416. package/templates/next/src/components/examples/combobox/popover.tsx +0 -124
  417. package/templates/next/src/components/examples/combobox/react-hook-form.tsx +0 -135
  418. package/templates/next/src/components/examples/command/combobox.tsx +0 -90
  419. package/templates/next/src/components/examples/command/demo.tsx +0 -62
  420. package/templates/next/src/components/examples/command/dialog.tsx +0 -86
  421. package/templates/next/src/components/examples/command/dropdown-menu.tsx +0 -110
  422. package/templates/next/src/components/examples/command/popover.tsx +0 -124
  423. package/templates/next/src/components/examples/context-menu/demo.tsx +0 -67
  424. package/templates/next/src/components/examples/data-table/columns.tsx +0 -110
  425. package/templates/next/src/components/examples/data-table/data-table.tsx +0 -185
  426. package/templates/next/src/components/examples/data-table/demo.tsx +0 -41
  427. package/templates/next/src/components/examples/date-picker/demo.tsx +0 -43
  428. package/templates/next/src/components/examples/date-picker/react-hook-form.tsx +0 -101
  429. package/templates/next/src/components/examples/date-picker/with-presets.tsx +0 -62
  430. package/templates/next/src/components/examples/dialog/demo.tsx +0 -47
  431. package/templates/next/src/components/examples/dropdown-menu/checkboxes.tsx +0 -53
  432. package/templates/next/src/components/examples/dropdown-menu/demo.tsx +0 -122
  433. package/templates/next/src/components/examples/dropdown-menu/radio-group.tsx +0 -37
  434. package/templates/next/src/components/examples/hover-card/demo.tsx +0 -39
  435. package/templates/next/src/components/examples/index.tsx +0 -213
  436. package/templates/next/src/components/examples/input/demo.tsx +0 -5
  437. package/templates/next/src/components/examples/input/disabled.tsx +0 -5
  438. package/templates/next/src/components/examples/input/file.tsx +0 -11
  439. package/templates/next/src/components/examples/input/react-hook-form.tsx +0 -65
  440. package/templates/next/src/components/examples/input/with-button.tsx +0 -11
  441. package/templates/next/src/components/examples/input/with-label.tsx +0 -11
  442. package/templates/next/src/components/examples/input/with-text.tsx +0 -12
  443. package/templates/next/src/components/examples/label/demo.tsx +0 -13
  444. package/templates/next/src/components/examples/menubar/demo.tsx +0 -107
  445. package/templates/next/src/components/examples/navigation-menu/demo.tsx +0 -144
  446. package/templates/next/src/components/examples/popover/demo.tsx +0 -67
  447. package/templates/next/src/components/examples/progress/demo.tsx +0 -16
  448. package/templates/next/src/components/examples/radio-group/demo.tsx +0 -21
  449. package/templates/next/src/components/examples/radio-group/react-hook-form.tsx +0 -88
  450. package/templates/next/src/components/examples/scroll-area/demo.tsx +0 -26
  451. package/templates/next/src/components/examples/select/demo.tsx +0 -31
  452. package/templates/next/src/components/examples/select/react-hook-form.tsx +0 -83
  453. package/templates/next/src/components/examples/separator/demo.tsx +0 -22
  454. package/templates/next/src/components/examples/sheet/demo.tsx +0 -47
  455. package/templates/next/src/components/examples/sheet/position.tsx +0 -75
  456. package/templates/next/src/components/examples/sheet/size.tsx +0 -75
  457. package/templates/next/src/components/examples/skeleton/demo.tsx +0 -13
  458. package/templates/next/src/components/examples/slider/demo.tsx +0 -16
  459. package/templates/next/src/components/examples/switch/demo.tsx +0 -11
  460. package/templates/next/src/components/examples/switch/react-hook-form.tsx +0 -101
  461. package/templates/next/src/components/examples/table/demo.tsx +0 -80
  462. package/templates/next/src/components/examples/tabs/demo.tsx +0 -69
  463. package/templates/next/src/components/examples/textarea/demo.tsx +0 -5
  464. package/templates/next/src/components/examples/textarea/disabled.tsx +0 -5
  465. package/templates/next/src/components/examples/textarea/react-hook-form.tsx +0 -77
  466. package/templates/next/src/components/examples/textarea/with-button.tsx +0 -11
  467. package/templates/next/src/components/examples/textarea/with-label.tsx +0 -11
  468. package/templates/next/src/components/examples/textarea/with-text.tsx +0 -14
  469. package/templates/next/src/components/examples/toast/demo.tsx +0 -26
  470. package/templates/next/src/components/examples/toast/destructive.tsx +0 -25
  471. package/templates/next/src/components/examples/toast/simple.tsx +0 -21
  472. package/templates/next/src/components/examples/toast/with-action.tsx +0 -24
  473. package/templates/next/src/components/examples/toast/with-title.tsx +0 -22
  474. package/templates/next/src/components/examples/toggle/demo.tsx +0 -11
  475. package/templates/next/src/components/examples/toggle/disabled.tsx +0 -11
  476. package/templates/next/src/components/examples/toggle/lg.tsx +0 -11
  477. package/templates/next/src/components/examples/toggle/outline.tsx +0 -11
  478. package/templates/next/src/components/examples/toggle/sm.tsx +0 -11
  479. package/templates/next/src/components/examples/toggle/with-text.tsx +0 -12
  480. package/templates/next/src/components/examples/tooltip/demo.tsx +0 -27
  481. package/templates/next/src/components/examples/typography/blockquote.tsx +0 -8
  482. package/templates/next/src/components/examples/typography/demo.tsx +0 -119
  483. package/templates/next/src/components/examples/typography/h1.tsx +0 -7
  484. package/templates/next/src/components/examples/typography/h2.tsx +0 -7
  485. package/templates/next/src/components/examples/typography/h3.tsx +0 -7
  486. package/templates/next/src/components/examples/typography/h4.tsx +0 -7
  487. package/templates/next/src/components/examples/typography/inline-code.tsx +0 -7
  488. package/templates/next/src/components/examples/typography/large.tsx +0 -5
  489. package/templates/next/src/components/examples/typography/lead.tsx +0 -8
  490. package/templates/next/src/components/examples/typography/list.tsx +0 -9
  491. package/templates/next/src/components/examples/typography/muted.tsx +0 -5
  492. package/templates/next/src/components/examples/typography/p.tsx +0 -8
  493. package/templates/next/src/components/examples/typography/small.tsx +0 -5
  494. package/templates/next/src/components/examples/typography/table.tsx +0 -44
  495. package/templates/sveltekit/static/favicon.ico +0 -0
  496. /package/templates/next/src/components/{react-hook-form → ui}/form.tsx +0 -0
@@ -2,6 +2,15 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 3
4
4
 
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.20.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
5
14
  [[package]]
6
15
  name = "adler"
7
16
  version = "1.0.2"
@@ -83,6 +92,21 @@ version = "1.1.0"
83
92
  source = "registry+https://github.com/rust-lang/crates.io-index"
84
93
  checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
85
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
+
86
110
  [[package]]
87
111
  name = "base64"
88
112
  version = "0.13.1"
@@ -224,9 +248,9 @@ dependencies = [
224
248
 
225
249
  [[package]]
226
250
  name = "cfg-expr"
227
- version = "0.15.2"
251
+ version = "0.15.3"
228
252
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
- checksum = "e70d3ad08698a0568b0562f22710fe6bfc1f4a61a367c77d0398c562eadd453a"
253
+ checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c"
230
254
  dependencies = [
231
255
  "smallvec",
232
256
  "target-lexicon",
@@ -335,21 +359,20 @@ dependencies = [
335
359
 
336
360
  [[package]]
337
361
  name = "core-graphics-types"
338
- version = "0.1.1"
362
+ version = "0.1.2"
339
363
  source = "registry+https://github.com/rust-lang/crates.io-index"
340
- checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
364
+ checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
341
365
  dependencies = [
342
366
  "bitflags",
343
367
  "core-foundation",
344
- "foreign-types",
345
368
  "libc",
346
369
  ]
347
370
 
348
371
  [[package]]
349
372
  name = "cpufeatures"
350
- version = "0.2.7"
373
+ version = "0.2.9"
351
374
  source = "registry+https://github.com/rust-lang/crates.io-index"
352
- checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
375
+ checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
353
376
  dependencies = [
354
377
  "libc",
355
378
  ]
@@ -375,9 +398,9 @@ dependencies = [
375
398
 
376
399
  [[package]]
377
400
  name = "crossbeam-utils"
378
- version = "0.8.15"
401
+ version = "0.8.16"
379
402
  source = "registry+https://github.com/rust-lang/crates.io-index"
380
- checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
403
+ checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
381
404
  dependencies = [
382
405
  "cfg-if",
383
406
  ]
@@ -416,7 +439,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
416
439
  checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
417
440
  dependencies = [
418
441
  "quote",
419
- "syn 2.0.18",
442
+ "syn 2.0.25",
420
443
  ]
421
444
 
422
445
  [[package]]
@@ -450,7 +473,7 @@ dependencies = [
450
473
  "proc-macro2",
451
474
  "quote",
452
475
  "strsim",
453
- "syn 2.0.18",
476
+ "syn 2.0.25",
454
477
  ]
455
478
 
456
479
  [[package]]
@@ -461,7 +484,7 @@ checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a"
461
484
  dependencies = [
462
485
  "darling_core",
463
486
  "quote",
464
- "syn 2.0.18",
487
+ "syn 2.0.25",
465
488
  ]
466
489
 
467
490
  [[package]]
@@ -516,9 +539,9 @@ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
516
539
 
517
540
  [[package]]
518
541
  name = "dtoa"
519
- version = "1.0.6"
542
+ version = "1.0.8"
520
543
  source = "registry+https://github.com/rust-lang/crates.io-index"
521
- checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169"
544
+ checksum = "519b83cd10f5f6e969625a409f735182bea5558cd8b64c655806ceaae36f1999"
522
545
 
523
546
  [[package]]
524
547
  name = "dtoa-short"
@@ -537,9 +560,9 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
537
560
 
538
561
  [[package]]
539
562
  name = "embed-resource"
540
- version = "2.1.1"
563
+ version = "2.2.0"
541
564
  source = "registry+https://github.com/rust-lang/crates.io-index"
542
- checksum = "80663502655af01a2902dff3f06869330782267924bf1788410b74edcd93770a"
565
+ checksum = "f7f1e82a60222fc67bfd50d752a9c89da5cce4c39ed39decc84a443b07bbd69a"
543
566
  dependencies = [
544
567
  "cc",
545
568
  "rustc_version",
@@ -563,6 +586,12 @@ dependencies = [
563
586
  "cfg-if",
564
587
  ]
565
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
+
566
595
  [[package]]
567
596
  name = "errno"
568
597
  version = "0.3.1"
@@ -571,7 +600,7 @@ checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
571
600
  dependencies = [
572
601
  "errno-dragonfly",
573
602
  "libc",
574
- "windows-sys 0.48.0",
603
+ "windows-sys",
575
604
  ]
576
605
 
577
606
  [[package]]
@@ -702,7 +731,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
702
731
  dependencies = [
703
732
  "proc-macro2",
704
733
  "quote",
705
- "syn 2.0.18",
734
+ "syn 2.0.25",
706
735
  ]
707
736
 
708
737
  [[package]]
@@ -831,9 +860,9 @@ dependencies = [
831
860
 
832
861
  [[package]]
833
862
  name = "generator"
834
- version = "0.7.4"
863
+ version = "0.7.5"
835
864
  source = "registry+https://github.com/rust-lang/crates.io-index"
836
- checksum = "f3e123d9ae7c02966b4d892e550bdc32164f05853cd40ab570650ad600596a8a"
865
+ checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
837
866
  dependencies = [
838
867
  "cc",
839
868
  "libc",
@@ -865,15 +894,21 @@ dependencies = [
865
894
 
866
895
  [[package]]
867
896
  name = "getrandom"
868
- version = "0.2.9"
897
+ version = "0.2.10"
869
898
  source = "registry+https://github.com/rust-lang/crates.io-index"
870
- checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
899
+ checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
871
900
  dependencies = [
872
901
  "cfg-if",
873
902
  "libc",
874
903
  "wasi 0.11.0+wasi-snapshot-preview1",
875
904
  ]
876
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
+
877
912
  [[package]]
878
913
  name = "gio"
879
914
  version = "0.16.7"
@@ -909,9 +944,9 @@ dependencies = [
909
944
 
910
945
  [[package]]
911
946
  name = "glib"
912
- version = "0.16.7"
947
+ version = "0.16.9"
913
948
  source = "registry+https://github.com/rust-lang/crates.io-index"
914
- checksum = "ddd4df61a866ed7259d6189b8bcb1464989a77f1d85d25d002279bbe9dd38b2f"
949
+ checksum = "16aa2475c9debed5a32832cb5ff2af5a3f9e1ab9e69df58eaadc1ab2004d6eba"
915
950
  dependencies = [
916
951
  "bitflags",
917
952
  "futures-channel",
@@ -1028,9 +1063,9 @@ dependencies = [
1028
1063
 
1029
1064
  [[package]]
1030
1065
  name = "h2"
1031
- version = "0.3.19"
1066
+ version = "0.3.20"
1032
1067
  source = "registry+https://github.com/rust-lang/crates.io-index"
1033
- checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
1068
+ checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
1034
1069
  dependencies = [
1035
1070
  "bytes",
1036
1071
  "fnv",
@@ -1038,7 +1073,7 @@ dependencies = [
1038
1073
  "futures-sink",
1039
1074
  "futures-util",
1040
1075
  "http",
1041
- "indexmap",
1076
+ "indexmap 1.9.3",
1042
1077
  "slab",
1043
1078
  "tokio",
1044
1079
  "tokio-util",
@@ -1052,25 +1087,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
1087
  checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1053
1088
 
1054
1089
  [[package]]
1055
- name = "heck"
1056
- version = "0.4.1"
1090
+ name = "hashbrown"
1091
+ version = "0.14.0"
1057
1092
  source = "registry+https://github.com/rust-lang/crates.io-index"
1058
- checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1093
+ checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
1059
1094
 
1060
1095
  [[package]]
1061
- name = "hermit-abi"
1062
- version = "0.2.6"
1096
+ name = "heck"
1097
+ version = "0.4.1"
1063
1098
  source = "registry+https://github.com/rust-lang/crates.io-index"
1064
- checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
1065
- dependencies = [
1066
- "libc",
1067
- ]
1099
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1068
1100
 
1069
1101
  [[package]]
1070
1102
  name = "hermit-abi"
1071
- version = "0.3.1"
1103
+ version = "0.3.2"
1072
1104
  source = "registry+https://github.com/rust-lang/crates.io-index"
1073
- checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
1105
+ checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
1074
1106
 
1075
1107
  [[package]]
1076
1108
  name = "hex"
@@ -1100,7 +1132,7 @@ checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
1100
1132
  dependencies = [
1101
1133
  "bytes",
1102
1134
  "fnv",
1103
- "itoa 1.0.6",
1135
+ "itoa 1.0.8",
1104
1136
  ]
1105
1137
 
1106
1138
  [[package]]
@@ -1134,9 +1166,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
1134
1166
 
1135
1167
  [[package]]
1136
1168
  name = "hyper"
1137
- version = "0.14.26"
1169
+ version = "0.14.27"
1138
1170
  source = "registry+https://github.com/rust-lang/crates.io-index"
1139
- checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
1171
+ checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
1140
1172
  dependencies = [
1141
1173
  "bytes",
1142
1174
  "futures-channel",
@@ -1147,7 +1179,7 @@ dependencies = [
1147
1179
  "http-body",
1148
1180
  "httparse",
1149
1181
  "httpdate",
1150
- "itoa 1.0.6",
1182
+ "itoa 1.0.8",
1151
1183
  "pin-project-lite",
1152
1184
  "socket2",
1153
1185
  "tokio",
@@ -1158,9 +1190,9 @@ dependencies = [
1158
1190
 
1159
1191
  [[package]]
1160
1192
  name = "iana-time-zone"
1161
- version = "0.1.56"
1193
+ version = "0.1.57"
1162
1194
  source = "registry+https://github.com/rust-lang/crates.io-index"
1163
- checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
1195
+ checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
1164
1196
  dependencies = [
1165
1197
  "android_system_properties",
1166
1198
  "core-foundation-sys",
@@ -1225,10 +1257,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
1257
  checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1226
1258
  dependencies = [
1227
1259
  "autocfg",
1228
- "hashbrown",
1260
+ "hashbrown 0.12.3",
1229
1261
  "serde",
1230
1262
  ]
1231
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
+
1232
1274
  [[package]]
1233
1275
  name = "infer"
1234
1276
  version = "0.12.0"
@@ -1253,16 +1295,16 @@ version = "1.0.11"
1253
1295
  source = "registry+https://github.com/rust-lang/crates.io-index"
1254
1296
  checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
1255
1297
  dependencies = [
1256
- "hermit-abi 0.3.1",
1298
+ "hermit-abi",
1257
1299
  "libc",
1258
- "windows-sys 0.48.0",
1300
+ "windows-sys",
1259
1301
  ]
1260
1302
 
1261
1303
  [[package]]
1262
1304
  name = "ipnet"
1263
- version = "2.7.2"
1305
+ version = "2.8.0"
1264
1306
  source = "registry+https://github.com/rust-lang/crates.io-index"
1265
- checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
1307
+ checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
1266
1308
 
1267
1309
  [[package]]
1268
1310
  name = "itoa"
@@ -1272,9 +1314,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1272
1314
 
1273
1315
  [[package]]
1274
1316
  name = "itoa"
1275
- version = "1.0.6"
1317
+ version = "1.0.8"
1276
1318
  source = "registry+https://github.com/rust-lang/crates.io-index"
1277
- checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
1319
+ checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
1278
1320
 
1279
1321
  [[package]]
1280
1322
  name = "javascriptcore-rs"
@@ -1321,9 +1363,9 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1321
1363
 
1322
1364
  [[package]]
1323
1365
  name = "js-sys"
1324
- version = "0.3.63"
1366
+ version = "0.3.64"
1325
1367
  source = "registry+https://github.com/rust-lang/crates.io-index"
1326
- checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
1368
+ checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
1327
1369
  dependencies = [
1328
1370
  "wasm-bindgen",
1329
1371
  ]
@@ -1360,9 +1402,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1360
1402
 
1361
1403
  [[package]]
1362
1404
  name = "libc"
1363
- version = "0.2.145"
1405
+ version = "0.2.147"
1364
1406
  source = "registry+https://github.com/rust-lang/crates.io-index"
1365
- checksum = "fc86cde3ff845662b8f4ef6cb50ea0e20c524eb3d29ae048287e06a1b3fa6a81"
1407
+ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
1366
1408
 
1367
1409
  [[package]]
1368
1410
  name = "line-wrap"
@@ -1381,9 +1423,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
1381
1423
 
1382
1424
  [[package]]
1383
1425
  name = "lock_api"
1384
- version = "0.4.9"
1426
+ version = "0.4.10"
1385
1427
  source = "registry+https://github.com/rust-lang/crates.io-index"
1386
- checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
1428
+ checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
1387
1429
  dependencies = [
1388
1430
  "autocfg",
1389
1431
  "scopeguard",
@@ -1391,9 +1433,9 @@ dependencies = [
1391
1433
 
1392
1434
  [[package]]
1393
1435
  name = "log"
1394
- version = "0.4.18"
1436
+ version = "0.4.19"
1395
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1396
- checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de"
1438
+ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
1397
1439
 
1398
1440
  [[package]]
1399
1441
  name = "loom"
@@ -1445,7 +1487,7 @@ version = "0.1.0"
1445
1487
  source = "registry+https://github.com/rust-lang/crates.io-index"
1446
1488
  checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1447
1489
  dependencies = [
1448
- "regex-automata",
1490
+ "regex-automata 0.1.10",
1449
1491
  ]
1450
1492
 
1451
1493
  [[package]]
@@ -1493,7 +1535,7 @@ checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
1493
1535
  dependencies = [
1494
1536
  "libc",
1495
1537
  "wasi 0.11.0+wasi-snapshot-preview1",
1496
- "windows-sys 0.48.0",
1538
+ "windows-sys",
1497
1539
  ]
1498
1540
 
1499
1541
  [[package]]
@@ -1578,11 +1620,11 @@ dependencies = [
1578
1620
 
1579
1621
  [[package]]
1580
1622
  name = "num_cpus"
1581
- version = "1.15.0"
1623
+ version = "1.16.0"
1582
1624
  source = "registry+https://github.com/rust-lang/crates.io-index"
1583
- checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
1625
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1584
1626
  dependencies = [
1585
- "hermit-abi 0.2.6",
1627
+ "hermit-abi",
1586
1628
  "libc",
1587
1629
  ]
1588
1630
 
@@ -1635,6 +1677,15 @@ dependencies = [
1635
1677
  "objc",
1636
1678
  ]
1637
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
+
1638
1689
  [[package]]
1639
1690
  name = "once_cell"
1640
1691
  version = "1.18.0"
@@ -1685,15 +1736,15 @@ dependencies = [
1685
1736
 
1686
1737
  [[package]]
1687
1738
  name = "parking_lot_core"
1688
- version = "0.9.7"
1739
+ version = "0.9.8"
1689
1740
  source = "registry+https://github.com/rust-lang/crates.io-index"
1690
- checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
1741
+ checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
1691
1742
  dependencies = [
1692
1743
  "cfg-if",
1693
1744
  "libc",
1694
- "redox_syscall 0.2.16",
1745
+ "redox_syscall 0.3.5",
1695
1746
  "smallvec",
1696
- "windows-sys 0.45.0",
1747
+ "windows-targets 0.48.1",
1697
1748
  ]
1698
1749
 
1699
1750
  [[package]]
@@ -1802,9 +1853,9 @@ dependencies = [
1802
1853
 
1803
1854
  [[package]]
1804
1855
  name = "pin-project-lite"
1805
- version = "0.2.9"
1856
+ version = "0.2.10"
1806
1857
  source = "registry+https://github.com/rust-lang/crates.io-index"
1807
- checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1858
+ checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
1808
1859
 
1809
1860
  [[package]]
1810
1861
  name = "pin-utils"
@@ -1820,12 +1871,12 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
1820
1871
 
1821
1872
  [[package]]
1822
1873
  name = "plist"
1823
- version = "1.4.3"
1874
+ version = "1.5.0"
1824
1875
  source = "registry+https://github.com/rust-lang/crates.io-index"
1825
- checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590"
1876
+ checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06"
1826
1877
  dependencies = [
1827
1878
  "base64 0.21.2",
1828
- "indexmap",
1879
+ "indexmap 1.9.3",
1829
1880
  "line-wrap",
1830
1881
  "quick-xml",
1831
1882
  "serde",
@@ -1834,9 +1885,9 @@ dependencies = [
1834
1885
 
1835
1886
  [[package]]
1836
1887
  name = "png"
1837
- version = "0.17.8"
1888
+ version = "0.17.9"
1838
1889
  source = "registry+https://github.com/rust-lang/crates.io-index"
1839
- checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa"
1890
+ checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
1840
1891
  dependencies = [
1841
1892
  "bitflags",
1842
1893
  "crc32fast",
@@ -1899,27 +1950,27 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
1899
1950
 
1900
1951
  [[package]]
1901
1952
  name = "proc-macro2"
1902
- version = "1.0.59"
1953
+ version = "1.0.64"
1903
1954
  source = "registry+https://github.com/rust-lang/crates.io-index"
1904
- checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b"
1955
+ checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
1905
1956
  dependencies = [
1906
1957
  "unicode-ident",
1907
1958
  ]
1908
1959
 
1909
1960
  [[package]]
1910
1961
  name = "quick-xml"
1911
- version = "0.28.2"
1962
+ version = "0.29.0"
1912
1963
  source = "registry+https://github.com/rust-lang/crates.io-index"
1913
- checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
1964
+ checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51"
1914
1965
  dependencies = [
1915
1966
  "memchr",
1916
1967
  ]
1917
1968
 
1918
1969
  [[package]]
1919
1970
  name = "quote"
1920
- version = "1.0.28"
1971
+ version = "1.0.29"
1921
1972
  source = "registry+https://github.com/rust-lang/crates.io-index"
1922
- checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
1973
+ checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
1923
1974
  dependencies = [
1924
1975
  "proc-macro2",
1925
1976
  ]
@@ -1984,7 +2035,7 @@ version = "0.6.4"
1984
2035
  source = "registry+https://github.com/rust-lang/crates.io-index"
1985
2036
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1986
2037
  dependencies = [
1987
- "getrandom 0.2.9",
2038
+ "getrandom 0.2.10",
1988
2039
  ]
1989
2040
 
1990
2041
  [[package]]
@@ -2035,20 +2086,21 @@ version = "0.4.3"
2035
2086
  source = "registry+https://github.com/rust-lang/crates.io-index"
2036
2087
  checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2037
2088
  dependencies = [
2038
- "getrandom 0.2.9",
2089
+ "getrandom 0.2.10",
2039
2090
  "redox_syscall 0.2.16",
2040
2091
  "thiserror",
2041
2092
  ]
2042
2093
 
2043
2094
  [[package]]
2044
2095
  name = "regex"
2045
- version = "1.8.4"
2096
+ version = "1.9.1"
2046
2097
  source = "registry+https://github.com/rust-lang/crates.io-index"
2047
- checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
2098
+ checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
2048
2099
  dependencies = [
2049
2100
  "aho-corasick",
2050
2101
  "memchr",
2051
- "regex-syntax 0.7.2",
2102
+ "regex-automata 0.3.2",
2103
+ "regex-syntax 0.7.3",
2052
2104
  ]
2053
2105
 
2054
2106
  [[package]]
@@ -2060,6 +2112,17 @@ dependencies = [
2060
2112
  "regex-syntax 0.6.29",
2061
2113
  ]
2062
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
+
2063
2126
  [[package]]
2064
2127
  name = "regex-syntax"
2065
2128
  version = "0.6.29"
@@ -2068,9 +2131,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2068
2131
 
2069
2132
  [[package]]
2070
2133
  name = "regex-syntax"
2071
- version = "0.7.2"
2134
+ version = "0.7.3"
2072
2135
  source = "registry+https://github.com/rust-lang/crates.io-index"
2073
- checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
2136
+ checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
2074
2137
 
2075
2138
  [[package]]
2076
2139
  name = "reqwest"
@@ -2108,6 +2171,12 @@ dependencies = [
2108
2171
  "winreg 0.10.1",
2109
2172
  ]
2110
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
+
2111
2180
  [[package]]
2112
2181
  name = "rustc_version"
2113
2182
  version = "0.4.0"
@@ -2119,29 +2188,29 @@ dependencies = [
2119
2188
 
2120
2189
  [[package]]
2121
2190
  name = "rustix"
2122
- version = "0.37.19"
2191
+ version = "0.37.23"
2123
2192
  source = "registry+https://github.com/rust-lang/crates.io-index"
2124
- checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2193
+ checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
2125
2194
  dependencies = [
2126
2195
  "bitflags",
2127
2196
  "errno",
2128
2197
  "io-lifetimes",
2129
2198
  "libc",
2130
2199
  "linux-raw-sys",
2131
- "windows-sys 0.48.0",
2200
+ "windows-sys",
2132
2201
  ]
2133
2202
 
2134
2203
  [[package]]
2135
2204
  name = "rustversion"
2136
- version = "1.0.12"
2205
+ version = "1.0.13"
2137
2206
  source = "registry+https://github.com/rust-lang/crates.io-index"
2138
- checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
2207
+ checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f"
2139
2208
 
2140
2209
  [[package]]
2141
2210
  name = "ryu"
2142
- version = "1.0.13"
2211
+ version = "1.0.14"
2143
2212
  source = "registry+https://github.com/rust-lang/crates.io-index"
2144
- checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2213
+ checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
2145
2214
 
2146
2215
  [[package]]
2147
2216
  name = "safemem"
@@ -2201,51 +2270,51 @@ dependencies = [
2201
2270
 
2202
2271
  [[package]]
2203
2272
  name = "serde"
2204
- version = "1.0.163"
2273
+ version = "1.0.171"
2205
2274
  source = "registry+https://github.com/rust-lang/crates.io-index"
2206
- checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
2275
+ checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
2207
2276
  dependencies = [
2208
2277
  "serde_derive",
2209
2278
  ]
2210
2279
 
2211
2280
  [[package]]
2212
2281
  name = "serde_derive"
2213
- version = "1.0.163"
2282
+ version = "1.0.171"
2214
2283
  source = "registry+https://github.com/rust-lang/crates.io-index"
2215
- checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
2284
+ checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
2216
2285
  dependencies = [
2217
2286
  "proc-macro2",
2218
2287
  "quote",
2219
- "syn 2.0.18",
2288
+ "syn 2.0.25",
2220
2289
  ]
2221
2290
 
2222
2291
  [[package]]
2223
2292
  name = "serde_json"
2224
- version = "1.0.96"
2293
+ version = "1.0.100"
2225
2294
  source = "registry+https://github.com/rust-lang/crates.io-index"
2226
- checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2295
+ checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c"
2227
2296
  dependencies = [
2228
- "itoa 1.0.6",
2297
+ "itoa 1.0.8",
2229
2298
  "ryu",
2230
2299
  "serde",
2231
2300
  ]
2232
2301
 
2233
2302
  [[package]]
2234
2303
  name = "serde_repr"
2235
- version = "0.1.12"
2304
+ version = "0.1.14"
2236
2305
  source = "registry+https://github.com/rust-lang/crates.io-index"
2237
- checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab"
2306
+ checksum = "1d89a8107374290037607734c0b73a85db7ed80cae314b3c5791f192a496e731"
2238
2307
  dependencies = [
2239
2308
  "proc-macro2",
2240
2309
  "quote",
2241
- "syn 2.0.18",
2310
+ "syn 2.0.25",
2242
2311
  ]
2243
2312
 
2244
2313
  [[package]]
2245
2314
  name = "serde_spanned"
2246
- version = "0.6.2"
2315
+ version = "0.6.3"
2247
2316
  source = "registry+https://github.com/rust-lang/crates.io-index"
2248
- checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d"
2317
+ checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
2249
2318
  dependencies = [
2250
2319
  "serde",
2251
2320
  ]
@@ -2257,21 +2326,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
2326
  checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2258
2327
  dependencies = [
2259
2328
  "form_urlencoded",
2260
- "itoa 1.0.6",
2329
+ "itoa 1.0.8",
2261
2330
  "ryu",
2262
2331
  "serde",
2263
2332
  ]
2264
2333
 
2265
2334
  [[package]]
2266
2335
  name = "serde_with"
2267
- version = "2.3.3"
2336
+ version = "3.0.0"
2268
2337
  source = "registry+https://github.com/rust-lang/crates.io-index"
2269
- checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe"
2338
+ checksum = "9f02d8aa6e3c385bf084924f660ce2a3a6bd333ba55b35e8590b321f35d88513"
2270
2339
  dependencies = [
2271
- "base64 0.13.1",
2340
+ "base64 0.21.2",
2272
2341
  "chrono",
2273
2342
  "hex",
2274
- "indexmap",
2343
+ "indexmap 1.9.3",
2275
2344
  "serde",
2276
2345
  "serde_json",
2277
2346
  "serde_with_macros",
@@ -2280,14 +2349,14 @@ dependencies = [
2280
2349
 
2281
2350
  [[package]]
2282
2351
  name = "serde_with_macros"
2283
- version = "2.3.3"
2352
+ version = "3.0.0"
2284
2353
  source = "registry+https://github.com/rust-lang/crates.io-index"
2285
- checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f"
2354
+ checksum = "edc7d5d3932fb12ce722ee5e64dd38c504efba37567f0c402f6ca728c3b8b070"
2286
2355
  dependencies = [
2287
2356
  "darling",
2288
2357
  "proc-macro2",
2289
2358
  "quote",
2290
- "syn 2.0.18",
2359
+ "syn 2.0.25",
2291
2360
  ]
2292
2361
 
2293
2362
  [[package]]
@@ -2324,9 +2393,9 @@ dependencies = [
2324
2393
 
2325
2394
  [[package]]
2326
2395
  name = "sha2"
2327
- version = "0.10.6"
2396
+ version = "0.10.7"
2328
2397
  source = "registry+https://github.com/rust-lang/crates.io-index"
2329
- checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2398
+ checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
2330
2399
  dependencies = [
2331
2400
  "cfg-if",
2332
2401
  "cpufeatures",
@@ -2365,9 +2434,9 @@ dependencies = [
2365
2434
 
2366
2435
  [[package]]
2367
2436
  name = "smallvec"
2368
- version = "1.10.0"
2437
+ version = "1.11.0"
2369
2438
  source = "registry+https://github.com/rust-lang/crates.io-index"
2370
- checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2439
+ checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
2371
2440
 
2372
2441
  [[package]]
2373
2442
  name = "socket2"
@@ -2478,9 +2547,9 @@ dependencies = [
2478
2547
 
2479
2548
  [[package]]
2480
2549
  name = "syn"
2481
- version = "2.0.18"
2550
+ version = "2.0.25"
2482
2551
  source = "registry+https://github.com/rust-lang/crates.io-index"
2483
- checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e"
2552
+ checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
2484
2553
  dependencies = [
2485
2554
  "proc-macro2",
2486
2555
  "quote",
@@ -2489,9 +2558,9 @@ dependencies = [
2489
2558
 
2490
2559
  [[package]]
2491
2560
  name = "system-deps"
2492
- version = "6.1.0"
2561
+ version = "6.1.1"
2493
2562
  source = "registry+https://github.com/rust-lang/crates.io-index"
2494
- checksum = "e5fa6fb9ee296c0dc2df41a656ca7948546d061958115ddb0bcaae43ad0d17d2"
2563
+ checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3"
2495
2564
  dependencies = [
2496
2565
  "cfg-expr",
2497
2566
  "heck",
@@ -2560,15 +2629,15 @@ dependencies = [
2560
2629
 
2561
2630
  [[package]]
2562
2631
  name = "target-lexicon"
2563
- version = "0.12.7"
2632
+ version = "0.12.8"
2564
2633
  source = "registry+https://github.com/rust-lang/crates.io-index"
2565
- checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5"
2634
+ checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac"
2566
2635
 
2567
2636
  [[package]]
2568
2637
  name = "tauri"
2569
- version = "2.0.0-alpha.9"
2638
+ version = "2.0.0-alpha.10"
2570
2639
  source = "registry+https://github.com/rust-lang/crates.io-index"
2571
- checksum = "695b6c1cdf861002bc2ea17a53cf0669e62da5def6ffcbff02fa00c7515d40b4"
2640
+ checksum = "2e18377a75e314aa1d476896af881ed63f57a78ca84889fe63e69067f0de158d"
2572
2641
  dependencies = [
2573
2642
  "anyhow",
2574
2643
  "bytes",
@@ -2614,9 +2683,9 @@ dependencies = [
2614
2683
 
2615
2684
  [[package]]
2616
2685
  name = "tauri-build"
2617
- version = "2.0.0-alpha.5"
2686
+ version = "2.0.0-alpha.6"
2618
2687
  source = "registry+https://github.com/rust-lang/crates.io-index"
2619
- checksum = "34a5b16abedfa53fdb6ad4c68c41612e097dbfac1c18390fe6e4ded18d9ec28d"
2688
+ checksum = "a52990870fd043f1d3bd6719ae713ef2e0c50431334d7249f6ae8509d1b8c326"
2620
2689
  dependencies = [
2621
2690
  "anyhow",
2622
2691
  "cargo_toml",
@@ -2633,9 +2702,9 @@ dependencies = [
2633
2702
 
2634
2703
  [[package]]
2635
2704
  name = "tauri-codegen"
2636
- version = "2.0.0-alpha.5"
2705
+ version = "2.0.0-alpha.6"
2637
2706
  source = "registry+https://github.com/rust-lang/crates.io-index"
2638
- checksum = "62f03863ab7ecf1fea3a748c4a9ace7b0a6a2051b4ce10ae954ec546957fb529"
2707
+ checksum = "5c1f1611ab0896f2693163ba4e8f3e39c02a1b70cdca4314286b5e365a5e08c6"
2639
2708
  dependencies = [
2640
2709
  "base64 0.21.2",
2641
2710
  "brotli",
@@ -2659,9 +2728,9 @@ dependencies = [
2659
2728
 
2660
2729
  [[package]]
2661
2730
  name = "tauri-macros"
2662
- version = "2.0.0-alpha.5"
2731
+ version = "2.0.0-alpha.6"
2663
2732
  source = "registry+https://github.com/rust-lang/crates.io-index"
2664
- checksum = "74f9a2623fed6b5bc04f2e1344c88df6415617bd223599c60a4171630b63fb74"
2733
+ checksum = "22752425c6dd6f3a058f376db7371f1d5bac250e340d40ba6c97ecf7182eef29"
2665
2734
  dependencies = [
2666
2735
  "heck",
2667
2736
  "proc-macro2",
@@ -2684,9 +2753,9 @@ dependencies = [
2684
2753
 
2685
2754
  [[package]]
2686
2755
  name = "tauri-runtime"
2687
- version = "0.13.0-alpha.5"
2756
+ version = "0.13.0-alpha.6"
2688
2757
  source = "registry+https://github.com/rust-lang/crates.io-index"
2689
- checksum = "de05147581dd8cfdac638455029eb06c57fa64eb17eb03d5d7f229c571941cd9"
2758
+ checksum = "d7ce19f1309299bbc38ee9236307fad4943bd8fb09dd3fea5e9dd93c1d0898d6"
2690
2759
  dependencies = [
2691
2760
  "gtk",
2692
2761
  "http",
@@ -2705,9 +2774,9 @@ dependencies = [
2705
2774
 
2706
2775
  [[package]]
2707
2776
  name = "tauri-runtime-wry"
2708
- version = "0.13.0-alpha.5"
2777
+ version = "0.13.0-alpha.6"
2709
2778
  source = "registry+https://github.com/rust-lang/crates.io-index"
2710
- checksum = "7784048ef49a57ff32d55bf4ce89ec72fc97e3d4fdc68785d164b23965170e49"
2779
+ checksum = "1231be42085f3a8b150e615601f8a070bd16bf579771a5dafe2931970a05b518"
2711
2780
  dependencies = [
2712
2781
  "cocoa",
2713
2782
  "gtk",
@@ -2726,7 +2795,7 @@ dependencies = [
2726
2795
 
2727
2796
  [[package]]
2728
2797
  name = "tauri-ui"
2729
- version = "0.1.3"
2798
+ version = "0.1.0"
2730
2799
  dependencies = [
2731
2800
  "serde",
2732
2801
  "serde_json",
@@ -2737,12 +2806,13 @@ dependencies = [
2737
2806
 
2738
2807
  [[package]]
2739
2808
  name = "tauri-utils"
2740
- version = "2.0.0-alpha.5"
2809
+ version = "2.0.0-alpha.6"
2741
2810
  source = "registry+https://github.com/rust-lang/crates.io-index"
2742
- checksum = "58eca5e3b6714c6bd87052182ebb7d5392d551f478f994878f136f49d4e6d640"
2811
+ checksum = "2e2812e0cdfffb892c654555b2f1b8c84a035b4c56eb1646cb3eb5a9d8164d8e"
2743
2812
  dependencies = [
2744
2813
  "brotli",
2745
2814
  "ctor",
2815
+ "dunce",
2746
2816
  "glob",
2747
2817
  "heck",
2748
2818
  "html5ever",
@@ -2775,15 +2845,16 @@ dependencies = [
2775
2845
 
2776
2846
  [[package]]
2777
2847
  name = "tempfile"
2778
- version = "3.5.0"
2848
+ version = "3.6.0"
2779
2849
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
2850
+ checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
2781
2851
  dependencies = [
2852
+ "autocfg",
2782
2853
  "cfg-if",
2783
2854
  "fastrand",
2784
2855
  "redox_syscall 0.3.5",
2785
2856
  "rustix",
2786
- "windows-sys 0.45.0",
2857
+ "windows-sys",
2787
2858
  ]
2788
2859
 
2789
2860
  [[package]]
@@ -2805,22 +2876,22 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
2805
2876
 
2806
2877
  [[package]]
2807
2878
  name = "thiserror"
2808
- version = "1.0.40"
2879
+ version = "1.0.43"
2809
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2810
- checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2881
+ checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
2811
2882
  dependencies = [
2812
2883
  "thiserror-impl",
2813
2884
  ]
2814
2885
 
2815
2886
  [[package]]
2816
2887
  name = "thiserror-impl"
2817
- version = "1.0.40"
2888
+ version = "1.0.43"
2818
2889
  source = "registry+https://github.com/rust-lang/crates.io-index"
2819
- checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2890
+ checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
2820
2891
  dependencies = [
2821
2892
  "proc-macro2",
2822
2893
  "quote",
2823
- "syn 2.0.18",
2894
+ "syn 2.0.25",
2824
2895
  ]
2825
2896
 
2826
2897
  [[package]]
@@ -2835,11 +2906,11 @@ dependencies = [
2835
2906
 
2836
2907
  [[package]]
2837
2908
  name = "time"
2838
- version = "0.3.21"
2909
+ version = "0.3.23"
2839
2910
  source = "registry+https://github.com/rust-lang/crates.io-index"
2840
- checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
2911
+ checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446"
2841
2912
  dependencies = [
2842
- "itoa 1.0.6",
2913
+ "itoa 1.0.8",
2843
2914
  "serde",
2844
2915
  "time-core",
2845
2916
  "time-macros",
@@ -2853,9 +2924,9 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2853
2924
 
2854
2925
  [[package]]
2855
2926
  name = "time-macros"
2856
- version = "0.2.9"
2927
+ version = "0.2.10"
2857
2928
  source = "registry+https://github.com/rust-lang/crates.io-index"
2858
- checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
2929
+ checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4"
2859
2930
  dependencies = [
2860
2931
  "time-core",
2861
2932
  ]
@@ -2877,18 +2948,19 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2877
2948
 
2878
2949
  [[package]]
2879
2950
  name = "tokio"
2880
- version = "1.28.2"
2951
+ version = "1.29.1"
2881
2952
  source = "registry+https://github.com/rust-lang/crates.io-index"
2882
- checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2"
2953
+ checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
2883
2954
  dependencies = [
2884
2955
  "autocfg",
2956
+ "backtrace",
2885
2957
  "bytes",
2886
2958
  "libc",
2887
2959
  "mio",
2888
2960
  "num_cpus",
2889
2961
  "pin-project-lite",
2890
2962
  "socket2",
2891
- "windows-sys 0.48.0",
2963
+ "windows-sys",
2892
2964
  ]
2893
2965
 
2894
2966
  [[package]]
@@ -2907,9 +2979,9 @@ dependencies = [
2907
2979
 
2908
2980
  [[package]]
2909
2981
  name = "toml"
2910
- version = "0.7.4"
2982
+ version = "0.7.6"
2911
2983
  source = "registry+https://github.com/rust-lang/crates.io-index"
2912
- checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec"
2984
+ checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
2913
2985
  dependencies = [
2914
2986
  "serde",
2915
2987
  "serde_spanned",
@@ -2919,20 +2991,20 @@ dependencies = [
2919
2991
 
2920
2992
  [[package]]
2921
2993
  name = "toml_datetime"
2922
- version = "0.6.2"
2994
+ version = "0.6.3"
2923
2995
  source = "registry+https://github.com/rust-lang/crates.io-index"
2924
- checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f"
2996
+ checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2925
2997
  dependencies = [
2926
2998
  "serde",
2927
2999
  ]
2928
3000
 
2929
3001
  [[package]]
2930
3002
  name = "toml_edit"
2931
- version = "0.19.10"
3003
+ version = "0.19.12"
2932
3004
  source = "registry+https://github.com/rust-lang/crates.io-index"
2933
- checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739"
3005
+ checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78"
2934
3006
  dependencies = [
2935
- "indexmap",
3007
+ "indexmap 2.0.0",
2936
3008
  "serde",
2937
3009
  "serde_spanned",
2938
3010
  "toml_datetime",
@@ -2959,13 +3031,13 @@ dependencies = [
2959
3031
 
2960
3032
  [[package]]
2961
3033
  name = "tracing-attributes"
2962
- version = "0.1.24"
3034
+ version = "0.1.26"
2963
3035
  source = "registry+https://github.com/rust-lang/crates.io-index"
2964
- checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
3036
+ checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
2965
3037
  dependencies = [
2966
3038
  "proc-macro2",
2967
3039
  "quote",
2968
- "syn 2.0.18",
3040
+ "syn 2.0.25",
2969
3041
  ]
2970
3042
 
2971
3043
  [[package]]
@@ -3036,9 +3108,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
3036
3108
 
3037
3109
  [[package]]
3038
3110
  name = "unicode-ident"
3039
- version = "1.0.9"
3111
+ version = "1.0.10"
3040
3112
  source = "registry+https://github.com/rust-lang/crates.io-index"
3041
- checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
3113
+ checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
3042
3114
 
3043
3115
  [[package]]
3044
3116
  name = "unicode-normalization"
@@ -3075,11 +3147,11 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3075
3147
 
3076
3148
  [[package]]
3077
3149
  name = "uuid"
3078
- version = "1.3.3"
3150
+ version = "1.4.0"
3079
3151
  source = "registry+https://github.com/rust-lang/crates.io-index"
3080
- checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
3152
+ checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
3081
3153
  dependencies = [
3082
- "getrandom 0.2.9",
3154
+ "getrandom 0.2.10",
3083
3155
  ]
3084
3156
 
3085
3157
  [[package]]
@@ -3132,11 +3204,10 @@ dependencies = [
3132
3204
 
3133
3205
  [[package]]
3134
3206
  name = "want"
3135
- version = "0.3.0"
3207
+ version = "0.3.1"
3136
3208
  source = "registry+https://github.com/rust-lang/crates.io-index"
3137
- checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
3209
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3138
3210
  dependencies = [
3139
- "log",
3140
3211
  "try-lock",
3141
3212
  ]
3142
3213
 
@@ -3154,9 +3225,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3154
3225
 
3155
3226
  [[package]]
3156
3227
  name = "wasm-bindgen"
3157
- version = "0.2.86"
3228
+ version = "0.2.87"
3158
3229
  source = "registry+https://github.com/rust-lang/crates.io-index"
3159
- checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
3230
+ checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
3160
3231
  dependencies = [
3161
3232
  "cfg-if",
3162
3233
  "wasm-bindgen-macro",
@@ -3164,24 +3235,24 @@ dependencies = [
3164
3235
 
3165
3236
  [[package]]
3166
3237
  name = "wasm-bindgen-backend"
3167
- version = "0.2.86"
3238
+ version = "0.2.87"
3168
3239
  source = "registry+https://github.com/rust-lang/crates.io-index"
3169
- checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
3240
+ checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
3170
3241
  dependencies = [
3171
3242
  "bumpalo",
3172
3243
  "log",
3173
3244
  "once_cell",
3174
3245
  "proc-macro2",
3175
3246
  "quote",
3176
- "syn 2.0.18",
3247
+ "syn 2.0.25",
3177
3248
  "wasm-bindgen-shared",
3178
3249
  ]
3179
3250
 
3180
3251
  [[package]]
3181
3252
  name = "wasm-bindgen-futures"
3182
- version = "0.4.36"
3253
+ version = "0.4.37"
3183
3254
  source = "registry+https://github.com/rust-lang/crates.io-index"
3184
- checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e"
3255
+ checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
3185
3256
  dependencies = [
3186
3257
  "cfg-if",
3187
3258
  "js-sys",
@@ -3191,9 +3262,9 @@ dependencies = [
3191
3262
 
3192
3263
  [[package]]
3193
3264
  name = "wasm-bindgen-macro"
3194
- version = "0.2.86"
3265
+ version = "0.2.87"
3195
3266
  source = "registry+https://github.com/rust-lang/crates.io-index"
3196
- checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
3267
+ checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
3197
3268
  dependencies = [
3198
3269
  "quote",
3199
3270
  "wasm-bindgen-macro-support",
@@ -3201,22 +3272,22 @@ dependencies = [
3201
3272
 
3202
3273
  [[package]]
3203
3274
  name = "wasm-bindgen-macro-support"
3204
- version = "0.2.86"
3275
+ version = "0.2.87"
3205
3276
  source = "registry+https://github.com/rust-lang/crates.io-index"
3206
- checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
3277
+ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
3207
3278
  dependencies = [
3208
3279
  "proc-macro2",
3209
3280
  "quote",
3210
- "syn 2.0.18",
3281
+ "syn 2.0.25",
3211
3282
  "wasm-bindgen-backend",
3212
3283
  "wasm-bindgen-shared",
3213
3284
  ]
3214
3285
 
3215
3286
  [[package]]
3216
3287
  name = "wasm-bindgen-shared"
3217
- version = "0.2.86"
3288
+ version = "0.2.87"
3218
3289
  source = "registry+https://github.com/rust-lang/crates.io-index"
3219
- checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
3290
+ checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
3220
3291
 
3221
3292
  [[package]]
3222
3293
  name = "wasm-streams"
@@ -3233,9 +3304,9 @@ dependencies = [
3233
3304
 
3234
3305
  [[package]]
3235
3306
  name = "web-sys"
3236
- version = "0.3.63"
3307
+ version = "0.3.64"
3237
3308
  source = "registry+https://github.com/rust-lang/crates.io-index"
3238
- checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
3309
+ checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
3239
3310
  dependencies = [
3240
3311
  "js-sys",
3241
3312
  "wasm-bindgen",
@@ -3371,7 +3442,7 @@ version = "0.48.0"
3371
3442
  source = "registry+https://github.com/rust-lang/crates.io-index"
3372
3443
  checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3373
3444
  dependencies = [
3374
- "windows-targets 0.48.0",
3445
+ "windows-targets 0.48.1",
3375
3446
  ]
3376
3447
 
3377
3448
  [[package]]
@@ -3412,22 +3483,13 @@ version = "0.44.0"
3412
3483
  source = "registry+https://github.com/rust-lang/crates.io-index"
3413
3484
  checksum = "ee78911e3f4ce32c1ad9d3c7b0bd95389662ad8d8f1a3155688fed70bd96e2b6"
3414
3485
 
3415
- [[package]]
3416
- name = "windows-sys"
3417
- version = "0.45.0"
3418
- source = "registry+https://github.com/rust-lang/crates.io-index"
3419
- checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3420
- dependencies = [
3421
- "windows-targets 0.42.2",
3422
- ]
3423
-
3424
3486
  [[package]]
3425
3487
  name = "windows-sys"
3426
3488
  version = "0.48.0"
3427
3489
  source = "registry+https://github.com/rust-lang/crates.io-index"
3428
3490
  checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3429
3491
  dependencies = [
3430
- "windows-targets 0.48.0",
3492
+ "windows-targets 0.48.1",
3431
3493
  ]
3432
3494
 
3433
3495
  [[package]]
@@ -3447,9 +3509,9 @@ dependencies = [
3447
3509
 
3448
3510
  [[package]]
3449
3511
  name = "windows-targets"
3450
- version = "0.48.0"
3512
+ version = "0.48.1"
3451
3513
  source = "registry+https://github.com/rust-lang/crates.io-index"
3452
- checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
3514
+ checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
3453
3515
  dependencies = [
3454
3516
  "windows_aarch64_gnullvm 0.48.0",
3455
3517
  "windows_aarch64_msvc 0.48.0",
@@ -3552,9 +3614,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
3552
3614
 
3553
3615
  [[package]]
3554
3616
  name = "winnow"
3555
- version = "0.4.6"
3617
+ version = "0.4.9"
3556
3618
  source = "registry+https://github.com/rust-lang/crates.io-index"
3557
- checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699"
3619
+ checksum = "81a2094c43cc94775293eaa0e499fbc30048a6d824ac82c0351a8c0bf9112529"
3558
3620
  dependencies = [
3559
3621
  "memchr",
3560
3622
  ]