stacks 0.51.0 → 0.52.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 (683) hide show
  1. package/README.md +20 -17
  2. package/api/nitro.config.ts +17 -0
  3. package/api/package.json +42 -0
  4. package/api/routes/index.ts +1 -0
  5. package/api/serverless.yml +11 -0
  6. package/auto-imports.d.ts +13 -18
  7. package/components/vue/main.ts +1 -0
  8. package/components/vue/package.json +1 -1
  9. package/components/web/package.json +1 -1
  10. package/core/actions/README.md +1 -1
  11. package/core/actions/build.config.ts +13 -0
  12. package/core/actions/node_modules/.bin/markdown-it +2 -2
  13. package/core/actions/node_modules/.bin/unbuild +17 -0
  14. package/core/actions/package.json +214 -13
  15. package/core/actions/src/build/core.ts +6 -0
  16. package/core/actions/src/clean.ts +9 -19
  17. package/core/actions/src/deploy/domains.ts +8 -0
  18. package/core/actions/src/deploy.ts +8 -0
  19. package/core/actions/src/dev/docs.ts +5 -0
  20. package/core/actions/src/{dev.ts → dev/index.ts} +0 -25
  21. package/core/actions/src/fresh.ts +1 -1
  22. package/core/actions/src/{generate-component-meta.ts → generate/component-meta.ts} +1 -1
  23. package/core/actions/src/{generate-ide-helpers.ts → generate/ide-helpers.ts} +2 -1
  24. package/core/actions/src/{generate.ts → generate/index.ts} +18 -3
  25. package/core/actions/src/{generate-lib-entries.ts → generate/lib-entries.ts} +1 -1
  26. package/core/actions/src/{generate-package-jsons.ts → generate/package-jsons.ts} +1 -1
  27. package/core/actions/src/{generate-vscode-custom-data.ts → generate/vscode-custom-data.ts} +1 -1
  28. package/core/actions/src/{generate-vue-compat.ts → generate/vue-compat.ts} +1 -1
  29. package/core/actions/src/helpers/lib-entries.ts +7 -6
  30. package/core/actions/src/helpers/package-json.ts +9 -9
  31. package/core/actions/src/helpers/utils.ts +21 -25
  32. package/core/actions/src/helpers/vscode-custom-data.ts +1 -1
  33. package/core/actions/src/key-generate.ts +2 -2
  34. package/core/actions/src/make.ts +63 -19
  35. package/core/actions/src/migrate.ts +3 -0
  36. package/core/actions/src/preinstall.ts +2 -2
  37. package/core/actions/src/release.ts +4 -3
  38. package/core/actions/src/seed.ts +3 -0
  39. package/core/actions/src/tinker.ts +9 -0
  40. package/core/actions/src/upgrade/framework.ts +29 -0
  41. package/core/actions/src/upgrade/index.ts +27 -0
  42. package/core/actions/src/upgrade/node.ts +4 -0
  43. package/core/actions/src/upgrade/package-manager.ts +4 -0
  44. package/core/actions/src/upgrade.ts +75 -0
  45. package/core/ai/README.md +1 -1
  46. package/core/ai/build.config.ts +13 -0
  47. package/core/ai/package.json +15 -12
  48. package/core/alias/README.md +1 -1
  49. package/core/alias/build.config.ts +13 -0
  50. package/core/alias/package.json +11 -11
  51. package/core/alias/src/index.ts +27 -10
  52. package/core/{drivers → analytics}/README.md +18 -9
  53. package/core/analytics/build.config.ts +13 -0
  54. package/core/analytics/package.json +64 -0
  55. package/core/arrays/README.md +1 -1
  56. package/core/arrays/build.config.ts +13 -0
  57. package/core/arrays/package.json +13 -12
  58. package/core/arrays/src/index.ts +4 -0
  59. package/core/auth/README.md +1 -1
  60. package/core/auth/build.config.ts +13 -0
  61. package/core/auth/package.json +11 -12
  62. package/{buddy → core/buddy}/README.md +19 -16
  63. package/core/buddy/build.config.ts +16 -0
  64. package/core/buddy/package.json +127 -0
  65. package/core/buddy/src/cli.ts +96 -0
  66. package/{buddy → core/buddy}/src/commands/add.ts +6 -11
  67. package/{buddy → core/buddy}/src/commands/build.ts +22 -31
  68. package/{buddy → core/buddy}/src/commands/changelog.ts +5 -6
  69. package/core/buddy/src/commands/clean.ts +30 -0
  70. package/{buddy → core/buddy}/src/commands/commit.ts +0 -2
  71. package/{buddy → core/buddy}/src/commands/create.ts +4 -6
  72. package/core/buddy/src/commands/deploy.ts +30 -0
  73. package/{buddy → core/buddy}/src/commands/dev.ts +42 -26
  74. package/{buddy → core/buddy}/src/commands/example.ts +8 -12
  75. package/{buddy → core/buddy}/src/commands/fresh.ts +3 -5
  76. package/{buddy → core/buddy}/src/commands/generate.ts +19 -22
  77. package/{buddy → core/buddy}/src/commands/index.ts +7 -1
  78. package/core/buddy/src/commands/inspire.ts +25 -0
  79. package/{buddy → core/buddy}/src/commands/key.ts +6 -7
  80. package/{buddy → core/buddy}/src/commands/lint.ts +10 -11
  81. package/{buddy → core/buddy}/src/commands/make.ts +55 -47
  82. package/core/buddy/src/commands/migrate.ts +32 -0
  83. package/{buddy → core/buddy}/src/commands/onboarding.ts +6 -5
  84. package/{buddy → core/buddy}/src/commands/preinstall.ts +0 -2
  85. package/{buddy → core/buddy}/src/commands/prepublish.ts +0 -2
  86. package/{buddy → core/buddy}/src/commands/release.ts +3 -3
  87. package/core/buddy/src/commands/seed.ts +31 -0
  88. package/{buddy → core/buddy}/src/commands/setting.ts +6 -5
  89. package/{buddy → core/buddy}/src/commands/setup.ts +0 -3
  90. package/{buddy → core/buddy}/src/commands/test.ts +35 -35
  91. package/core/buddy/src/commands/tinker.ts +29 -0
  92. package/{buddy → core/buddy}/src/commands/types.ts +0 -3
  93. package/core/buddy/src/commands/upgrade.ts +141 -0
  94. package/core/buddy/src/commands/version.ts +31 -0
  95. package/{buddy → core/buddy}/src/index.ts +2 -1
  96. package/core/build/README.md +1 -1
  97. package/core/build/build.config.ts +13 -0
  98. package/core/build/node_modules/.bin/unbuild +4 -4
  99. package/core/build/node_modules/.bin/vite +4 -4
  100. package/core/build/node_modules/.bin/vite-ssg +4 -4
  101. package/core/build/node_modules/.bin/vue-docgen-web-types +4 -4
  102. package/core/build/package.json +26 -24
  103. package/core/build/src/desktop.ts +141 -11
  104. package/core/build/src/pages.ts +1 -0
  105. package/core/build/src/stacks.ts +11 -9
  106. package/core/build/web-types.config.cjs +1 -0
  107. package/core/cache/README.md +1 -1
  108. package/core/cache/build.config.ts +13 -0
  109. package/core/cache/package.json +30 -15
  110. package/core/cache/src/drivers/dynamodb.ts +119 -117
  111. package/core/cache/src/drivers/memcached.ts +15 -14
  112. package/core/cache/src/drivers/redis.ts +7 -4
  113. package/core/cache/tests/Redis.test.ts +1 -0
  114. package/core/chat/README.md +2 -1
  115. package/core/chat/build.config.ts +13 -0
  116. package/core/chat/package.json +16 -16
  117. package/core/chat/src/drivers/slack.ts +20 -18
  118. package/core/chat/src/drivers/teams.ts +24 -0
  119. package/core/chat/src/index.ts +1 -0
  120. package/core/cli/README.md +2 -2
  121. package/core/cli/build.config.ts +14 -0
  122. package/core/cli/package.json +16 -14
  123. package/core/cli/src/actions/install.ts +3 -3
  124. package/core/cli/src/command.ts +2 -7
  125. package/core/cli/src/console.ts +2 -3
  126. package/core/cli/src/index.ts +1 -0
  127. package/core/cli/src/parse.ts +99 -0
  128. package/core/cli/src/run.ts +35 -18
  129. package/core/cloud/README.md +1 -1
  130. package/core/cloud/build.config.ts +13 -0
  131. package/core/cloud/package.json +11 -12
  132. package/core/collections/README.md +1 -1
  133. package/core/collections/build.config.ts +13 -0
  134. package/core/collections/package.json +12 -13
  135. package/core/config/README.md +28 -10
  136. package/core/config/build.config.ts +40 -4
  137. package/core/config/package.json +20 -19
  138. package/core/config/src/defaults.ts +22 -0
  139. package/core/config/src/index.ts +3 -19
  140. package/core/config/src/stacks.ts +42 -0
  141. package/core/database/README.md +1 -1
  142. package/core/database/build.config.ts +17 -0
  143. package/core/database/package.json +19 -14
  144. package/core/database/src/factory/index.ts +16 -62
  145. package/core/database/src/migrations/index.ts +145 -3
  146. package/core/database/src/seeder/index.ts +75 -6
  147. package/core/datetime/README.md +1 -1
  148. package/core/datetime/build.config.ts +14 -0
  149. package/core/datetime/package.json +11 -12
  150. package/core/datetime/src/index.ts +1 -1
  151. package/core/desktop/README.md +1 -1
  152. package/core/desktop/build.config.ts +13 -0
  153. package/core/desktop/node_modules/.bin/tauri +4 -4
  154. package/core/desktop/package.json +15 -16
  155. package/core/development/README.md +27 -0
  156. package/core/development/build.config.ts +13 -0
  157. package/core/development/node_modules/.bin/tsc +17 -0
  158. package/core/development/node_modules/.bin/tsserver +17 -0
  159. package/core/development/node_modules/.bin/tsx +17 -0
  160. package/core/development/node_modules/.bin/unbuild +17 -0
  161. package/core/{x-ray → development}/package.json +32 -33
  162. package/core/development/src/index.ts +2 -0
  163. package/core/docs/README.md +1 -1
  164. package/core/docs/build.config.ts +15 -0
  165. package/core/docs/node_modules/.bin/vitepress +4 -4
  166. package/core/docs/package.json +14 -13
  167. package/core/docs/src/index.ts +3 -2
  168. package/core/domains/README.md +1 -1
  169. package/core/domains/build.config.ts +13 -0
  170. package/core/domains/package.json +11 -11
  171. package/core/email/README.md +1 -1
  172. package/core/email/build.config.ts +14 -0
  173. package/core/email/node_modules/.bin/maizzle +4 -4
  174. package/core/email/package.json +29 -24
  175. package/core/email/src/actions/send.ts +1 -1
  176. package/core/email/src/drivers/emailjs.ts +10 -8
  177. package/core/email/src/drivers/mailgun.ts +8 -6
  178. package/core/email/src/drivers/mailjet.ts +7 -5
  179. package/core/email/src/drivers/mandrill.ts +6 -4
  180. package/core/email/src/drivers/netcore.ts +6 -4
  181. package/core/email/src/drivers/nodemailer.ts +10 -8
  182. package/core/email/src/drivers/postmark.ts +6 -4
  183. package/core/email/src/drivers/sendgrid.ts +7 -5
  184. package/core/email/src/drivers/ses.ts +18 -15
  185. package/core/error-handling/README.md +1 -1
  186. package/core/error-handling/build.config.ts +14 -0
  187. package/core/error-handling/package.json +14 -12
  188. package/core/error-handling/src/index.ts +1 -3
  189. package/core/events/README.md +1 -1
  190. package/core/events/package.json +12 -12
  191. package/core/events/src/index.ts +3 -2
  192. package/core/faker/README.md +62 -0
  193. package/core/faker/build.config.ts +13 -0
  194. package/{pages → core/faker}/package.json +22 -22
  195. package/core/faker/src/index.ts +1 -0
  196. package/core/git/README.md +1 -1
  197. package/core/git/build.config.ts +13 -0
  198. package/core/git/node_modules/.bin/bumpp +4 -4
  199. package/core/git/node_modules/.bin/changelogen +4 -4
  200. package/core/git/node_modules/.bin/commitizen +2 -2
  201. package/core/git/node_modules/.bin/cz +2 -2
  202. package/core/git/node_modules/.bin/giget +4 -4
  203. package/core/git/node_modules/.bin/git-cz +2 -2
  204. package/core/git/node_modules/.bin/simple-git-hooks +2 -2
  205. package/core/git/package.json +15 -16
  206. package/core/health/README.md +1 -1
  207. package/core/health/build.config.ts +13 -0
  208. package/core/health/package.json +11 -12
  209. package/core/lint/README.md +1 -1
  210. package/core/lint/build.config.ts +13 -0
  211. package/core/lint/node_modules/.bin/eslint +4 -4
  212. package/core/lint/node_modules/.bin/lint-staged +4 -4
  213. package/core/lint/node_modules/.bin/publint +17 -0
  214. package/core/lint/package.json +16 -16
  215. package/core/logging/README.md +1 -1
  216. package/core/logging/build.config.ts +15 -0
  217. package/core/logging/node_modules/.bin/tsc +4 -4
  218. package/core/logging/node_modules/.bin/tsserver +4 -4
  219. package/core/logging/node_modules/.bin/tsx +17 -0
  220. package/core/logging/node_modules/.bin/unbuild +17 -0
  221. package/core/logging/package.json +19 -11
  222. package/core/logging/src/index.ts +4 -8
  223. package/core/modules/README.md +1 -1
  224. package/core/modules/build.config.ts +13 -0
  225. package/core/modules/package.json +19 -11
  226. package/core/notifications/README.md +1 -1
  227. package/core/notifications/build.config.ts +0 -1
  228. package/core/notifications/node_modules/.bin/maizzle +4 -4
  229. package/core/notifications/package.json +33 -33
  230. package/core/notifications/src/index.ts +13 -7
  231. package/core/notifications/src/tailwind.config.ts +3 -3
  232. package/core/notifications/src/utils/config.ts +2 -2
  233. package/core/notifications/tests/email/Mailgun.test.ts +1 -1
  234. package/core/objects/README.md +1 -1
  235. package/core/objects/build.config.ts +13 -0
  236. package/core/objects/package.json +14 -13
  237. package/core/{cloud/dist/actions → orm}/README.md +14 -19
  238. package/core/orm/build.config.ts +15 -0
  239. package/core/{drivers → orm}/package.json +18 -19
  240. package/core/orm/src/index.ts +43 -0
  241. package/core/pages/build.config.ts +13 -0
  242. package/core/pages/package.json +16 -14
  243. package/core/pages/src/index.ts +25 -5
  244. package/core/path/README.md +1 -1
  245. package/core/{tables → path}/build.config.ts +2 -5
  246. package/core/path/package.json +13 -11
  247. package/core/path/src/index.ts +55 -13
  248. package/core/payments/README.md +1 -1
  249. package/core/payments/build.config.ts +13 -0
  250. package/core/payments/package.json +18 -12
  251. package/core/payments/src/drivers/stripe.ts +136 -0
  252. package/core/payments/src/index.ts +1 -1
  253. package/core/push/README.md +1 -1
  254. package/core/push/build.config.ts +13 -0
  255. package/core/push/package.json +13 -16
  256. package/core/push/src/drivers/expo.ts +18 -16
  257. package/core/push/src/drivers/fcm.ts +18 -16
  258. package/core/{x-ray → query-builder}/README.md +14 -21
  259. package/core/query-builder/build.config.ts +13 -0
  260. package/core/query-builder/package.json +56 -0
  261. package/core/query-builder/src/index.ts +1 -0
  262. package/core/query-builder/src/kysely.ts +37 -0
  263. package/core/queue/README.md +1 -1
  264. package/core/queue/build.config.ts +13 -0
  265. package/core/queue/package.json +11 -12
  266. package/core/realtime/README.md +1 -1
  267. package/core/realtime/build.config.ts +13 -0
  268. package/core/realtime/package.json +11 -12
  269. package/core/router/README.md +1 -1
  270. package/core/router/build.config.ts +13 -0
  271. package/core/router/package.json +12 -13
  272. package/core/router/src/index.ts +4 -3
  273. package/core/scheduler/README.md +137 -0
  274. package/core/scheduler/build.config.ts +13 -0
  275. package/core/{dashboard → scheduler}/package.json +20 -21
  276. package/core/scheduler/src/index.ts +120 -0
  277. package/core/scheduler/tests/example.test.ts +7 -0
  278. package/core/search-engine/README.md +1 -1
  279. package/core/search-engine/build.config.ts +13 -0
  280. package/core/search-engine/package.json +16 -15
  281. package/core/search-engine/src/drivers/meilisearch.ts +3 -1
  282. package/core/search-engine/src/index.ts +4 -2
  283. package/core/security/README.md +1 -1
  284. package/core/security/build.config.ts +13 -0
  285. package/core/security/package.json +12 -13
  286. package/core/server/README.md +1 -1
  287. package/core/server/build.config.ts +13 -0
  288. package/core/server/node_modules/.bin/nitro +4 -4
  289. package/core/server/node_modules/.bin/nitropack +4 -4
  290. package/core/server/node_modules/.bin/vite +4 -4
  291. package/core/server/package.json +13 -13
  292. package/core/server/src/index.ts +1 -1
  293. package/core/server/src/nitro.config.ts +1 -0
  294. package/core/signals/README.md +105 -0
  295. package/core/signals/build.config.ts +13 -0
  296. package/core/signals/package.json +55 -0
  297. package/core/signals/src/index.ts +1 -0
  298. package/core/signals/tests/example.test.ts +7 -0
  299. package/core/{cloud/src/actions → slug}/README.md +11 -5
  300. package/core/slug/build.config.ts +13 -0
  301. package/core/slug/package.json +55 -0
  302. package/core/slug/src/index.ts +56 -0
  303. package/core/slug/tests/example.test.ts +7 -0
  304. package/core/sms/README.md +2 -1
  305. package/core/sms/build.config.ts +13 -0
  306. package/core/sms/package.json +22 -22
  307. package/core/sms/src/drivers/gupshup.ts +3 -3
  308. package/core/sms/src/drivers/nexmo.ts +4 -4
  309. package/core/sms/src/drivers/plivo.ts +4 -4
  310. package/core/sms/src/drivers/sms77.ts +3 -3
  311. package/core/sms/src/drivers/sns.ts +4 -4
  312. package/core/sms/src/drivers/telnyx.ts +4 -4
  313. package/core/sms/src/drivers/termii.ts +3 -3
  314. package/core/sms/src/drivers/twilio.ts +4 -4
  315. package/core/storage/README.md +1 -1
  316. package/core/storage/build.config.ts +13 -0
  317. package/core/storage/package.json +14 -14
  318. package/core/storage/src/index.ts +4 -3
  319. package/core/strings/README.md +7 -6
  320. package/core/strings/package.json +12 -12
  321. package/core/strings/src/case.ts +1 -0
  322. package/core/strings/src/pluralize.ts +5 -1
  323. package/core/strings/src/utils.ts +48 -6
  324. package/core/testing/README.md +1 -1
  325. package/core/testing/build.config.ts +13 -0
  326. package/core/testing/node_modules/.bin/playwright +4 -4
  327. package/core/testing/node_modules/.bin/tsc +4 -4
  328. package/core/testing/node_modules/.bin/tsserver +4 -4
  329. package/core/testing/node_modules/.bin/unbuild +17 -0
  330. package/core/testing/node_modules/.bin/vitest +4 -4
  331. package/core/testing/package.json +16 -15
  332. package/core/tinker/README.md +61 -0
  333. package/core/tinker/node_modules/.bin/tsx +17 -0
  334. package/core/tinker/package.json +45 -0
  335. package/core/tinker/tinker.js +2 -0
  336. package/core/types/README.md +1 -1
  337. package/core/types/build.config.ts +13 -0
  338. package/core/types/node_modules/.bin/markdown-it +2 -2
  339. package/core/types/node_modules/.bin/vite +17 -0
  340. package/core/types/node_modules/.bin/vite-ssg +4 -4
  341. package/core/types/node_modules/.bin/vitepress +4 -4
  342. package/core/types/package.json +33 -24
  343. package/core/types/src/app.ts +4 -16
  344. package/core/types/src/auto-imports.ts +1 -3
  345. package/core/types/src/build.ts +1 -1
  346. package/core/types/src/cache.ts +78 -0
  347. package/core/types/src/cdn.ts +15 -0
  348. package/core/types/src/cli.ts +91 -70
  349. package/core/types/src/components.ts +1 -3
  350. package/core/types/src/cron-jobs.ts +17 -0
  351. package/core/types/src/database.ts +39 -2
  352. package/core/types/src/deploy.ts +8 -11
  353. package/core/types/src/dns.ts +49 -0
  354. package/core/types/src/docs.ts +2 -0
  355. package/core/types/src/events.ts +1 -1
  356. package/core/types/src/git.ts +1 -1
  357. package/core/types/src/index.ts +10 -2
  358. package/core/types/src/library.ts +6 -1
  359. package/core/types/src/model.ts +46 -0
  360. package/core/types/src/notifications.ts +151 -117
  361. package/core/types/src/payments.ts +63 -0
  362. package/core/types/src/reactivity.ts +1 -3
  363. package/core/types/src/router.ts +30 -0
  364. package/core/types/src/search-engine.ts +56 -8
  365. package/core/types/src/ssg.ts +1 -1
  366. package/core/types/src/stacks.ts +203 -0
  367. package/core/types/src/ui.ts +1 -1
  368. package/core/ui/README.md +1 -1
  369. package/core/ui/build.config.ts +13 -0
  370. package/core/ui/node_modules/.bin/vue-tsc +4 -4
  371. package/core/ui/package.json +23 -20
  372. package/core/ui/src/index.ts +5 -2
  373. package/core/ui/src/unocss.config.ts +47 -0
  374. package/core/ui/src/unocss.ts +3 -3
  375. package/core/utils/build.config.ts +13 -0
  376. package/core/utils/node_modules/.bin/rimraf +4 -4
  377. package/core/utils/node_modules/.bin/semver +17 -0
  378. package/core/utils/package.json +45 -21
  379. package/core/utils/src/base.ts +11 -6
  380. package/core/utils/src/config.ts +97 -0
  381. package/core/utils/src/debounce.ts +1 -0
  382. package/core/utils/src/guards.ts +3 -3
  383. package/core/utils/src/helpers.ts +30 -22
  384. package/core/utils/src/index.ts +7 -4
  385. package/core/utils/src/is.ts +80 -11
  386. package/core/utils/src/promise.ts +1 -1
  387. package/core/utils/src/throttle.ts +45 -0
  388. package/core/validation/README.md +1 -1
  389. package/core/validation/build.config.ts +13 -0
  390. package/core/validation/package.json +13 -14
  391. package/core/validation/src/index.ts +26 -0
  392. package/docs/.vitepress/config.ts +9 -0
  393. package/docs/README.md +13 -0
  394. package/docs/node_modules/.bin/rimraf +17 -0
  395. package/docs/node_modules/.bin/vitepress +17 -0
  396. package/docs/package.json +46 -0
  397. package/package.json +75 -35
  398. package/pages/desktop/.gitignore +24 -0
  399. package/pages/desktop/README.md +73 -0
  400. package/{core/x-ray → pages/desktop}/index.html +1 -1
  401. package/pages/desktop/package.json +26 -0
  402. package/pages/desktop/public/favicon.svg +1 -0
  403. package/pages/desktop/src/.gitignore +3 -0
  404. package/pages/desktop/src/Cargo.lock +3599 -0
  405. package/pages/desktop/src/Cargo.toml +28 -0
  406. package/pages/desktop/src/build.rs +3 -0
  407. package/pages/desktop/src/icons/128x128.png +0 -0
  408. package/pages/desktop/src/icons/128x128@2x.png +0 -0
  409. package/pages/desktop/src/icons/32x32.png +0 -0
  410. package/pages/desktop/src/icons/Square107x107Logo.png +0 -0
  411. package/pages/desktop/src/icons/Square142x142Logo.png +0 -0
  412. package/pages/desktop/src/icons/Square150x150Logo.png +0 -0
  413. package/pages/desktop/src/icons/Square284x284Logo.png +0 -0
  414. package/pages/desktop/src/icons/Square30x30Logo.png +0 -0
  415. package/pages/desktop/src/icons/Square310x310Logo.png +0 -0
  416. package/pages/desktop/src/icons/Square44x44Logo.png +0 -0
  417. package/pages/desktop/src/icons/Square71x71Logo.png +0 -0
  418. package/pages/desktop/src/icons/Square89x89Logo.png +0 -0
  419. package/pages/desktop/src/icons/StoreLogo.png +0 -0
  420. package/pages/desktop/src/icons/icon.icns +0 -0
  421. package/pages/desktop/src/icons/icon.ico +0 -0
  422. package/pages/desktop/src/icons/icon.png +0 -0
  423. package/pages/desktop/src/src/main.rs +10 -0
  424. package/pages/desktop/src/tauri.conf.json +73 -0
  425. package/simple-git-hooks.cjs +1 -0
  426. package/tsconfig.json +33 -12
  427. package/vitest.config.ts +2 -2
  428. package/buddy/bin/stacks.mjs +0 -4
  429. package/buddy/build.config.ts +0 -17
  430. package/buddy/node_modules/.bin/only-allow +0 -17
  431. package/buddy/node_modules/.bin/tsc +0 -17
  432. package/buddy/node_modules/.bin/tsserver +0 -17
  433. package/buddy/node_modules/.bin/unbuild +0 -17
  434. package/buddy/package.json +0 -194
  435. package/buddy/src/cli.ts +0 -66
  436. package/buddy/src/commands/clean.ts +0 -20
  437. package/buddy/src/commands/update.ts +0 -115
  438. package/core/actions/node_modules/.bin/esno +0 -17
  439. package/core/actions/node_modules/.bin/mkdist +0 -17
  440. package/core/actions/node_modules/.bin/tsc +0 -17
  441. package/core/actions/node_modules/.bin/tsserver +0 -17
  442. package/core/actions/src/build-core.ts +0 -7
  443. package/core/actions/src/fix-lint-issues.ts +0 -4
  444. package/core/actions/src/generate-onboarding.ts +0 -3
  445. package/core/actions/src/update.ts +0 -149
  446. package/core/ai/node_modules/.bin/mkdist +0 -17
  447. package/core/ai/node_modules/.bin/tsc +0 -17
  448. package/core/ai/node_modules/.bin/tsserver +0 -17
  449. package/core/alias/node_modules/.bin/mkdist +0 -17
  450. package/core/alias/node_modules/.bin/tsc +0 -17
  451. package/core/alias/node_modules/.bin/tsserver +0 -17
  452. package/core/arrays/node_modules/.bin/mkdist +0 -17
  453. package/core/arrays/node_modules/.bin/tsc +0 -17
  454. package/core/arrays/node_modules/.bin/tsserver +0 -17
  455. package/core/auth/node_modules/.bin/mkdist +0 -17
  456. package/core/auth/node_modules/.bin/tsc +0 -17
  457. package/core/auth/node_modules/.bin/tsserver +0 -17
  458. package/core/build/node_modules/.bin/mkdist +0 -17
  459. package/core/build/node_modules/.bin/tsc +0 -17
  460. package/core/build/node_modules/.bin/tsserver +0 -17
  461. package/core/cache/node_modules/.bin/mkdist +0 -17
  462. package/core/cache/node_modules/.bin/tsc +0 -17
  463. package/core/cache/node_modules/.bin/tsserver +0 -17
  464. package/core/chat/node_modules/.bin/mkdist +0 -17
  465. package/core/chat/node_modules/.bin/tsc +0 -17
  466. package/core/chat/node_modules/.bin/tsserver +0 -17
  467. package/core/cli/node_modules/.bin/esno +0 -17
  468. package/core/cli/node_modules/.bin/mkdist +0 -17
  469. package/core/cloud/node_modules/.bin/mkdist +0 -17
  470. package/core/cloud/node_modules/.bin/tsc +0 -17
  471. package/core/cloud/node_modules/.bin/tsserver +0 -17
  472. package/core/collections/node_modules/.bin/mkdist +0 -17
  473. package/core/collections/node_modules/.bin/tsc +0 -17
  474. package/core/collections/node_modules/.bin/tsserver +0 -17
  475. package/core/config/node_modules/.bin/mkdist +0 -17
  476. package/core/config/node_modules/.bin/tsc +0 -17
  477. package/core/config/node_modules/.bin/tsserver +0 -17
  478. package/core/config/node_modules/.bin/unbuild +0 -17
  479. package/core/config/src/helpers.ts +0 -30
  480. package/core/dashboard/README.md +0 -74
  481. package/core/dashboard/node_modules/.bin/mkdist +0 -17
  482. package/core/database/node_modules/.bin/mkdist +0 -17
  483. package/core/database/node_modules/.bin/tsc +0 -17
  484. package/core/database/node_modules/.bin/tsserver +0 -17
  485. package/core/datetime/node_modules/.bin/mkdist +0 -17
  486. package/core/datetime/node_modules/.bin/tsc +0 -17
  487. package/core/datetime/node_modules/.bin/tsserver +0 -17
  488. package/core/desktop/node_modules/.bin/mkdist +0 -17
  489. package/core/desktop/node_modules/.bin/tsc +0 -17
  490. package/core/desktop/node_modules/.bin/tsserver +0 -17
  491. package/core/docs/node_modules/.bin/mkdist +0 -17
  492. package/core/docs/node_modules/.bin/tsc +0 -17
  493. package/core/docs/node_modules/.bin/tsserver +0 -17
  494. package/core/domains/node_modules/.bin/mkdist +0 -17
  495. package/core/domains/node_modules/.bin/tsc +0 -17
  496. package/core/domains/node_modules/.bin/tsserver +0 -17
  497. package/core/drivers/node_modules/.bin/mkdist +0 -17
  498. package/core/drivers/node_modules/.bin/tsc +0 -17
  499. package/core/drivers/node_modules/.bin/tsserver +0 -17
  500. package/core/drivers/src/index.ts +0 -10
  501. package/core/email/dist/utils/template.html +0 -8
  502. package/core/email/node_modules/.bin/mkdist +0 -17
  503. package/core/email/node_modules/.bin/tsc +0 -17
  504. package/core/email/node_modules/.bin/tsserver +0 -17
  505. package/core/error-handling/node_modules/.bin/mkdist +0 -17
  506. package/core/error-handling/node_modules/.bin/tsc +0 -17
  507. package/core/error-handling/node_modules/.bin/tsserver +0 -17
  508. package/core/events/node_modules/.bin/mkdist +0 -17
  509. package/core/events/node_modules/.bin/tsc +0 -17
  510. package/core/events/node_modules/.bin/tsserver +0 -17
  511. package/core/git/node_modules/.bin/mkdist +0 -17
  512. package/core/git/node_modules/.bin/tsc +0 -17
  513. package/core/git/node_modules/.bin/tsserver +0 -17
  514. package/core/health/node_modules/.bin/mkdist +0 -17
  515. package/core/health/node_modules/.bin/tsc +0 -17
  516. package/core/health/node_modules/.bin/tsserver +0 -17
  517. package/core/lint/node_modules/.bin/mkdist +0 -17
  518. package/core/lint/node_modules/.bin/tsc +0 -17
  519. package/core/lint/node_modules/.bin/tsserver +0 -17
  520. package/core/logging/debug-test.ts +0 -8
  521. package/core/logging/node_modules/.bin/mkdist +0 -17
  522. package/core/modules/node_modules/.bin/mkdist +0 -17
  523. package/core/modules/node_modules/.bin/tsc +0 -17
  524. package/core/modules/node_modules/.bin/tsserver +0 -17
  525. package/core/notifications/node_modules/.bin/mkdist +0 -17
  526. package/core/notifications/node_modules/.bin/tsc +0 -17
  527. package/core/notifications/node_modules/.bin/tsserver +0 -17
  528. package/core/notifications/node_modules/.bin/unbuild +0 -17
  529. package/core/objects/node_modules/.bin/mkdist +0 -17
  530. package/core/objects/node_modules/.bin/tsc +0 -17
  531. package/core/objects/node_modules/.bin/tsserver +0 -17
  532. package/core/pages/node_modules/.bin/mkdist +0 -17
  533. package/core/pages/node_modules/.bin/tsc +0 -17
  534. package/core/pages/node_modules/.bin/tsserver +0 -17
  535. package/core/path/node_modules/.bin/mkdist +0 -17
  536. package/core/path/node_modules/.bin/tsc +0 -17
  537. package/core/path/node_modules/.bin/tsserver +0 -17
  538. package/core/payments/node_modules/.bin/mkdist +0 -17
  539. package/core/payments/node_modules/.bin/tsc +0 -17
  540. package/core/payments/node_modules/.bin/tsserver +0 -17
  541. package/core/push/node_modules/.bin/mkdist +0 -17
  542. package/core/push/node_modules/.bin/tsc +0 -17
  543. package/core/push/node_modules/.bin/tsserver +0 -17
  544. package/core/queue/node_modules/.bin/mkdist +0 -17
  545. package/core/queue/node_modules/.bin/tsc +0 -17
  546. package/core/queue/node_modules/.bin/tsserver +0 -17
  547. package/core/realtime/node_modules/.bin/mkdist +0 -17
  548. package/core/realtime/node_modules/.bin/tsc +0 -17
  549. package/core/realtime/node_modules/.bin/tsserver +0 -17
  550. package/core/router/node_modules/.bin/mkdist +0 -17
  551. package/core/router/node_modules/.bin/tsc +0 -17
  552. package/core/router/node_modules/.bin/tsserver +0 -17
  553. package/core/search-engine/node_modules/.bin/mkdist +0 -17
  554. package/core/search-engine/node_modules/.bin/tsc +0 -17
  555. package/core/search-engine/node_modules/.bin/tsserver +0 -17
  556. package/core/security/node_modules/.bin/mkdist +0 -17
  557. package/core/security/node_modules/.bin/tsc +0 -17
  558. package/core/security/node_modules/.bin/tsserver +0 -17
  559. package/core/server/node_modules/.bin/mkdist +0 -17
  560. package/core/server/node_modules/.bin/tsc +0 -17
  561. package/core/server/node_modules/.bin/tsserver +0 -17
  562. package/core/sms/node_modules/.bin/mkdist +0 -17
  563. package/core/sms/node_modules/.bin/tsc +0 -17
  564. package/core/sms/node_modules/.bin/tsserver +0 -17
  565. package/core/storage/node_modules/.bin/mkdist +0 -17
  566. package/core/storage/node_modules/.bin/tsc +0 -17
  567. package/core/storage/node_modules/.bin/tsserver +0 -17
  568. package/core/strings/node_modules/.bin/mkdist +0 -17
  569. package/core/strings/node_modules/.bin/tsc +0 -17
  570. package/core/strings/node_modules/.bin/tsserver +0 -17
  571. package/core/strings/node_modules/.bin/unbuild +0 -17
  572. package/core/tables/README.md +0 -109
  573. package/core/tables/examples/vue/App.vue +0 -12
  574. package/core/tables/examples/vue/favicon.png +0 -0
  575. package/core/tables/examples/vue/index.html +0 -20
  576. package/core/tables/examples/web/favicon.png +0 -0
  577. package/core/tables/examples/web/index.html +0 -13
  578. package/core/tables/index.html +0 -13
  579. package/core/tables/node_modules/.bin/mkdist +0 -17
  580. package/core/tables/node_modules/.bin/tsc +0 -17
  581. package/core/tables/node_modules/.bin/tsserver +0 -17
  582. package/core/tables/node_modules/.bin/unbuild +0 -17
  583. package/core/tables/node_modules/.bin/vite +0 -17
  584. package/core/tables/package.json +0 -64
  585. package/core/tables/src/App.vue +0 -23
  586. package/core/tables/src/components/Demo.vue +0 -89
  587. package/core/tables/src/components/README.md +0 -111
  588. package/core/tables/src/components/Table.vue +0 -342
  589. package/core/tables/src/components/TableBody.vue +0 -33
  590. package/core/tables/src/components/TableCellActionItems.vue +0 -9
  591. package/core/tables/src/components/TableFilters.vue +0 -703
  592. package/core/tables/src/components/TableHead.vue +0 -87
  593. package/core/tables/src/components/TablePagination.vue +0 -146
  594. package/core/tables/src/components/TableRow.vue +0 -78
  595. package/core/tables/src/components/TableSearch.vue +0 -38
  596. package/core/tables/src/components/Tooltip.vue +0 -10
  597. package/core/tables/src/docs/index.md +0 -0
  598. package/core/tables/src/functions/README.md +0 -8
  599. package/core/tables/src/functions/dark.ts +0 -3
  600. package/core/tables/src/functions/index.ts +0 -2
  601. package/core/tables/src/functions/table.ts +0 -207
  602. package/core/tables/src/main.js +0 -4
  603. package/core/tables/vite.config.ts +0 -26
  604. package/core/testing/node_modules/.bin/mkdist +0 -17
  605. package/core/types/node_modules/.bin/mkdist +0 -17
  606. package/core/types/node_modules/.bin/tsc +0 -17
  607. package/core/types/node_modules/.bin/tsserver +0 -17
  608. package/core/ui/node_modules/.bin/mkdist +0 -17
  609. package/core/ui/node_modules/.bin/tsc +0 -17
  610. package/core/ui/node_modules/.bin/tsserver +0 -17
  611. package/core/utils/node_modules/.bin/esno +0 -17
  612. package/core/utils/node_modules/.bin/mkdist +0 -17
  613. package/core/utils/node_modules/.bin/tsc +0 -17
  614. package/core/utils/node_modules/.bin/tsserver +0 -17
  615. package/core/utils/src/vendor.ts +0 -1
  616. package/core/validation/node_modules/.bin/mkdist +0 -17
  617. package/core/validation/node_modules/.bin/tsc +0 -17
  618. package/core/validation/node_modules/.bin/tsserver +0 -17
  619. package/core/x-ray/node_modules/.bin/mkdist +0 -17
  620. package/core/x-ray/node_modules/.bin/tsc +0 -17
  621. package/core/x-ray/node_modules/.bin/tsserver +0 -17
  622. package/core/x-ray/routes/index.ts +0 -19
  623. package/core/x-ray/src/client.ts +0 -14
  624. package/core/x-ray/src/desktop/api/nitro.config.ts +0 -18
  625. package/core/x-ray/src/desktop/api/routes/api/logs.ts +0 -7
  626. package/core/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -22
  627. package/core/x-ray/src/desktop/api/src/types.ts +0 -7
  628. package/core/x-ray/src/desktop/api/storage/index.ts +0 -7
  629. package/core/x-ray/src/desktop/app.vue +0 -376
  630. package/core/x-ray/src/desktop/functions/http.ts +0 -26
  631. package/core/x-ray/src/desktop/functions/types.ts +0 -7
  632. package/core/x-ray/src/desktop/main.ts +0 -14
  633. package/core/x-ray/src/desktop/modules/counter/mod.vue +0 -44
  634. package/core/x-ray/src/desktop/modules/fetcher/mod.vue +0 -63
  635. package/core/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -5
  636. package/core/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
  637. package/core/x-ray/src/desktop/services/http.ts +0 -45
  638. package/core/x-ray/src/desktop/styles/app.scss +0 -0
  639. package/core/x-ray/src/http.ts +0 -26
  640. package/core/x-ray/src/index.ts +0 -42
  641. package/core/x-ray/src/ray.config.js +0 -28
  642. package/core/x-ray/src/types.ts +0 -8
  643. package/examples/vue/App.vue +0 -12
  644. package/examples/vue/favicon.png +0 -0
  645. package/examples/vue/index.html +0 -20
  646. package/examples/web/favicon.png +0 -0
  647. package/examples/web/index.html +0 -13
  648. package/functions/package.json +0 -41
  649. package/pages/node_modules/.bin/mkdist +0 -17
  650. package/pages/node_modules/.bin/tsc +0 -17
  651. package/pages/node_modules/.bin/tsserver +0 -17
  652. package/pages/src/index.ts +0 -19
  653. /package/core/actions/src/{build-component-libs.ts → build/component-libs.ts} +0 -0
  654. /package/core/actions/src/{build-stacks.ts → build/stacks.ts} +0 -0
  655. /package/core/actions/src/{dev-components.ts → dev/components.ts} +0 -0
  656. /package/core/actions/src/{generate-settings.ts → generate/settings.ts} +0 -0
  657. /package/core/actions/src/{lint-fix.ts → lint/fix.ts} +0 -0
  658. /package/core/actions/src/{lint.ts → lint/index.ts} +0 -0
  659. /package/core/actions/src/{test-coverage.ts → test/coverage.ts} +0 -0
  660. /package/core/actions/src/{test-feature.ts → test/feature.ts} +0 -0
  661. /package/core/actions/src/{test-ui.ts → test/ui.ts} +0 -0
  662. /package/core/actions/src/{test-unit.ts → test/unit.ts} +0 -0
  663. /package/core/{dashboard/src/index.ts → actions/src/upgrade/dependencies.ts} +0 -0
  664. /package/core/{tables/src/cli/index.ts → analytics/src/drivers/fathom.ts} +0 -0
  665. /package/core/{tables/src/config/tables.ts → analytics/src/index.ts} +0 -0
  666. /package/core/{dashboard → analytics}/tests/example.test.ts +0 -0
  667. /package/{buddy → core/buddy}/art/social.png +0 -0
  668. /package/{netlify.toml → core/cloud/netlify.toml} +0 -0
  669. /package/core/{drivers → development}/tests/example.test.ts +0 -0
  670. /package/core/{tables → faker}/tests/example.test.ts +0 -0
  671. /package/core/{x-ray → orm}/tests/example.test.ts +0 -0
  672. /package/{pages → core/query-builder}/tests/example.test.ts +0 -0
  673. /package/pages/{App.vue → web/App.vue} +0 -0
  674. /package/pages/{index.html → web/index.html} +0 -0
  675. /package/pages/{main.ts → web/main.ts} +0 -0
  676. /package/pages/{public → web/public}/_headers +0 -0
  677. /package/pages/{public → web/public}/favicon-dark.svg +0 -0
  678. /package/pages/{public → web/public}/favicon.svg +0 -0
  679. /package/pages/{public → web/public}/pwa-192x192.png +0 -0
  680. /package/pages/{public → web/public}/pwa-512x512.png +0 -0
  681. /package/pages/{public → web/public}/safari-pinned-tab.svg +0 -0
  682. /package/pages/{styles → web/styles}/main.css +0 -0
  683. /package/pages/{styles → web/styles}/markdown.css +0 -0
