create-tauri-ui 0.1.5 → 0.2.0

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