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