@@ -0,0 +1,3599 @@
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 = "adler32"
13
+ version = "1.2.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "0.7.18"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "alloc-no-stdlib"
28
+ version = "2.0.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
31
+
32
+ [[package]]
33
+ name = "alloc-stdlib"
34
+ version = "0.2.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
37
+ dependencies = [
38
+ "alloc-no-stdlib",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "android_system_properties"
43
+ version = "0.1.5"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
46
+ dependencies = [
47
+ "libc",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "ansi_term"
52
+ version = "0.12.1"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
55
+ dependencies = [
56
+ "winapi",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anyhow"
61
+ version = "1.0.58"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
64
+
65
+ [[package]]
66
+ name = "app"
67
+ version = "0.1.0"
68
+ dependencies = [
69
+ "serde",
70
+ "serde_json",
71
+ "tauri",
72
+ "tauri-build",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "atk"
77
+ version = "0.15.1"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd"
80
+ dependencies = [
81
+ "atk-sys",
82
+ "bitflags",
83
+ "glib",
84
+ "libc",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "atk-sys"
89
+ version = "0.15.1"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6"
92
+ dependencies = [
93
+ "glib-sys",
94
+ "gobject-sys",
95
+ "libc",
96
+ "system-deps 6.0.2",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "attohttpc"
101
+ version = "0.22.0"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7"
104
+ dependencies = [
105
+ "flate2",
106
+ "http",
107
+ "log",
108
+ "native-tls",
109
+ "serde",
110
+ "serde_json",
111
+ "serde_urlencoded",
112
+ "url",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "autocfg"
117
+ version = "1.1.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
120
+
121
+ [[package]]
122
+ name = "base64"
123
+ version = "0.13.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
126
+
127
+ [[package]]
128
+ name = "base64"
129
+ version = "0.21.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
132
+
133
+ [[package]]
134
+ name = "bitflags"
135
+ version = "1.3.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
138
+
139
+ [[package]]
140
+ name = "block"
141
+ version = "0.1.6"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
144
+
145
+ [[package]]
146
+ name = "block-buffer"
147
+ version = "0.10.2"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
150
+ dependencies = [
151
+ "generic-array",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "brotli"
156
+ version = "3.3.4"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
159
+ dependencies = [
160
+ "alloc-no-stdlib",
161
+ "alloc-stdlib",
162
+ "brotli-decompressor",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "brotli-decompressor"
167
+ version = "2.3.2"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
170
+ dependencies = [
171
+ "alloc-no-stdlib",
172
+ "alloc-stdlib",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "bstr"
177
+ version = "0.2.17"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
180
+ dependencies = [
181
+ "memchr",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "bumpalo"
186
+ version = "3.12.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8"
189
+
190
+ [[package]]
191
+ name = "bytemuck"
192
+ version = "1.10.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "c53dfa917ec274df8ed3c572698f381a24eef2efba9492d797301b72b6db408a"
195
+
196
+ [[package]]
197
+ name = "byteorder"
198
+ version = "1.4.3"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
201
+
202
+ [[package]]
203
+ name = "bytes"
204
+ version = "1.1.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
207
+
208
+ [[package]]
209
+ name = "cairo-rs"
210
+ version = "0.15.12"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
213
+ dependencies = [
214
+ "bitflags",
215
+ "cairo-sys-rs",
216
+ "glib",
217
+ "libc",
218
+ "thiserror",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cairo-sys-rs"
223
+ version = "0.15.1"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
226
+ dependencies = [
227
+ "glib-sys",
228
+ "libc",
229
+ "system-deps 6.0.2",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "cargo_toml"
234
+ version = "0.15.2"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "7f83bc2e401ed041b7057345ebc488c005efa0341d5541ce7004d30458d0090b"
237
+ dependencies = [
238
+ "serde",
239
+ "toml 0.7.3",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "cc"
244
+ version = "1.0.73"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
247
+
248
+ [[package]]
249
+ name = "cesu8"
250
+ version = "1.1.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
253
+
254
+ [[package]]
255
+ name = "cfb"
256
+ version = "0.7.3"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
259
+ dependencies = [
260
+ "byteorder",
261
+ "fnv",
262
+ "uuid",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "cfg-expr"
267
+ version = "0.9.1"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7"
270
+ dependencies = [
271
+ "smallvec",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "cfg-expr"
276
+ version = "0.10.3"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db"
279
+ dependencies = [
280
+ "smallvec",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "cfg-if"
285
+ version = "1.0.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
288
+
289
+ [[package]]
290
+ name = "chrono"
291
+ version = "0.4.24"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
294
+ dependencies = [
295
+ "iana-time-zone",
296
+ "num-integer",
297
+ "num-traits",
298
+ "serde",
299
+ "winapi",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "cocoa"
304
+ version = "0.24.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832"
307
+ dependencies = [
308
+ "bitflags",
309
+ "block",
310
+ "cocoa-foundation",
311
+ "core-foundation",
312
+ "core-graphics",
313
+ "foreign-types",
314
+ "libc",
315
+ "objc",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "cocoa-foundation"
320
+ version = "0.1.0"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
323
+ dependencies = [
324
+ "bitflags",
325
+ "block",
326
+ "core-foundation",
327
+ "core-graphics-types",
328
+ "foreign-types",
329
+ "libc",
330
+ "objc",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "codespan-reporting"
335
+ version = "0.11.1"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
338
+ dependencies = [
339
+ "termcolor",
340
+ "unicode-width",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "color_quant"
345
+ version = "1.1.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
348
+
349
+ [[package]]
350
+ name = "combine"
351
+ version = "4.6.4"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948"
354
+ dependencies = [
355
+ "bytes",
356
+ "memchr",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "convert_case"
361
+ version = "0.4.0"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
364
+
365
+ [[package]]
366
+ name = "core-foundation"
367
+ version = "0.9.3"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
370
+ dependencies = [
371
+ "core-foundation-sys",
372
+ "libc",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "core-foundation-sys"
377
+ version = "0.8.3"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
380
+
381
+ [[package]]
382
+ name = "core-graphics"
383
+ version = "0.22.3"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
386
+ dependencies = [
387
+ "bitflags",
388
+ "core-foundation",
389
+ "core-graphics-types",
390
+ "foreign-types",
391
+ "libc",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "core-graphics-types"
396
+ version = "0.1.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
399
+ dependencies = [
400
+ "bitflags",
401
+ "core-foundation",
402
+ "foreign-types",
403
+ "libc",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "cpufeatures"
408
+ version = "0.2.2"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
411
+ dependencies = [
412
+ "libc",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "crc32fast"
417
+ version = "1.3.2"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
420
+ dependencies = [
421
+ "cfg-if",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "crossbeam-channel"
426
+ version = "0.5.5"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "4c02a4d71819009c192cf4872265391563fd6a84c81ff2c0f2a7026ca4c1d85c"
429
+ dependencies = [
430
+ "cfg-if",
431
+ "crossbeam-utils",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "crossbeam-utils"
436
+ version = "0.8.10"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83"
439
+ dependencies = [
440
+ "cfg-if",
441
+ "once_cell",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "crypto-common"
446
+ version = "0.1.5"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "2ccfd8c0ee4cce11e45b3fd6f9d5e69e0cc62912aa6a0cb1bf4617b0eba5a12f"
449
+ dependencies = [
450
+ "generic-array",
451
+ "typenum",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "cssparser"
456
+ version = "0.27.2"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
459
+ dependencies = [
460
+ "cssparser-macros",
461
+ "dtoa-short",
462
+ "itoa 0.4.8",
463
+ "matches",
464
+ "phf 0.8.0",
465
+ "proc-macro2",
466
+ "quote",
467
+ "smallvec",
468
+ "syn 1.0.105",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "cssparser-macros"
473
+ version = "0.6.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
476
+ dependencies = [
477
+ "quote",
478
+ "syn 1.0.105",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "ctor"
483
+ version = "0.1.22"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c"
486
+ dependencies = [
487
+ "quote",
488
+ "syn 1.0.105",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "cty"
493
+ version = "0.2.2"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
496
+
497
+ [[package]]
498
+ name = "cxx"
499
+ version = "1.0.94"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
502
+ dependencies = [
503
+ "cc",
504
+ "cxxbridge-flags",
505
+ "cxxbridge-macro",
506
+ "link-cplusplus",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "cxx-build"
511
+ version = "1.0.94"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
514
+ dependencies = [
515
+ "cc",
516
+ "codespan-reporting",
517
+ "once_cell",
518
+ "proc-macro2",
519
+ "quote",
520
+ "scratch",
521
+ "syn 2.0.15",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "cxxbridge-flags"
526
+ version = "1.0.94"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
529
+
530
+ [[package]]
531
+ name = "cxxbridge-macro"
532
+ version = "1.0.94"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
535
+ dependencies = [
536
+ "proc-macro2",
537
+ "quote",
538
+ "syn 2.0.15",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "darling"
543
+ version = "0.20.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "0558d22a7b463ed0241e993f76f09f30b126687447751a8638587b864e4b3944"
546
+ dependencies = [
547
+ "darling_core",
548
+ "darling_macro",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "darling_core"
553
+ version = "0.20.1"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "ab8bfa2e259f8ee1ce5e97824a3c55ec4404a0d772ca7fa96bf19f0752a046eb"
556
+ dependencies = [
557
+ "fnv",
558
+ "ident_case",
559
+ "proc-macro2",
560
+ "quote",
561
+ "strsim",
562
+ "syn 2.0.15",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "darling_macro"
567
+ version = "0.20.1"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a"
570
+ dependencies = [
571
+ "darling_core",
572
+ "quote",
573
+ "syn 2.0.15",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "deflate"
578
+ version = "1.0.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
581
+ dependencies = [
582
+ "adler32",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "derive_more"
587
+ version = "0.99.17"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
590
+ dependencies = [
591
+ "convert_case",
592
+ "proc-macro2",
593
+ "quote",
594
+ "rustc_version 0.4.0",
595
+ "syn 1.0.105",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "digest"
600
+ version = "0.10.3"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
603
+ dependencies = [
604
+ "block-buffer",
605
+ "crypto-common",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "dirs-next"
610
+ version = "2.0.0"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
613
+ dependencies = [
614
+ "cfg-if",
615
+ "dirs-sys-next",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "dirs-sys-next"
620
+ version = "0.1.2"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
623
+ dependencies = [
624
+ "libc",
625
+ "redox_users",
626
+ "winapi",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "dispatch"
631
+ version = "0.2.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
634
+
635
+ [[package]]
636
+ name = "dtoa"
637
+ version = "0.4.8"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
640
+
641
+ [[package]]
642
+ name = "dtoa-short"
643
+ version = "0.3.3"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
646
+ dependencies = [
647
+ "dtoa",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "dunce"
652
+ version = "1.0.3"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c"
655
+
656
+ [[package]]
657
+ name = "embed_plist"
658
+ version = "1.2.2"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
661
+
662
+ [[package]]
663
+ name = "encoding_rs"
664
+ version = "0.8.31"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
667
+ dependencies = [
668
+ "cfg-if",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "fastrand"
673
+ version = "1.7.0"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
676
+ dependencies = [
677
+ "instant",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "field-offset"
682
+ version = "0.3.4"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
685
+ dependencies = [
686
+ "memoffset",
687
+ "rustc_version 0.3.3",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "filetime"
692
+ version = "0.2.17"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c"
695
+ dependencies = [
696
+ "cfg-if",
697
+ "libc",
698
+ "redox_syscall",
699
+ "windows-sys",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "flate2"
704
+ version = "1.0.24"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
707
+ dependencies = [
708
+ "crc32fast",
709
+ "miniz_oxide",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "fnv"
714
+ version = "1.0.7"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
717
+
718
+ [[package]]
719
+ name = "foreign-types"
720
+ version = "0.3.2"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
723
+ dependencies = [
724
+ "foreign-types-shared",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "foreign-types-shared"
729
+ version = "0.1.1"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
732
+
733
+ [[package]]
734
+ name = "form_urlencoded"
735
+ version = "1.1.0"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
738
+ dependencies = [
739
+ "percent-encoding",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "futf"
744
+ version = "0.1.5"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
747
+ dependencies = [
748
+ "mac",
749
+ "new_debug_unreachable",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "futures-channel"
754
+ version = "0.3.21"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
757
+ dependencies = [
758
+ "futures-core",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "futures-core"
763
+ version = "0.3.21"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
766
+
767
+ [[package]]
768
+ name = "futures-executor"
769
+ version = "0.3.21"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
772
+ dependencies = [
773
+ "futures-core",
774
+ "futures-task",
775
+ "futures-util",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "futures-io"
780
+ version = "0.3.21"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
783
+
784
+ [[package]]
785
+ name = "futures-macro"
786
+ version = "0.3.21"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
789
+ dependencies = [
790
+ "proc-macro2",
791
+ "quote",
792
+ "syn 1.0.105",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "futures-task"
797
+ version = "0.3.21"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
800
+
801
+ [[package]]
802
+ name = "futures-util"
803
+ version = "0.3.21"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
806
+ dependencies = [
807
+ "futures-core",
808
+ "futures-macro",
809
+ "futures-task",
810
+ "pin-project-lite",
811
+ "pin-utils",
812
+ "slab",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "fxhash"
817
+ version = "0.2.1"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
820
+ dependencies = [
821
+ "byteorder",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "gdk"
826
+ version = "0.15.4"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8"
829
+ dependencies = [
830
+ "bitflags",
831
+ "cairo-rs",
832
+ "gdk-pixbuf",
833
+ "gdk-sys",
834
+ "gio",
835
+ "glib",
836
+ "libc",
837
+ "pango",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "gdk-pixbuf"
842
+ version = "0.15.11"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
845
+ dependencies = [
846
+ "bitflags",
847
+ "gdk-pixbuf-sys",
848
+ "gio",
849
+ "glib",
850
+ "libc",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "gdk-pixbuf-sys"
855
+ version = "0.15.10"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
858
+ dependencies = [
859
+ "gio-sys",
860
+ "glib-sys",
861
+ "gobject-sys",
862
+ "libc",
863
+ "system-deps 6.0.2",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "gdk-sys"
868
+ version = "0.15.1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88"
871
+ dependencies = [
872
+ "cairo-sys-rs",
873
+ "gdk-pixbuf-sys",
874
+ "gio-sys",
875
+ "glib-sys",
876
+ "gobject-sys",
877
+ "libc",
878
+ "pango-sys",
879
+ "pkg-config",
880
+ "system-deps 6.0.2",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "gdkx11-sys"
885
+ version = "0.15.1"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178"
888
+ dependencies = [
889
+ "gdk-sys",
890
+ "glib-sys",
891
+ "libc",
892
+ "system-deps 6.0.2",
893
+ "x11",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "generator"
898
+ version = "0.7.0"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee"
901
+ dependencies = [
902
+ "cc",
903
+ "libc",
904
+ "log",
905
+ "rustversion",
906
+ "winapi",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "generic-array"
911
+ version = "0.14.5"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
914
+ dependencies = [
915
+ "typenum",
916
+ "version_check",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "getrandom"
921
+ version = "0.1.16"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
924
+ dependencies = [
925
+ "cfg-if",
926
+ "libc",
927
+ "wasi 0.9.0+wasi-snapshot-preview1",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "getrandom"
932
+ version = "0.2.7"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
935
+ dependencies = [
936
+ "cfg-if",
937
+ "libc",
938
+ "wasi 0.11.0+wasi-snapshot-preview1",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "gio"
943
+ version = "0.15.12"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
946
+ dependencies = [
947
+ "bitflags",
948
+ "futures-channel",
949
+ "futures-core",
950
+ "futures-io",
951
+ "gio-sys",
952
+ "glib",
953
+ "libc",
954
+ "once_cell",
955
+ "thiserror",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "gio-sys"
960
+ version = "0.15.10"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
963
+ dependencies = [
964
+ "glib-sys",
965
+ "gobject-sys",
966
+ "libc",
967
+ "system-deps 6.0.2",
968
+ "winapi",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "glib"
973
+ version = "0.15.12"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
976
+ dependencies = [
977
+ "bitflags",
978
+ "futures-channel",
979
+ "futures-core",
980
+ "futures-executor",
981
+ "futures-task",
982
+ "glib-macros",
983
+ "glib-sys",
984
+ "gobject-sys",
985
+ "libc",
986
+ "once_cell",
987
+ "smallvec",
988
+ "thiserror",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "glib-macros"
993
+ version = "0.15.11"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64"
996
+ dependencies = [
997
+ "anyhow",
998
+ "heck 0.4.0",
999
+ "proc-macro-crate",
1000
+ "proc-macro-error",
1001
+ "proc-macro2",
1002
+ "quote",
1003
+ "syn 1.0.105",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "glib-sys"
1008
+ version = "0.15.10"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
1011
+ dependencies = [
1012
+ "libc",
1013
+ "system-deps 6.0.2",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "glob"
1018
+ version = "0.3.0"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
1021
+
1022
+ [[package]]
1023
+ name = "globset"
1024
+ version = "0.4.9"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"
1027
+ dependencies = [
1028
+ "aho-corasick",
1029
+ "bstr",
1030
+ "fnv",
1031
+ "log",
1032
+ "regex",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "gobject-sys"
1037
+ version = "0.15.10"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
1040
+ dependencies = [
1041
+ "glib-sys",
1042
+ "libc",
1043
+ "system-deps 6.0.2",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "gtk"
1048
+ version = "0.15.5"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0"
1051
+ dependencies = [
1052
+ "atk",
1053
+ "bitflags",
1054
+ "cairo-rs",
1055
+ "field-offset",
1056
+ "futures-channel",
1057
+ "gdk",
1058
+ "gdk-pixbuf",
1059
+ "gio",
1060
+ "glib",
1061
+ "gtk-sys",
1062
+ "gtk3-macros",
1063
+ "libc",
1064
+ "once_cell",
1065
+ "pango",
1066
+ "pkg-config",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "gtk-sys"
1071
+ version = "0.15.3"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84"
1074
+ dependencies = [
1075
+ "atk-sys",
1076
+ "cairo-sys-rs",
1077
+ "gdk-pixbuf-sys",
1078
+ "gdk-sys",
1079
+ "gio-sys",
1080
+ "glib-sys",
1081
+ "gobject-sys",
1082
+ "libc",
1083
+ "pango-sys",
1084
+ "system-deps 6.0.2",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "gtk3-macros"
1089
+ version = "0.15.4"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9"
1092
+ dependencies = [
1093
+ "anyhow",
1094
+ "proc-macro-crate",
1095
+ "proc-macro-error",
1096
+ "proc-macro2",
1097
+ "quote",
1098
+ "syn 1.0.105",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "hashbrown"
1103
+ version = "0.12.2"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "607c8a29735385251a339424dd462993c0fed8fa09d378f259377df08c126022"
1106
+
1107
+ [[package]]
1108
+ name = "heck"
1109
+ version = "0.3.3"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1112
+ dependencies = [
1113
+ "unicode-segmentation",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "heck"
1118
+ version = "0.4.0"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
1121
+
1122
+ [[package]]
1123
+ name = "hermit-abi"
1124
+ version = "0.1.19"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
1127
+ dependencies = [
1128
+ "libc",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "hex"
1133
+ version = "0.4.3"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1136
+
1137
+ [[package]]
1138
+ name = "html5ever"
1139
+ version = "0.25.2"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
1142
+ dependencies = [
1143
+ "log",
1144
+ "mac",
1145
+ "markup5ever",
1146
+ "proc-macro2",
1147
+ "quote",
1148
+ "syn 1.0.105",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "http"
1153
+ version = "0.2.8"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
1156
+ dependencies = [
1157
+ "bytes",
1158
+ "fnv",
1159
+ "itoa 1.0.2",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "http-range"
1164
+ version = "0.1.5"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
1167
+
1168
+ [[package]]
1169
+ name = "iana-time-zone"
1170
+ version = "0.1.56"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
1173
+ dependencies = [
1174
+ "android_system_properties",
1175
+ "core-foundation-sys",
1176
+ "iana-time-zone-haiku",
1177
+ "js-sys",
1178
+ "wasm-bindgen",
1179
+ "windows 0.48.0",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "iana-time-zone-haiku"
1184
+ version = "0.1.1"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
1187
+ dependencies = [
1188
+ "cxx",
1189
+ "cxx-build",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "ico"
1194
+ version = "0.3.0"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
1197
+ dependencies = [
1198
+ "byteorder",
1199
+ "png",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "ident_case"
1204
+ version = "1.0.1"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1207
+
1208
+ [[package]]
1209
+ name = "idna"
1210
+ version = "0.3.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
1213
+ dependencies = [
1214
+ "unicode-bidi",
1215
+ "unicode-normalization",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "ignore"
1220
+ version = "0.4.18"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
1223
+ dependencies = [
1224
+ "crossbeam-utils",
1225
+ "globset",
1226
+ "lazy_static",
1227
+ "log",
1228
+ "memchr",
1229
+ "regex",
1230
+ "same-file",
1231
+ "thread_local",
1232
+ "walkdir",
1233
+ "winapi-util",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "image"
1238
+ version = "0.24.2"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "28edd9d7bc256be2502e325ac0628bde30b7001b9b52e0abe31a1a9dc2701212"
1241
+ dependencies = [
1242
+ "bytemuck",
1243
+ "byteorder",
1244
+ "color_quant",
1245
+ "num-iter",
1246
+ "num-rational",
1247
+ "num-traits",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "indexmap"
1252
+ version = "1.9.1"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
1255
+ dependencies = [
1256
+ "autocfg",
1257
+ "hashbrown",
1258
+ "serde",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "infer"
1263
+ version = "0.12.0"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3"
1266
+ dependencies = [
1267
+ "cfb",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "instant"
1272
+ version = "0.1.12"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1275
+ dependencies = [
1276
+ "cfg-if",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "itoa"
1281
+ version = "0.4.8"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1284
+
1285
+ [[package]]
1286
+ name = "itoa"
1287
+ version = "1.0.2"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
1290
+
1291
+ [[package]]
1292
+ name = "javascriptcore-rs"
1293
+ version = "0.16.0"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c"
1296
+ dependencies = [
1297
+ "bitflags",
1298
+ "glib",
1299
+ "javascriptcore-rs-sys",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "javascriptcore-rs-sys"
1304
+ version = "0.4.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c"
1307
+ dependencies = [
1308
+ "glib-sys",
1309
+ "gobject-sys",
1310
+ "libc",
1311
+ "system-deps 5.0.0",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "jni"
1316
+ version = "0.20.0"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c"
1319
+ dependencies = [
1320
+ "cesu8",
1321
+ "combine",
1322
+ "jni-sys",
1323
+ "log",
1324
+ "thiserror",
1325
+ "walkdir",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "jni-sys"
1330
+ version = "0.3.0"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1333
+
1334
+ [[package]]
1335
+ name = "js-sys"
1336
+ version = "0.3.61"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
1339
+ dependencies = [
1340
+ "wasm-bindgen",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "json-patch"
1345
+ version = "1.0.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "1f54898088ccb91df1b492cc80029a6fdf1c48ca0db7c6822a8babad69c94658"
1348
+ dependencies = [
1349
+ "serde",
1350
+ "serde_json",
1351
+ "thiserror",
1352
+ "treediff",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "kuchiki"
1357
+ version = "0.8.1"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
1360
+ dependencies = [
1361
+ "cssparser",
1362
+ "html5ever",
1363
+ "matches",
1364
+ "selectors",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "lazy_static"
1369
+ version = "1.4.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1372
+
1373
+ [[package]]
1374
+ name = "libc"
1375
+ version = "0.2.126"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
1378
+
1379
+ [[package]]
1380
+ name = "line-wrap"
1381
+ version = "0.1.1"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
1384
+ dependencies = [
1385
+ "safemem",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "link-cplusplus"
1390
+ version = "1.0.8"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
1393
+ dependencies = [
1394
+ "cc",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "lock_api"
1399
+ version = "0.4.7"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
1402
+ dependencies = [
1403
+ "autocfg",
1404
+ "scopeguard",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "log"
1409
+ version = "0.4.17"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
1412
+ dependencies = [
1413
+ "cfg-if",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "loom"
1418
+ version = "0.5.6"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
1421
+ dependencies = [
1422
+ "cfg-if",
1423
+ "generator",
1424
+ "scoped-tls",
1425
+ "serde",
1426
+ "serde_json",
1427
+ "tracing",
1428
+ "tracing-subscriber",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "mac"
1433
+ version = "0.1.1"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1436
+
1437
+ [[package]]
1438
+ name = "malloc_buf"
1439
+ version = "0.0.6"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1442
+ dependencies = [
1443
+ "libc",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "markup5ever"
1448
+ version = "0.10.1"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
1451
+ dependencies = [
1452
+ "log",
1453
+ "phf 0.8.0",
1454
+ "phf_codegen",
1455
+ "string_cache",
1456
+ "string_cache_codegen",
1457
+ "tendril",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "matchers"
1462
+ version = "0.1.0"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1465
+ dependencies = [
1466
+ "regex-automata",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "matches"
1471
+ version = "0.1.9"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
1474
+
1475
+ [[package]]
1476
+ name = "memchr"
1477
+ version = "2.5.0"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1480
+
1481
+ [[package]]
1482
+ name = "memoffset"
1483
+ version = "0.6.5"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
1486
+ dependencies = [
1487
+ "autocfg",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "miniz_oxide"
1492
+ version = "0.5.3"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
1495
+ dependencies = [
1496
+ "adler",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "native-tls"
1501
+ version = "0.2.10"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
1504
+ dependencies = [
1505
+ "lazy_static",
1506
+ "libc",
1507
+ "log",
1508
+ "openssl",
1509
+ "openssl-probe",
1510
+ "openssl-sys",
1511
+ "schannel",
1512
+ "security-framework",
1513
+ "security-framework-sys",
1514
+ "tempfile",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "ndk"
1519
+ version = "0.6.0"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
1522
+ dependencies = [
1523
+ "bitflags",
1524
+ "jni-sys",
1525
+ "ndk-sys",
1526
+ "num_enum",
1527
+ "thiserror",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "ndk-context"
1532
+ version = "0.1.1"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1535
+
1536
+ [[package]]
1537
+ name = "ndk-sys"
1538
+ version = "0.3.0"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97"
1541
+ dependencies = [
1542
+ "jni-sys",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "new_debug_unreachable"
1547
+ version = "1.0.4"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
1550
+
1551
+ [[package]]
1552
+ name = "nodrop"
1553
+ version = "0.1.14"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1556
+
1557
+ [[package]]
1558
+ name = "num-integer"
1559
+ version = "0.1.45"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1562
+ dependencies = [
1563
+ "autocfg",
1564
+ "num-traits",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "num-iter"
1569
+ version = "0.1.43"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
1572
+ dependencies = [
1573
+ "autocfg",
1574
+ "num-integer",
1575
+ "num-traits",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "num-rational"
1580
+ version = "0.4.1"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
1583
+ dependencies = [
1584
+ "autocfg",
1585
+ "num-integer",
1586
+ "num-traits",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "num-traits"
1591
+ version = "0.2.15"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1594
+ dependencies = [
1595
+ "autocfg",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "num_cpus"
1600
+ version = "1.13.1"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1603
+ dependencies = [
1604
+ "hermit-abi",
1605
+ "libc",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "num_enum"
1610
+ version = "0.5.7"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
1613
+ dependencies = [
1614
+ "num_enum_derive",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "num_enum_derive"
1619
+ version = "0.5.7"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
1622
+ dependencies = [
1623
+ "proc-macro-crate",
1624
+ "proc-macro2",
1625
+ "quote",
1626
+ "syn 1.0.105",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "num_threads"
1631
+ version = "0.1.6"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
1634
+ dependencies = [
1635
+ "libc",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "objc"
1640
+ version = "0.2.7"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
1643
+ dependencies = [
1644
+ "malloc_buf",
1645
+ "objc_exception",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "objc_exception"
1650
+ version = "0.1.2"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
1653
+ dependencies = [
1654
+ "cc",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "objc_id"
1659
+ version = "0.1.1"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
1662
+ dependencies = [
1663
+ "objc",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "once_cell"
1668
+ version = "1.16.0"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
1671
+
1672
+ [[package]]
1673
+ name = "openssl"
1674
+ version = "0.10.41"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
1677
+ dependencies = [
1678
+ "bitflags",
1679
+ "cfg-if",
1680
+ "foreign-types",
1681
+ "libc",
1682
+ "once_cell",
1683
+ "openssl-macros",
1684
+ "openssl-sys",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "openssl-macros"
1689
+ version = "0.1.0"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
1692
+ dependencies = [
1693
+ "proc-macro2",
1694
+ "quote",
1695
+ "syn 1.0.105",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "openssl-probe"
1700
+ version = "0.1.5"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1703
+
1704
+ [[package]]
1705
+ name = "openssl-sys"
1706
+ version = "0.9.75"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
1709
+ dependencies = [
1710
+ "autocfg",
1711
+ "cc",
1712
+ "libc",
1713
+ "pkg-config",
1714
+ "vcpkg",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "pango"
1719
+ version = "0.15.10"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
1722
+ dependencies = [
1723
+ "bitflags",
1724
+ "glib",
1725
+ "libc",
1726
+ "once_cell",
1727
+ "pango-sys",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "pango-sys"
1732
+ version = "0.15.10"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
1735
+ dependencies = [
1736
+ "glib-sys",
1737
+ "gobject-sys",
1738
+ "libc",
1739
+ "system-deps 6.0.2",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "parking_lot"
1744
+ version = "0.12.1"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1747
+ dependencies = [
1748
+ "lock_api",
1749
+ "parking_lot_core",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "parking_lot_core"
1754
+ version = "0.9.3"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
1757
+ dependencies = [
1758
+ "cfg-if",
1759
+ "libc",
1760
+ "redox_syscall",
1761
+ "smallvec",
1762
+ "windows-sys",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "percent-encoding"
1767
+ version = "2.2.0"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
1770
+
1771
+ [[package]]
1772
+ name = "pest"
1773
+ version = "2.1.3"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
1776
+ dependencies = [
1777
+ "ucd-trie",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "phf"
1782
+ version = "0.8.0"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
1785
+ dependencies = [
1786
+ "phf_macros 0.8.0",
1787
+ "phf_shared 0.8.0",
1788
+ "proc-macro-hack",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "phf"
1793
+ version = "0.10.1"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
1796
+ dependencies = [
1797
+ "phf_macros 0.10.0",
1798
+ "phf_shared 0.10.0",
1799
+ "proc-macro-hack",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "phf_codegen"
1804
+ version = "0.8.0"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
1807
+ dependencies = [
1808
+ "phf_generator 0.8.0",
1809
+ "phf_shared 0.8.0",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "phf_generator"
1814
+ version = "0.8.0"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
1817
+ dependencies = [
1818
+ "phf_shared 0.8.0",
1819
+ "rand 0.7.3",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "phf_generator"
1824
+ version = "0.10.0"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
1827
+ dependencies = [
1828
+ "phf_shared 0.10.0",
1829
+ "rand 0.8.5",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "phf_macros"
1834
+ version = "0.8.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
1837
+ dependencies = [
1838
+ "phf_generator 0.8.0",
1839
+ "phf_shared 0.8.0",
1840
+ "proc-macro-hack",
1841
+ "proc-macro2",
1842
+ "quote",
1843
+ "syn 1.0.105",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "phf_macros"
1848
+ version = "0.10.0"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
1851
+ dependencies = [
1852
+ "phf_generator 0.10.0",
1853
+ "phf_shared 0.10.0",
1854
+ "proc-macro-hack",
1855
+ "proc-macro2",
1856
+ "quote",
1857
+ "syn 1.0.105",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "phf_shared"
1862
+ version = "0.8.0"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
1865
+ dependencies = [
1866
+ "siphasher",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "phf_shared"
1871
+ version = "0.10.0"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
1874
+ dependencies = [
1875
+ "siphasher",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "pin-project-lite"
1880
+ version = "0.2.9"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1883
+
1884
+ [[package]]
1885
+ name = "pin-utils"
1886
+ version = "0.1.0"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1889
+
1890
+ [[package]]
1891
+ name = "pkg-config"
1892
+ version = "0.3.25"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1895
+
1896
+ [[package]]
1897
+ name = "plist"
1898
+ version = "1.3.1"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
1901
+ dependencies = [
1902
+ "base64 0.13.0",
1903
+ "indexmap",
1904
+ "line-wrap",
1905
+ "serde",
1906
+ "time",
1907
+ "xml-rs",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "png"
1912
+ version = "0.17.5"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba"
1915
+ dependencies = [
1916
+ "bitflags",
1917
+ "crc32fast",
1918
+ "deflate",
1919
+ "miniz_oxide",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "ppv-lite86"
1924
+ version = "0.2.16"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
1927
+
1928
+ [[package]]
1929
+ name = "precomputed-hash"
1930
+ version = "0.1.1"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1933
+
1934
+ [[package]]
1935
+ name = "proc-macro-crate"
1936
+ version = "1.1.3"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a"
1939
+ dependencies = [
1940
+ "thiserror",
1941
+ "toml 0.5.9",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "proc-macro-error"
1946
+ version = "1.0.4"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1949
+ dependencies = [
1950
+ "proc-macro-error-attr",
1951
+ "proc-macro2",
1952
+ "quote",
1953
+ "syn 1.0.105",
1954
+ "version_check",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "proc-macro-error-attr"
1959
+ version = "1.0.4"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1962
+ dependencies = [
1963
+ "proc-macro2",
1964
+ "quote",
1965
+ "version_check",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "proc-macro-hack"
1970
+ version = "0.5.19"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
1973
+
1974
+ [[package]]
1975
+ name = "proc-macro2"
1976
+ version = "1.0.56"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
1979
+ dependencies = [
1980
+ "unicode-ident",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "quote"
1985
+ version = "1.0.26"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
1988
+ dependencies = [
1989
+ "proc-macro2",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "rand"
1994
+ version = "0.7.3"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
1997
+ dependencies = [
1998
+ "getrandom 0.1.16",
1999
+ "libc",
2000
+ "rand_chacha 0.2.2",
2001
+ "rand_core 0.5.1",
2002
+ "rand_hc",
2003
+ "rand_pcg",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "rand"
2008
+ version = "0.8.5"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2011
+ dependencies = [
2012
+ "libc",
2013
+ "rand_chacha 0.3.1",
2014
+ "rand_core 0.6.3",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "rand_chacha"
2019
+ version = "0.2.2"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2022
+ dependencies = [
2023
+ "ppv-lite86",
2024
+ "rand_core 0.5.1",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "rand_chacha"
2029
+ version = "0.3.1"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2032
+ dependencies = [
2033
+ "ppv-lite86",
2034
+ "rand_core 0.6.3",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "rand_core"
2039
+ version = "0.5.1"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2042
+ dependencies = [
2043
+ "getrandom 0.1.16",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "rand_core"
2048
+ version = "0.6.3"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2051
+ dependencies = [
2052
+ "getrandom 0.2.7",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "rand_hc"
2057
+ version = "0.2.0"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2060
+ dependencies = [
2061
+ "rand_core 0.5.1",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "rand_pcg"
2066
+ version = "0.2.1"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2069
+ dependencies = [
2070
+ "rand_core 0.5.1",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "raw-window-handle"
2075
+ version = "0.5.0"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a"
2078
+ dependencies = [
2079
+ "cty",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "redox_syscall"
2084
+ version = "0.2.13"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2087
+ dependencies = [
2088
+ "bitflags",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "redox_users"
2093
+ version = "0.4.3"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2096
+ dependencies = [
2097
+ "getrandom 0.2.7",
2098
+ "redox_syscall",
2099
+ "thiserror",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "regex"
2104
+ version = "1.6.0"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2107
+ dependencies = [
2108
+ "aho-corasick",
2109
+ "memchr",
2110
+ "regex-syntax",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "regex-automata"
2115
+ version = "0.1.10"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2118
+ dependencies = [
2119
+ "regex-syntax",
2120
+ ]
2121
+
2122
+ [[package]]
2123
+ name = "regex-syntax"
2124
+ version = "0.6.27"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2127
+
2128
+ [[package]]
2129
+ name = "remove_dir_all"
2130
+ version = "0.5.3"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2133
+ dependencies = [
2134
+ "winapi",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "rustc_version"
2139
+ version = "0.3.3"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
2142
+ dependencies = [
2143
+ "semver 0.11.0",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "rustc_version"
2148
+ version = "0.4.0"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2151
+ dependencies = [
2152
+ "semver 1.0.12",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "rustversion"
2157
+ version = "1.0.7"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "a0a5f7c728f5d284929a1cccb5bc19884422bfe6ef4d6c409da2c41838983fcf"
2160
+
2161
+ [[package]]
2162
+ name = "ryu"
2163
+ version = "1.0.10"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2166
+
2167
+ [[package]]
2168
+ name = "safemem"
2169
+ version = "0.3.3"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2172
+
2173
+ [[package]]
2174
+ name = "same-file"
2175
+ version = "1.0.6"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2178
+ dependencies = [
2179
+ "winapi-util",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "schannel"
2184
+ version = "0.1.20"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2187
+ dependencies = [
2188
+ "lazy_static",
2189
+ "windows-sys",
2190
+ ]
2191
+
2192
+ [[package]]
2193
+ name = "scoped-tls"
2194
+ version = "1.0.0"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2197
+
2198
+ [[package]]
2199
+ name = "scopeguard"
2200
+ version = "1.1.0"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2203
+
2204
+ [[package]]
2205
+ name = "scratch"
2206
+ version = "1.0.5"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
2209
+
2210
+ [[package]]
2211
+ name = "security-framework"
2212
+ version = "2.6.1"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
2215
+ dependencies = [
2216
+ "bitflags",
2217
+ "core-foundation",
2218
+ "core-foundation-sys",
2219
+ "libc",
2220
+ "security-framework-sys",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "security-framework-sys"
2225
+ version = "2.6.1"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2228
+ dependencies = [
2229
+ "core-foundation-sys",
2230
+ "libc",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "selectors"
2235
+ version = "0.22.0"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2238
+ dependencies = [
2239
+ "bitflags",
2240
+ "cssparser",
2241
+ "derive_more",
2242
+ "fxhash",
2243
+ "log",
2244
+ "matches",
2245
+ "phf 0.8.0",
2246
+ "phf_codegen",
2247
+ "precomputed-hash",
2248
+ "servo_arc",
2249
+ "smallvec",
2250
+ "thin-slice",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "semver"
2255
+ version = "0.11.0"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
2258
+ dependencies = [
2259
+ "semver-parser",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "semver"
2264
+ version = "1.0.12"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1"
2267
+ dependencies = [
2268
+ "serde",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "semver-parser"
2273
+ version = "0.10.2"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
2276
+ dependencies = [
2277
+ "pest",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "serde"
2282
+ version = "1.0.160"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
2285
+ dependencies = [
2286
+ "serde_derive",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "serde_derive"
2291
+ version = "1.0.160"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
2294
+ dependencies = [
2295
+ "proc-macro2",
2296
+ "quote",
2297
+ "syn 2.0.15",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "serde_json"
2302
+ version = "1.0.96"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2305
+ dependencies = [
2306
+ "itoa 1.0.2",
2307
+ "ryu",
2308
+ "serde",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "serde_repr"
2313
+ version = "0.1.8"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "a2ad84e47328a31223de7fed7a4f5087f2d6ddfe586cf3ca25b7a165bc0a5aed"
2316
+ dependencies = [
2317
+ "proc-macro2",
2318
+ "quote",
2319
+ "syn 1.0.105",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "serde_spanned"
2324
+ version = "0.6.1"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
2327
+ dependencies = [
2328
+ "serde",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "serde_urlencoded"
2333
+ version = "0.7.1"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2336
+ dependencies = [
2337
+ "form_urlencoded",
2338
+ "itoa 1.0.2",
2339
+ "ryu",
2340
+ "serde",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "serde_with"
2345
+ version = "2.3.3"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe"
2348
+ dependencies = [
2349
+ "base64 0.13.0",
2350
+ "chrono",
2351
+ "hex",
2352
+ "indexmap",
2353
+ "serde",
2354
+ "serde_json",
2355
+ "serde_with_macros",
2356
+ "time",
2357
+ ]
2358
+
2359
+ [[package]]
2360
+ name = "serde_with_macros"
2361
+ version = "2.3.3"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f"
2364
+ dependencies = [
2365
+ "darling",
2366
+ "proc-macro2",
2367
+ "quote",
2368
+ "syn 2.0.15",
2369
+ ]
2370
+
2371
+ [[package]]
2372
+ name = "serialize-to-javascript"
2373
+ version = "0.1.1"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
2376
+ dependencies = [
2377
+ "serde",
2378
+ "serde_json",
2379
+ "serialize-to-javascript-impl",
2380
+ ]
2381
+
2382
+ [[package]]
2383
+ name = "serialize-to-javascript-impl"
2384
+ version = "0.1.1"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
2387
+ dependencies = [
2388
+ "proc-macro2",
2389
+ "quote",
2390
+ "syn 1.0.105",
2391
+ ]
2392
+
2393
+ [[package]]
2394
+ name = "servo_arc"
2395
+ version = "0.1.1"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
2398
+ dependencies = [
2399
+ "nodrop",
2400
+ "stable_deref_trait",
2401
+ ]
2402
+
2403
+ [[package]]
2404
+ name = "sha2"
2405
+ version = "0.10.2"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
2408
+ dependencies = [
2409
+ "cfg-if",
2410
+ "cpufeatures",
2411
+ "digest",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "sharded-slab"
2416
+ version = "0.1.4"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2419
+ dependencies = [
2420
+ "lazy_static",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "siphasher"
2425
+ version = "0.3.10"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2428
+
2429
+ [[package]]
2430
+ name = "slab"
2431
+ version = "0.4.6"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
2434
+
2435
+ [[package]]
2436
+ name = "smallvec"
2437
+ version = "1.9.0"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2440
+
2441
+ [[package]]
2442
+ name = "soup2"
2443
+ version = "0.2.1"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0"
2446
+ dependencies = [
2447
+ "bitflags",
2448
+ "gio",
2449
+ "glib",
2450
+ "libc",
2451
+ "once_cell",
2452
+ "soup2-sys",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "soup2-sys"
2457
+ version = "0.2.0"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf"
2460
+ dependencies = [
2461
+ "bitflags",
2462
+ "gio-sys",
2463
+ "glib-sys",
2464
+ "gobject-sys",
2465
+ "libc",
2466
+ "system-deps 5.0.0",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "stable_deref_trait"
2471
+ version = "1.2.0"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2474
+
2475
+ [[package]]
2476
+ name = "state"
2477
+ version = "0.5.3"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
2480
+ dependencies = [
2481
+ "loom",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "string_cache"
2486
+ version = "0.8.4"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
2489
+ dependencies = [
2490
+ "new_debug_unreachable",
2491
+ "once_cell",
2492
+ "parking_lot",
2493
+ "phf_shared 0.10.0",
2494
+ "precomputed-hash",
2495
+ "serde",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "string_cache_codegen"
2500
+ version = "0.5.2"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2503
+ dependencies = [
2504
+ "phf_generator 0.10.0",
2505
+ "phf_shared 0.10.0",
2506
+ "proc-macro2",
2507
+ "quote",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "strsim"
2512
+ version = "0.10.0"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2515
+
2516
+ [[package]]
2517
+ name = "syn"
2518
+ version = "1.0.105"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908"
2521
+ dependencies = [
2522
+ "proc-macro2",
2523
+ "quote",
2524
+ "unicode-ident",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "syn"
2529
+ version = "2.0.15"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
2532
+ dependencies = [
2533
+ "proc-macro2",
2534
+ "quote",
2535
+ "unicode-ident",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "system-deps"
2540
+ version = "5.0.0"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e"
2543
+ dependencies = [
2544
+ "cfg-expr 0.9.1",
2545
+ "heck 0.3.3",
2546
+ "pkg-config",
2547
+ "toml 0.5.9",
2548
+ "version-compare 0.0.11",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "system-deps"
2553
+ version = "6.0.2"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709"
2556
+ dependencies = [
2557
+ "cfg-expr 0.10.3",
2558
+ "heck 0.4.0",
2559
+ "pkg-config",
2560
+ "toml 0.5.9",
2561
+ "version-compare 0.1.0",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "tao"
2566
+ version = "0.16.0"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "704522803dda895767f69198af8351b0a3f4fe2e293c3ca54cce0ecba05a97f2"
2569
+ dependencies = [
2570
+ "bitflags",
2571
+ "cairo-rs",
2572
+ "cc",
2573
+ "cocoa",
2574
+ "core-foundation",
2575
+ "core-graphics",
2576
+ "crossbeam-channel",
2577
+ "dispatch",
2578
+ "gdk",
2579
+ "gdk-pixbuf",
2580
+ "gdk-sys",
2581
+ "gdkx11-sys",
2582
+ "gio",
2583
+ "glib",
2584
+ "glib-sys",
2585
+ "gtk",
2586
+ "image",
2587
+ "instant",
2588
+ "jni",
2589
+ "lazy_static",
2590
+ "libc",
2591
+ "log",
2592
+ "ndk",
2593
+ "ndk-context",
2594
+ "ndk-sys",
2595
+ "objc",
2596
+ "once_cell",
2597
+ "parking_lot",
2598
+ "png",
2599
+ "raw-window-handle",
2600
+ "scopeguard",
2601
+ "serde",
2602
+ "tao-macros",
2603
+ "unicode-segmentation",
2604
+ "uuid",
2605
+ "windows 0.39.0",
2606
+ "windows-implement",
2607
+ "x11-dl",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "tao-macros"
2612
+ version = "0.1.1"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "3b27a4bcc5eb524658234589bdffc7e7bfb996dbae6ce9393bfd39cb4159b445"
2615
+ dependencies = [
2616
+ "proc-macro2",
2617
+ "quote",
2618
+ "syn 1.0.105",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "tar"
2623
+ version = "0.4.38"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
2626
+ dependencies = [
2627
+ "filetime",
2628
+ "libc",
2629
+ "xattr",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "tauri"
2634
+ version = "1.3.0"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "d42ba3a2e8556722f31336a0750c10dbb6a81396a1c452977f515da83f69f842"
2637
+ dependencies = [
2638
+ "anyhow",
2639
+ "attohttpc",
2640
+ "cocoa",
2641
+ "dirs-next",
2642
+ "embed_plist",
2643
+ "encoding_rs",
2644
+ "flate2",
2645
+ "futures-util",
2646
+ "glib",
2647
+ "glob",
2648
+ "gtk",
2649
+ "heck 0.4.0",
2650
+ "http",
2651
+ "ignore",
2652
+ "objc",
2653
+ "once_cell",
2654
+ "percent-encoding",
2655
+ "rand 0.8.5",
2656
+ "raw-window-handle",
2657
+ "semver 1.0.12",
2658
+ "serde",
2659
+ "serde_json",
2660
+ "serde_repr",
2661
+ "serialize-to-javascript",
2662
+ "state",
2663
+ "tar",
2664
+ "tauri-macros",
2665
+ "tauri-runtime",
2666
+ "tauri-runtime-wry",
2667
+ "tauri-utils",
2668
+ "tempfile",
2669
+ "thiserror",
2670
+ "tokio",
2671
+ "url",
2672
+ "uuid",
2673
+ "webkit2gtk",
2674
+ "webview2-com",
2675
+ "windows 0.39.0",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "tauri-build"
2680
+ version = "1.3.0"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "929b3bd1248afc07b63e33a6a53c3f82c32d0b0a5e216e4530e94c467e019389"
2683
+ dependencies = [
2684
+ "anyhow",
2685
+ "cargo_toml",
2686
+ "heck 0.4.0",
2687
+ "json-patch",
2688
+ "semver 1.0.12",
2689
+ "serde",
2690
+ "serde_json",
2691
+ "tauri-utils",
2692
+ "tauri-winres",
2693
+ "winnow",
2694
+ ]
2695
+
2696
+ [[package]]
2697
+ name = "tauri-codegen"
2698
+ version = "1.3.0"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "e5a2105f807c6f50b2fa2ce5abd62ef207bc6f14c9fcc6b8caec437f6fb13bde"
2701
+ dependencies = [
2702
+ "base64 0.21.0",
2703
+ "brotli",
2704
+ "ico",
2705
+ "json-patch",
2706
+ "plist",
2707
+ "png",
2708
+ "proc-macro2",
2709
+ "quote",
2710
+ "semver 1.0.12",
2711
+ "serde",
2712
+ "serde_json",
2713
+ "sha2",
2714
+ "tauri-utils",
2715
+ "thiserror",
2716
+ "time",
2717
+ "uuid",
2718
+ "walkdir",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "tauri-macros"
2723
+ version = "1.3.0"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "8784cfe6f5444097e93c69107d1ac5e8f13d02850efa8d8f2a40fe79674cef46"
2726
+ dependencies = [
2727
+ "heck 0.4.0",
2728
+ "proc-macro2",
2729
+ "quote",
2730
+ "syn 1.0.105",
2731
+ "tauri-codegen",
2732
+ "tauri-utils",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "tauri-runtime"
2737
+ version = "0.13.0"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "b3b80ea3fcd5fefb60739a3b577b277e8fc30434538a2f5bba82ad7d4368c422"
2740
+ dependencies = [
2741
+ "gtk",
2742
+ "http",
2743
+ "http-range",
2744
+ "rand 0.8.5",
2745
+ "raw-window-handle",
2746
+ "serde",
2747
+ "serde_json",
2748
+ "tauri-utils",
2749
+ "thiserror",
2750
+ "url",
2751
+ "uuid",
2752
+ "webview2-com",
2753
+ "windows 0.39.0",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "tauri-runtime-wry"
2758
+ version = "0.13.0"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "d1c396950b1ba06aee1b4ffe6c7cd305ff433ca0e30acbc5fa1a2f92a4ce70f1"
2761
+ dependencies = [
2762
+ "cocoa",
2763
+ "gtk",
2764
+ "percent-encoding",
2765
+ "rand 0.8.5",
2766
+ "raw-window-handle",
2767
+ "tauri-runtime",
2768
+ "tauri-utils",
2769
+ "uuid",
2770
+ "webkit2gtk",
2771
+ "webview2-com",
2772
+ "windows 0.39.0",
2773
+ "wry",
2774
+ ]
2775
+
2776
+ [[package]]
2777
+ name = "tauri-utils"
2778
+ version = "1.3.0"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "5a6f9c2dafef5cbcf52926af57ce9561bd33bb41d7394f8bb849c0330260d864"
2781
+ dependencies = [
2782
+ "brotli",
2783
+ "ctor",
2784
+ "glob",
2785
+ "heck 0.4.0",
2786
+ "html5ever",
2787
+ "infer",
2788
+ "json-patch",
2789
+ "kuchiki",
2790
+ "memchr",
2791
+ "phf 0.10.1",
2792
+ "proc-macro2",
2793
+ "quote",
2794
+ "semver 1.0.12",
2795
+ "serde",
2796
+ "serde_json",
2797
+ "serde_with",
2798
+ "thiserror",
2799
+ "url",
2800
+ "walkdir",
2801
+ "windows 0.39.0",
2802
+ ]
2803
+
2804
+ [[package]]
2805
+ name = "tauri-winres"
2806
+ version = "0.1.0"
2807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2808
+ checksum = "1b7a78dc04f75fb5ab815e66ac561c81e92a968a40f29e7c21afd152d694fad8"
2809
+ dependencies = [
2810
+ "toml 0.5.9",
2811
+ "version_check",
2812
+ ]
2813
+
2814
+ [[package]]
2815
+ name = "tempfile"
2816
+ version = "3.3.0"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2819
+ dependencies = [
2820
+ "cfg-if",
2821
+ "fastrand",
2822
+ "libc",
2823
+ "redox_syscall",
2824
+ "remove_dir_all",
2825
+ "winapi",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "tendril"
2830
+ version = "0.4.3"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2833
+ dependencies = [
2834
+ "futf",
2835
+ "mac",
2836
+ "utf-8",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "termcolor"
2841
+ version = "1.2.0"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2844
+ dependencies = [
2845
+ "winapi-util",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "thin-slice"
2850
+ version = "0.1.1"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
2853
+
2854
+ [[package]]
2855
+ name = "thiserror"
2856
+ version = "1.0.40"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2859
+ dependencies = [
2860
+ "thiserror-impl",
2861
+ ]
2862
+
2863
+ [[package]]
2864
+ name = "thiserror-impl"
2865
+ version = "1.0.40"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2868
+ dependencies = [
2869
+ "proc-macro2",
2870
+ "quote",
2871
+ "syn 2.0.15",
2872
+ ]
2873
+
2874
+ [[package]]
2875
+ name = "thread_local"
2876
+ version = "1.1.4"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2879
+ dependencies = [
2880
+ "once_cell",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "time"
2885
+ version = "0.3.15"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
2888
+ dependencies = [
2889
+ "itoa 1.0.2",
2890
+ "libc",
2891
+ "num_threads",
2892
+ "serde",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "tinyvec"
2897
+ version = "1.6.0"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2900
+ dependencies = [
2901
+ "tinyvec_macros",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "tinyvec_macros"
2906
+ version = "0.1.0"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2909
+
2910
+ [[package]]
2911
+ name = "tokio"
2912
+ version = "1.20.0"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e"
2915
+ dependencies = [
2916
+ "autocfg",
2917
+ "bytes",
2918
+ "memchr",
2919
+ "num_cpus",
2920
+ "once_cell",
2921
+ "pin-project-lite",
2922
+ ]
2923
+
2924
+ [[package]]
2925
+ name = "toml"
2926
+ version = "0.5.9"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
2929
+ dependencies = [
2930
+ "serde",
2931
+ ]
2932
+
2933
+ [[package]]
2934
+ name = "toml"
2935
+ version = "0.7.3"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
2938
+ dependencies = [
2939
+ "serde",
2940
+ "serde_spanned",
2941
+ "toml_datetime",
2942
+ "toml_edit",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "toml_datetime"
2947
+ version = "0.6.1"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
2950
+ dependencies = [
2951
+ "serde",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "toml_edit"
2956
+ version = "0.19.8"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
2959
+ dependencies = [
2960
+ "indexmap",
2961
+ "serde",
2962
+ "serde_spanned",
2963
+ "toml_datetime",
2964
+ "winnow",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "tracing"
2969
+ version = "0.1.35"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
2972
+ dependencies = [
2973
+ "cfg-if",
2974
+ "pin-project-lite",
2975
+ "tracing-attributes",
2976
+ "tracing-core",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "tracing-attributes"
2981
+ version = "0.1.22"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
2984
+ dependencies = [
2985
+ "proc-macro2",
2986
+ "quote",
2987
+ "syn 1.0.105",
2988
+ ]
2989
+
2990
+ [[package]]
2991
+ name = "tracing-core"
2992
+ version = "0.1.28"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
2995
+ dependencies = [
2996
+ "once_cell",
2997
+ "valuable",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "tracing-log"
3002
+ version = "0.1.3"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
3005
+ dependencies = [
3006
+ "lazy_static",
3007
+ "log",
3008
+ "tracing-core",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "tracing-subscriber"
3013
+ version = "0.3.14"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "3a713421342a5a666b7577783721d3117f1b69a393df803ee17bb73b1e122a59"
3016
+ dependencies = [
3017
+ "ansi_term",
3018
+ "matchers",
3019
+ "once_cell",
3020
+ "regex",
3021
+ "sharded-slab",
3022
+ "smallvec",
3023
+ "thread_local",
3024
+ "tracing",
3025
+ "tracing-core",
3026
+ "tracing-log",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "treediff"
3031
+ version = "4.0.2"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303"
3034
+ dependencies = [
3035
+ "serde_json",
3036
+ ]
3037
+
3038
+ [[package]]
3039
+ name = "typenum"
3040
+ version = "1.15.0"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
3043
+
3044
+ [[package]]
3045
+ name = "ucd-trie"
3046
+ version = "0.1.4"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c"
3049
+
3050
+ [[package]]
3051
+ name = "unicode-bidi"
3052
+ version = "0.3.8"
3053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
3055
+
3056
+ [[package]]
3057
+ name = "unicode-ident"
3058
+ version = "1.0.1"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
3061
+
3062
+ [[package]]
3063
+ name = "unicode-normalization"
3064
+ version = "0.1.21"
3065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3066
+ checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
3067
+ dependencies = [
3068
+ "tinyvec",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "unicode-segmentation"
3073
+ version = "1.10.0"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
3076
+
3077
+ [[package]]
3078
+ name = "unicode-width"
3079
+ version = "0.1.10"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
3082
+
3083
+ [[package]]
3084
+ name = "url"
3085
+ version = "2.3.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
3088
+ dependencies = [
3089
+ "form_urlencoded",
3090
+ "idna",
3091
+ "percent-encoding",
3092
+ "serde",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "utf-8"
3097
+ version = "0.7.6"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3100
+
3101
+ [[package]]
3102
+ name = "uuid"
3103
+ version = "1.2.2"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
3106
+ dependencies = [
3107
+ "getrandom 0.2.7",
3108
+ ]
3109
+
3110
+ [[package]]
3111
+ name = "valuable"
3112
+ version = "0.1.0"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3115
+
3116
+ [[package]]
3117
+ name = "vcpkg"
3118
+ version = "0.2.15"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3121
+
3122
+ [[package]]
3123
+ name = "version-compare"
3124
+ version = "0.0.11"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
3127
+
3128
+ [[package]]
3129
+ name = "version-compare"
3130
+ version = "0.1.0"
3131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3132
+ checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
3133
+
3134
+ [[package]]
3135
+ name = "version_check"
3136
+ version = "0.9.4"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3139
+
3140
+ [[package]]
3141
+ name = "walkdir"
3142
+ version = "2.3.2"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
3145
+ dependencies = [
3146
+ "same-file",
3147
+ "winapi",
3148
+ "winapi-util",
3149
+ ]
3150
+
3151
+ [[package]]
3152
+ name = "wasi"
3153
+ version = "0.9.0+wasi-snapshot-preview1"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3156
+
3157
+ [[package]]
3158
+ name = "wasi"
3159
+ version = "0.11.0+wasi-snapshot-preview1"
3160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3161
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3162
+
3163
+ [[package]]
3164
+ name = "wasm-bindgen"
3165
+ version = "0.2.84"
3166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3167
+ checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
3168
+ dependencies = [
3169
+ "cfg-if",
3170
+ "wasm-bindgen-macro",
3171
+ ]
3172
+
3173
+ [[package]]
3174
+ name = "wasm-bindgen-backend"
3175
+ version = "0.2.84"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
3178
+ dependencies = [
3179
+ "bumpalo",
3180
+ "log",
3181
+ "once_cell",
3182
+ "proc-macro2",
3183
+ "quote",
3184
+ "syn 1.0.105",
3185
+ "wasm-bindgen-shared",
3186
+ ]
3187
+
3188
+ [[package]]
3189
+ name = "wasm-bindgen-macro"
3190
+ version = "0.2.84"
3191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3192
+ checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
3193
+ dependencies = [
3194
+ "quote",
3195
+ "wasm-bindgen-macro-support",
3196
+ ]
3197
+
3198
+ [[package]]
3199
+ name = "wasm-bindgen-macro-support"
3200
+ version = "0.2.84"
3201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3202
+ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
3203
+ dependencies = [
3204
+ "proc-macro2",
3205
+ "quote",
3206
+ "syn 1.0.105",
3207
+ "wasm-bindgen-backend",
3208
+ "wasm-bindgen-shared",
3209
+ ]
3210
+
3211
+ [[package]]
3212
+ name = "wasm-bindgen-shared"
3213
+ version = "0.2.84"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
3216
+
3217
+ [[package]]
3218
+ name = "webkit2gtk"
3219
+ version = "0.18.2"
3220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3221
+ checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370"
3222
+ dependencies = [
3223
+ "bitflags",
3224
+ "cairo-rs",
3225
+ "gdk",
3226
+ "gdk-sys",
3227
+ "gio",
3228
+ "gio-sys",
3229
+ "glib",
3230
+ "glib-sys",
3231
+ "gobject-sys",
3232
+ "gtk",
3233
+ "gtk-sys",
3234
+ "javascriptcore-rs",
3235
+ "libc",
3236
+ "once_cell",
3237
+ "soup2",
3238
+ "webkit2gtk-sys",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "webkit2gtk-sys"
3243
+ version = "0.18.0"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
3246
+ dependencies = [
3247
+ "atk-sys",
3248
+ "bitflags",
3249
+ "cairo-sys-rs",
3250
+ "gdk-pixbuf-sys",
3251
+ "gdk-sys",
3252
+ "gio-sys",
3253
+ "glib-sys",
3254
+ "gobject-sys",
3255
+ "gtk-sys",
3256
+ "javascriptcore-rs-sys",
3257
+ "libc",
3258
+ "pango-sys",
3259
+ "pkg-config",
3260
+ "soup2-sys",
3261
+ "system-deps 6.0.2",
3262
+ ]
3263
+
3264
+ [[package]]
3265
+ name = "webview2-com"
3266
+ version = "0.19.1"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178"
3269
+ dependencies = [
3270
+ "webview2-com-macros",
3271
+ "webview2-com-sys",
3272
+ "windows 0.39.0",
3273
+ "windows-implement",
3274
+ ]
3275
+
3276
+ [[package]]
3277
+ name = "webview2-com-macros"
3278
+ version = "0.6.0"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
3281
+ dependencies = [
3282
+ "proc-macro2",
3283
+ "quote",
3284
+ "syn 1.0.105",
3285
+ ]
3286
+
3287
+ [[package]]
3288
+ name = "webview2-com-sys"
3289
+ version = "0.19.0"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7"
3292
+ dependencies = [
3293
+ "regex",
3294
+ "serde",
3295
+ "serde_json",
3296
+ "thiserror",
3297
+ "windows 0.39.0",
3298
+ "windows-bindgen",
3299
+ "windows-metadata",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "winapi"
3304
+ version = "0.3.9"
3305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3306
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3307
+ dependencies = [
3308
+ "winapi-i686-pc-windows-gnu",
3309
+ "winapi-x86_64-pc-windows-gnu",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "winapi-i686-pc-windows-gnu"
3314
+ version = "0.4.0"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3317
+
3318
+ [[package]]
3319
+ name = "winapi-util"
3320
+ version = "0.1.5"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3323
+ dependencies = [
3324
+ "winapi",
3325
+ ]
3326
+
3327
+ [[package]]
3328
+ name = "winapi-x86_64-pc-windows-gnu"
3329
+ version = "0.4.0"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3332
+
3333
+ [[package]]
3334
+ name = "windows"
3335
+ version = "0.39.0"
3336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3337
+ checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
3338
+ dependencies = [
3339
+ "windows-implement",
3340
+ "windows_aarch64_msvc 0.39.0",
3341
+ "windows_i686_gnu 0.39.0",
3342
+ "windows_i686_msvc 0.39.0",
3343
+ "windows_x86_64_gnu 0.39.0",
3344
+ "windows_x86_64_msvc 0.39.0",
3345
+ ]
3346
+
3347
+ [[package]]
3348
+ name = "windows"
3349
+ version = "0.48.0"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3352
+ dependencies = [
3353
+ "windows-targets",
3354
+ ]
3355
+
3356
+ [[package]]
3357
+ name = "windows-bindgen"
3358
+ version = "0.39.0"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41"
3361
+ dependencies = [
3362
+ "windows-metadata",
3363
+ "windows-tokens",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "windows-implement"
3368
+ version = "0.39.0"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7"
3371
+ dependencies = [
3372
+ "syn 1.0.105",
3373
+ "windows-tokens",
3374
+ ]
3375
+
3376
+ [[package]]
3377
+ name = "windows-metadata"
3378
+ version = "0.39.0"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278"
3381
+
3382
+ [[package]]
3383
+ name = "windows-sys"
3384
+ version = "0.36.1"
3385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3386
+ checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
3387
+ dependencies = [
3388
+ "windows_aarch64_msvc 0.36.1",
3389
+ "windows_i686_gnu 0.36.1",
3390
+ "windows_i686_msvc 0.36.1",
3391
+ "windows_x86_64_gnu 0.36.1",
3392
+ "windows_x86_64_msvc 0.36.1",
3393
+ ]
3394
+
3395
+ [[package]]
3396
+ name = "windows-targets"
3397
+ version = "0.48.0"
3398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3399
+ checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
3400
+ dependencies = [
3401
+ "windows_aarch64_gnullvm",
3402
+ "windows_aarch64_msvc 0.48.0",
3403
+ "windows_i686_gnu 0.48.0",
3404
+ "windows_i686_msvc 0.48.0",
3405
+ "windows_x86_64_gnu 0.48.0",
3406
+ "windows_x86_64_gnullvm",
3407
+ "windows_x86_64_msvc 0.48.0",
3408
+ ]
3409
+
3410
+ [[package]]
3411
+ name = "windows-tokens"
3412
+ version = "0.39.0"
3413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3414
+ checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
3415
+
3416
+ [[package]]
3417
+ name = "windows_aarch64_gnullvm"
3418
+ version = "0.48.0"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
3421
+
3422
+ [[package]]
3423
+ name = "windows_aarch64_msvc"
3424
+ version = "0.36.1"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
3427
+
3428
+ [[package]]
3429
+ name = "windows_aarch64_msvc"
3430
+ version = "0.39.0"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
3433
+
3434
+ [[package]]
3435
+ name = "windows_aarch64_msvc"
3436
+ version = "0.48.0"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
3439
+
3440
+ [[package]]
3441
+ name = "windows_i686_gnu"
3442
+ version = "0.36.1"
3443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3444
+ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
3445
+
3446
+ [[package]]
3447
+ name = "windows_i686_gnu"
3448
+ version = "0.39.0"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
3451
+
3452
+ [[package]]
3453
+ name = "windows_i686_gnu"
3454
+ version = "0.48.0"
3455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3456
+ checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
3457
+
3458
+ [[package]]
3459
+ name = "windows_i686_msvc"
3460
+ version = "0.36.1"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
3463
+
3464
+ [[package]]
3465
+ name = "windows_i686_msvc"
3466
+ version = "0.39.0"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
3469
+
3470
+ [[package]]
3471
+ name = "windows_i686_msvc"
3472
+ version = "0.48.0"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
3475
+
3476
+ [[package]]
3477
+ name = "windows_x86_64_gnu"
3478
+ version = "0.36.1"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
3481
+
3482
+ [[package]]
3483
+ name = "windows_x86_64_gnu"
3484
+ version = "0.39.0"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
3487
+
3488
+ [[package]]
3489
+ name = "windows_x86_64_gnu"
3490
+ version = "0.48.0"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
3493
+
3494
+ [[package]]
3495
+ name = "windows_x86_64_gnullvm"
3496
+ version = "0.48.0"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
3499
+
3500
+ [[package]]
3501
+ name = "windows_x86_64_msvc"
3502
+ version = "0.36.1"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
3505
+
3506
+ [[package]]
3507
+ name = "windows_x86_64_msvc"
3508
+ version = "0.39.0"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
3511
+
3512
+ [[package]]
3513
+ name = "windows_x86_64_msvc"
3514
+ version = "0.48.0"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
3517
+
3518
+ [[package]]
3519
+ name = "winnow"
3520
+ version = "0.4.1"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28"
3523
+ dependencies = [
3524
+ "memchr",
3525
+ ]
3526
+
3527
+ [[package]]
3528
+ name = "wry"
3529
+ version = "0.24.1"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "1c846dc4dda988e959869dd0802cd27417c9696e584593e49178aeee28890d25"
3532
+ dependencies = [
3533
+ "base64 0.13.0",
3534
+ "block",
3535
+ "cocoa",
3536
+ "core-graphics",
3537
+ "crossbeam-channel",
3538
+ "dunce",
3539
+ "gdk",
3540
+ "gio",
3541
+ "glib",
3542
+ "gtk",
3543
+ "html5ever",
3544
+ "http",
3545
+ "kuchiki",
3546
+ "libc",
3547
+ "log",
3548
+ "objc",
3549
+ "objc_id",
3550
+ "once_cell",
3551
+ "serde",
3552
+ "serde_json",
3553
+ "sha2",
3554
+ "soup2",
3555
+ "tao",
3556
+ "thiserror",
3557
+ "url",
3558
+ "webkit2gtk",
3559
+ "webkit2gtk-sys",
3560
+ "webview2-com",
3561
+ "windows 0.39.0",
3562
+ "windows-implement",
3563
+ ]
3564
+
3565
+ [[package]]
3566
+ name = "x11"
3567
+ version = "2.19.1"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "6dd0565fa8bfba8c5efe02725b14dff114c866724eff2cfd44d76cea74bcd87a"
3570
+ dependencies = [
3571
+ "libc",
3572
+ "pkg-config",
3573
+ ]
3574
+
3575
+ [[package]]
3576
+ name = "x11-dl"
3577
+ version = "2.20.1"
3578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3579
+ checksum = "b1536d6965a5d4e573c7ef73a2c15ebcd0b2de3347bdf526c34c297c00ac40f0"
3580
+ dependencies = [
3581
+ "lazy_static",
3582
+ "libc",
3583
+ "pkg-config",
3584
+ ]
3585
+
3586
+ [[package]]
3587
+ name = "xattr"
3588
+ version = "0.2.3"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
3591
+ dependencies = [
3592
+ "libc",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "xml-rs"
3597
+ version = "0.8.4"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"