stacks 0.53.1 → 0.56.3

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 (461) hide show
  1. package/.gitignore +4 -2
  2. package/README.md +71 -74
  3. package/api/package.json +3 -2
  4. package/art/logo-dark.svg +11 -0
  5. package/art/logo.svg +11 -0
  6. package/auto-imports.d.ts +1182 -841
  7. package/components.d.ts +7 -9
  8. package/core/actions/build.config.ts +181 -9
  9. package/core/actions/package.json +6 -8
  10. package/core/actions/src/build/component-libs.ts +2 -12
  11. package/core/actions/src/dev/index.ts +6 -5
  12. package/core/actions/src/generate/index.ts +2 -2
  13. package/core/actions/src/generate/settings.ts +1 -1
  14. package/core/actions/src/helpers/lib-entries.ts +43 -35
  15. package/core/actions/src/helpers/utils.ts +7 -9
  16. package/core/actions/src/lint/index.ts +14 -2
  17. package/core/actions/src/make.ts +7 -4
  18. package/core/actions/src/migrate.ts +2 -2
  19. package/core/actions/src/prepublish.ts +2 -2
  20. package/core/actions/src/release.ts +1 -1
  21. package/core/actions/src/seed.ts +1 -1
  22. package/core/actions/src/upgrade/framework.ts +1 -1
  23. package/core/actions/src/upgrade.ts +3 -3
  24. package/core/ai/build.config.ts +5 -7
  25. package/core/ai/package.json +5 -9
  26. package/core/alias/build.config.ts +5 -7
  27. package/core/alias/package.json +3 -6
  28. package/core/alias/src/index.ts +6 -7
  29. package/core/analytics/build.config.ts +5 -7
  30. package/core/analytics/package.json +6 -6
  31. package/core/arrays/build.config.ts +4 -7
  32. package/core/arrays/package.json +8 -4
  33. package/core/arrays/src/contains.ts +23 -0
  34. package/core/arrays/src/helpers.ts +206 -0
  35. package/core/arrays/src/index.ts +4 -226
  36. package/core/arrays/src/macro.ts +135 -0
  37. package/core/arrays/src/math.ts +19 -0
  38. package/core/auth/build.config.ts +4 -7
  39. package/core/auth/package.json +3 -3
  40. package/core/buddy/README.md +73 -76
  41. package/core/buddy/build.config.ts +1 -2
  42. package/core/buddy/package.json +4 -4
  43. package/core/buddy/src/cli.ts +10 -18
  44. package/core/buddy/src/commands/add.ts +2 -2
  45. package/core/buddy/src/commands/build.ts +23 -16
  46. package/core/buddy/src/commands/create.ts +2 -2
  47. package/core/buddy/src/commands/dev.ts +31 -30
  48. package/core/buddy/src/commands/example.ts +8 -14
  49. package/core/buddy/src/commands/generate.ts +16 -14
  50. package/core/buddy/src/commands/key.ts +1 -1
  51. package/core/buddy/src/commands/lint.ts +4 -4
  52. package/core/buddy/src/commands/make.ts +20 -15
  53. package/core/buddy/src/commands/setting.ts +2 -2
  54. package/core/buddy/src/commands/upgrade.ts +18 -22
  55. package/core/buddy/src/commands/version.ts +1 -1
  56. package/core/build/build.config.ts +22 -7
  57. package/core/build/package.json +11 -10
  58. package/core/build/src/desktop.ts +2 -2
  59. package/core/build/src/example-vue.ts +5 -4
  60. package/core/build/src/example-wc.ts +5 -4
  61. package/core/build/src/functions.ts +9 -11
  62. package/core/build/src/index.ts +7 -7
  63. package/core/build/src/stacks.ts +31 -50
  64. package/core/build/src/{pages.ts → views.ts} +13 -14
  65. package/core/build/src/vue-components.ts +73 -12
  66. package/core/build/src/web-components.ts +12 -11
  67. package/core/build/web-types.ts +3 -3
  68. package/core/cache/build.config.ts +7 -7
  69. package/core/cache/package.json +17 -17
  70. package/core/cache/tests/DynamoDB.test.ts +19 -33
  71. package/core/chat/build.config.ts +5 -7
  72. package/core/chat/package.json +8 -8
  73. package/core/cli/build.config.ts +3 -2
  74. package/core/cli/package.json +3 -3
  75. package/core/cli/src/console.ts +75 -2
  76. package/core/cli/src/helpers.ts +1 -1
  77. package/core/cli/src/parse.ts +2 -2
  78. package/core/cli/src/run.ts +5 -6
  79. package/core/cloud/build.config.ts +4 -7
  80. package/core/cloud/package.json +17 -3
  81. package/core/cloud/src/aws/index.ts +9 -0
  82. package/core/cloud/src/aws/logger.ts +8 -0
  83. package/core/cloud/src/aws/metrics.ts +8 -0
  84. package/core/cloud/src/aws/stack.ts +12 -0
  85. package/core/cloud/src/aws/tracer.ts +3 -0
  86. package/core/cloud/src/index.ts +1 -1
  87. package/core/cloud/src/runtime/nodejs/bootstrap.ts +16 -0
  88. package/core/cloud/src/runtime/nodejs/build.sh +1 -0
  89. package/core/collections/build.config.ts +3 -7
  90. package/core/collections/package.json +3 -3
  91. package/core/config/build.config.ts +33 -33
  92. package/core/config/package.json +4 -4
  93. package/core/config/src/defaults.ts +0 -3
  94. package/core/config/src/stacks.ts +10 -11
  95. package/core/database/build.config.ts +1 -2
  96. package/core/database/package.json +3 -3
  97. package/core/database/src/factory/index.ts +1 -1
  98. package/core/database/src/migrations/index.ts +1 -1
  99. package/core/datetime/build.config.ts +1 -2
  100. package/core/datetime/package.json +3 -3
  101. package/core/datetime/src/index.ts +2 -1
  102. package/core/desktop/build.config.ts +2 -1
  103. package/core/desktop/package.json +6 -6
  104. package/core/development/build.config.ts +15 -8
  105. package/core/development/package.json +11 -5
  106. package/core/development/src/index.ts +2 -0
  107. package/core/{domains → dns}/README.md +2 -2
  108. package/core/dns/build.config.ts +22 -0
  109. package/core/{domains → dns}/package.json +13 -9
  110. package/core/dns/src/index.ts +18 -0
  111. package/core/docs/build.config.ts +1 -2
  112. package/core/docs/package.json +4 -4
  113. package/core/email/build.config.ts +1 -2
  114. package/core/email/package.json +15 -15
  115. package/core/email/src/drivers/emailjs.ts +1 -1
  116. package/core/email/src/drivers/mailgun.ts +1 -1
  117. package/core/email/src/drivers/mailjet.ts +2 -2
  118. package/core/email/src/drivers/mandrill.ts +1 -1
  119. package/core/email/src/drivers/netcore.ts +1 -1
  120. package/core/email/src/drivers/nodemailer.ts +1 -1
  121. package/core/email/src/drivers/postmark.ts +1 -1
  122. package/core/email/src/drivers/sendgrid.ts +1 -1
  123. package/core/error-handling/build.config.ts +7 -2
  124. package/core/error-handling/package.json +6 -4
  125. package/core/error-handling/src/index.ts +45 -0
  126. package/core/events/README.md +1 -1
  127. package/core/events/build.config.ts +1 -2
  128. package/core/events/package.json +3 -3
  129. package/core/events/src/index.ts +8 -1
  130. package/core/faker/build.config.ts +3 -1
  131. package/core/faker/package.json +4 -4
  132. package/core/git/build.config.ts +3 -1
  133. package/core/git/package.json +4 -4
  134. package/core/health/build.config.ts +3 -1
  135. package/core/health/package.json +3 -3
  136. package/core/lint/build.config.ts +3 -1
  137. package/core/lint/package.json +6 -6
  138. package/core/logging/build.config.ts +5 -3
  139. package/core/logging/package.json +6 -6
  140. package/core/modules/build.config.ts +10 -7
  141. package/core/modules/package.json +3 -3
  142. package/core/notifications/README.md +1 -1
  143. package/core/notifications/build.config.ts +2 -1
  144. package/core/notifications/package.json +25 -25
  145. package/core/notifications/src/tailwind.config.ts +1 -1
  146. package/core/notifications/tests/email/Mailgun.test.ts +4 -4
  147. package/core/notifications/tests/email/Sendgrid.test.ts +2 -2
  148. package/core/objects/build.config.ts +15 -7
  149. package/core/objects/package.json +5 -4
  150. package/core/orm/build.config.ts +1 -2
  151. package/core/orm/package.json +3 -3
  152. package/core/pages/build.config.ts +4 -7
  153. package/core/pages/package.json +3 -3
  154. package/core/pages/src/index.ts +2 -2
  155. package/core/path/build.config.ts +1 -2
  156. package/core/path/package.json +4 -5
  157. package/core/path/src/index.ts +84 -65
  158. package/core/payments/build.config.ts +4 -7
  159. package/core/payments/package.json +5 -5
  160. package/core/push/build.config.ts +4 -7
  161. package/core/push/package.json +5 -5
  162. package/core/query-builder/build.config.ts +4 -7
  163. package/core/query-builder/package.json +7 -7
  164. package/core/queue/build.config.ts +4 -7
  165. package/core/queue/package.json +3 -3
  166. package/core/realtime/build.config.ts +4 -7
  167. package/core/realtime/package.json +3 -3
  168. package/core/realtime/src/index.ts +3 -1
  169. package/core/repl/README.md +53 -0
  170. package/core/repl/build.config.ts +12 -0
  171. package/core/repl/package.json +56 -0
  172. package/core/repl/src/index.ts +1 -0
  173. package/core/repl/tests/example.test.ts +7 -0
  174. package/core/router/build.config.ts +13 -7
  175. package/core/router/package.json +4 -4
  176. package/core/router/src/index.ts +2 -0
  177. package/core/scheduler/build.config.ts +4 -7
  178. package/core/scheduler/package.json +4 -4
  179. package/core/search-engine/build.config.ts +17 -7
  180. package/core/search-engine/package.json +4 -4
  181. package/core/search-engine/src/index.ts +2 -2
  182. package/core/security/build.config.ts +17 -7
  183. package/core/security/package.json +4 -3
  184. package/core/security/src/crypt.ts +11 -2
  185. package/core/server/build.config.ts +3 -7
  186. package/core/server/package.json +5 -5
  187. package/core/signals/README.md +2 -2
  188. package/core/signals/build.config.ts +4 -7
  189. package/core/signals/package.json +4 -4
  190. package/core/signals/src/index.ts +1 -1
  191. package/core/slug/build.config.ts +4 -7
  192. package/core/slug/package.json +3 -3
  193. package/core/slug/src/index.ts +2 -1
  194. package/core/sms/build.config.ts +3 -1
  195. package/core/sms/package.json +13 -13
  196. package/core/storage/build.config.ts +3 -7
  197. package/core/storage/package.json +5 -5
  198. package/core/storage/src/index.ts +2 -22
  199. package/core/strings/build.config.ts +1 -2
  200. package/core/strings/package.json +9 -3
  201. package/core/strings/src/case.ts +12 -0
  202. package/core/strings/src/index.ts +2 -1
  203. package/core/strings/src/is.ts +170 -0
  204. package/core/strings/src/macro.ts +139 -0
  205. package/core/strings/src/utils.ts +10 -12
  206. package/core/testing/build.config.ts +3 -1
  207. package/core/testing/package.json +8 -8
  208. package/core/tinker/build.config.ts +12 -0
  209. package/core/tinker/package.json +15 -3
  210. package/core/tinker/src/index.ts +1 -0
  211. package/core/types/build.config.ts +17 -8
  212. package/core/types/package.json +25 -19
  213. package/core/types/src/app.ts +4 -4
  214. package/core/types/src/cli.ts +36 -34
  215. package/core/types/src/cron-jobs.ts +25 -4
  216. package/core/types/src/database.ts +12 -3
  217. package/core/types/src/errors.ts +19 -1
  218. package/core/types/src/events.ts +13 -5
  219. package/core/types/src/git.ts +1 -1
  220. package/core/types/src/index.ts +2 -1
  221. package/core/types/src/library.ts +0 -7
  222. package/core/types/src/model.ts +21 -7
  223. package/core/types/src/money.ts +3 -0
  224. package/core/types/src/notifications.ts +9 -7
  225. package/core/types/src/queue.ts +34 -0
  226. package/core/types/src/search-engine.ts +3 -3
  227. package/core/types/src/stacks.ts +1 -12
  228. package/core/ui/build.config.ts +5 -7
  229. package/core/ui/package.json +7 -7
  230. package/core/utils/build.config.ts +32 -7
  231. package/core/utils/package.json +16 -16
  232. package/core/utils/src/config.ts +88 -49
  233. package/core/utils/src/currency.ts +3 -0
  234. package/core/utils/src/delete.ts +1 -3
  235. package/core/utils/src/helpers.ts +11 -5
  236. package/core/validation/build.config.ts +18 -8
  237. package/core/validation/package.json +8 -6
  238. package/core/validation/src/index.ts +2 -0
  239. package/core/validation/src/is.ts +27 -174
  240. package/core/validation/src/rules.ts +126 -0
  241. package/core/validation/src/types/env.ts +147 -0
  242. package/core/validation/src/types/index.ts +2 -0
  243. package/core/validation/src/types/money.ts +17 -0
  244. package/core/validation/src/validate.ts +14 -25
  245. package/core/vite-plugin/README.md +59 -0
  246. package/core/vite-plugin/build.config.ts +21 -0
  247. package/core/vite-plugin/package.json +51 -0
  248. package/core/vite-plugin/src/index.ts +23 -0
  249. package/core/vite-plugin/tests/example.test.ts +7 -0
  250. package/dictionary.txt +228 -0
  251. package/docs/package.json +3 -2
  252. package/env.d.ts +7 -0
  253. package/ide/jetbrains/.fleet/run.json +5 -0
  254. package/ide/jetbrains/.fleet/settings.json +4 -0
  255. package/ide/jetbrains/.idea/.gitignore +5 -0
  256. package/ide/jetbrains/.idea/inspectionProfiles/Project_Default.xml +6 -0
  257. package/ide/jetbrains/.idea/jsLibraryMappings.xml +6 -0
  258. package/ide/jetbrains/.idea/jsLinters/eslint.xml +7 -0
  259. package/ide/jetbrains/.idea/modules.xml +8 -0
  260. package/ide/jetbrains/.idea/stacks.iml +69 -0
  261. package/ide/jetbrains/.idea/vcs.xml +6 -0
  262. package/ide/jetbrains/.idea/webResources.xml +14 -0
  263. package/ide/jetbrains/.idea/workspace.xml +225 -0
  264. package/ide/jetbrains/IntelliJ IDEA Global Settings +0 -0
  265. package/ide/jetbrains/installed.txt +4 -0
  266. package/ide/jetbrains/options/github-copilot.xml +5 -0
  267. package/ide/jetbrains/options/nodejs.xml +7 -0
  268. package/ide/jetbrains/options/templates.xml +124 -0
  269. package/ide/jetbrains/templates/JavaScript.xml +6 -0
  270. package/ide/jetbrains/templates/Stacks.xml +8 -0
  271. package/ide/vscode/.vscode/README.md +23 -0
  272. package/ide/vscode/.vscode/extensions.json +5 -0
  273. package/ide/vscode/.vscode/settings.json +111 -0
  274. package/ide/vscode/.vscode/stacks.code-snippets +182 -0
  275. package/ide/vscode/README.md +42 -0
  276. package/ide/vscode/logo.png +0 -0
  277. package/ide/vscode/package.json +64 -0
  278. package/{components → libs/components}/vue/main.ts +1 -1
  279. package/{components → libs/components}/vue/package.json +1 -1
  280. package/{components → libs/components}/web/package.json +1 -1
  281. package/libs/examples/vue/App.vue +12 -0
  282. package/libs/examples/vue/favicon.png +0 -0
  283. package/libs/examples/vue/index.html +20 -0
  284. package/libs/examples/web/favicon.png +0 -0
  285. package/libs/examples/web/index.html +13 -0
  286. package/libs/functions/package.json +41 -0
  287. package/package.json +104 -98
  288. package/reset.d.ts +1 -0
  289. package/scripts/ensure.sh +33 -0
  290. package/scripts/publish.sh +18 -0
  291. package/scripts/setup.sh +540 -0
  292. package/stacks/dashboard/README.md +74 -0
  293. package/{core/domains → stacks/dashboard}/build.config.ts +1 -1
  294. package/stacks/dashboard/package.json +46 -0
  295. package/stacks/dashboard/src/index.ts +0 -0
  296. package/stacks/dashboard/tests/example.test.ts +7 -0
  297. package/stacks/tables/README.md +109 -0
  298. package/stacks/tables/build.config.ts +16 -0
  299. package/stacks/tables/examples/vue/App.vue +12 -0
  300. package/stacks/tables/examples/vue/favicon.png +0 -0
  301. package/stacks/tables/examples/vue/index.html +20 -0
  302. package/stacks/tables/examples/web/favicon.png +0 -0
  303. package/stacks/tables/examples/web/index.html +13 -0
  304. package/stacks/tables/index.html +13 -0
  305. package/stacks/tables/package.json +57 -0
  306. package/stacks/tables/src/App.vue +23 -0
  307. package/stacks/tables/src/components/Demo.vue +84 -0
  308. package/stacks/tables/src/components/README.md +110 -0
  309. package/stacks/tables/src/components/Table.vue +342 -0
  310. package/stacks/tables/src/components/TableBody.vue +32 -0
  311. package/stacks/tables/src/components/TableCellActionItems.vue +9 -0
  312. package/stacks/tables/src/components/TableFilters.vue +704 -0
  313. package/stacks/tables/src/components/TableHead.vue +60 -0
  314. package/stacks/tables/src/components/TablePagination.vue +131 -0
  315. package/stacks/tables/src/components/TableRow.vue +73 -0
  316. package/stacks/tables/src/components/TableSearch.vue +39 -0
  317. package/stacks/tables/src/components/Tooltip.vue +10 -0
  318. package/stacks/tables/src/config/tables.ts +1 -0
  319. package/stacks/tables/src/docs/index.md +0 -0
  320. package/stacks/tables/src/functions/README.md +8 -0
  321. package/stacks/tables/src/functions/dark.ts +3 -0
  322. package/stacks/tables/src/functions/index.ts +2 -0
  323. package/stacks/tables/src/functions/table.ts +207 -0
  324. package/stacks/tables/src/main.ts +4 -0
  325. package/stacks/tables/tests/example.test.ts +7 -0
  326. package/stacks/tables/vite.config.ts +26 -0
  327. package/stacks/tinker/package.json +48 -0
  328. package/stacks/tinker/src/index.ts +1 -0
  329. package/stacks/x-ray/README.md +55 -0
  330. package/stacks/x-ray/build.config.ts +15 -0
  331. package/stacks/x-ray/index.html +13 -0
  332. package/stacks/x-ray/package.json +55 -0
  333. package/stacks/x-ray/routes/index.ts +19 -0
  334. package/stacks/x-ray/src/client.ts +14 -0
  335. package/stacks/x-ray/src/desktop/api/nitro.config.ts +19 -0
  336. package/stacks/x-ray/src/desktop/api/routes/api/logs.ts +7 -0
  337. package/stacks/x-ray/src/desktop/api/routes/api/store-logs.ts +22 -0
  338. package/stacks/x-ray/src/desktop/api/src/types.ts +7 -0
  339. package/stacks/x-ray/src/desktop/api/storage/index.ts +7 -0
  340. package/stacks/x-ray/src/desktop/app.vue +377 -0
  341. package/stacks/x-ray/src/desktop/functions/http.ts +26 -0
  342. package/stacks/x-ray/src/desktop/functions/types.ts +7 -0
  343. package/stacks/x-ray/src/desktop/main.ts +14 -0
  344. package/stacks/x-ray/src/desktop/modules/counter/mod.vue +44 -0
  345. package/stacks/x-ray/src/desktop/modules/fetcher/mod.vue +63 -0
  346. package/stacks/x-ray/src/desktop/plugins/unified/unified-app.ts +5 -0
  347. package/stacks/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
  348. package/stacks/x-ray/src/desktop/services/http.ts +45 -0
  349. package/stacks/x-ray/src/desktop/styles/app.scss +0 -0
  350. package/stacks/x-ray/src/http.ts +26 -0
  351. package/stacks/x-ray/src/index.ts +42 -0
  352. package/stacks/x-ray/src/ray.config.ts +27 -0
  353. package/stacks/x-ray/src/types.ts +8 -0
  354. package/stacks/x-ray/tests/example.test.ts +7 -0
  355. package/stacks.d.ts +22 -0
  356. package/tsconfig.json +21 -12
  357. package/vcs/github/CODE_OF_CONDUCT.md +83 -0
  358. package/vcs/github/CONTRIBUTING.md +190 -0
  359. package/vcs/github/EXPLANATIONS.md +41 -0
  360. package/vcs/github/FUNDING.yml +1 -0
  361. package/vcs/github/ISSUE_TEMPLATE/bug_report.yml +62 -0
  362. package/vcs/github/ISSUE_TEMPLATE/config.yml +10 -0
  363. package/vcs/github/ISSUE_TEMPLATE/feature_request.yml +44 -0
  364. package/vcs/github/SECURITY.md +70 -0
  365. package/vcs/github/renovate.json +5 -0
  366. package/vcs/github/stale.yml +14 -0
  367. package/vcs/github/workflows/README.md +16 -0
  368. package/vcs/github/workflows/ci.yml +173 -0
  369. package/vcs/github/workflows/export-size.yml +32 -0
  370. package/vcs/github/workflows/release.yml +57 -0
  371. package/{pages → views}/desktop/src/Cargo.lock +363 -46
  372. package/{pages → views}/desktop/src/Cargo.toml +2 -2
  373. package/{pages → views}/web/main.ts +2 -2
  374. package/api/serverless.yml +0 -11
  375. package/core/actions/node_modules/.bin/markdown-it +0 -17
  376. package/core/actions/node_modules/.bin/unbuild +0 -17
  377. package/core/build/entries/README.md +0 -7
  378. package/core/build/node_modules/.bin/unbuild +0 -17
  379. package/core/build/node_modules/.bin/vite +0 -17
  380. package/core/build/node_modules/.bin/vite-ssg +0 -17
  381. package/core/build/node_modules/.bin/vue-docgen-web-types +0 -17
  382. package/core/desktop/node_modules/.bin/tauri +0 -17
  383. package/core/development/node_modules/.bin/tsc +0 -17
  384. package/core/development/node_modules/.bin/tsserver +0 -17
  385. package/core/development/node_modules/.bin/tsx +0 -17
  386. package/core/development/node_modules/.bin/unbuild +0 -17
  387. package/core/docs/node_modules/.bin/vitepress +0 -17
  388. package/core/email/node_modules/.bin/maizzle +0 -17
  389. package/core/git/node_modules/.bin/bumpp +0 -17
  390. package/core/git/node_modules/.bin/changelogen +0 -17
  391. package/core/git/node_modules/.bin/commitizen +0 -17
  392. package/core/git/node_modules/.bin/cz +0 -17
  393. package/core/git/node_modules/.bin/giget +0 -17
  394. package/core/git/node_modules/.bin/git-cz +0 -17
  395. package/core/git/node_modules/.bin/simple-git-hooks +0 -17
  396. package/core/lint/node_modules/.bin/eslint +0 -17
  397. package/core/lint/node_modules/.bin/lint-staged +0 -17
  398. package/core/lint/node_modules/.bin/publint +0 -17
  399. package/core/logging/node_modules/.bin/tsc +0 -17
  400. package/core/logging/node_modules/.bin/tsserver +0 -17
  401. package/core/logging/node_modules/.bin/tsx +0 -17
  402. package/core/logging/node_modules/.bin/unbuild +0 -17
  403. package/core/notifications/node_modules/.bin/maizzle +0 -17
  404. package/core/server/node_modules/.bin/nitro +0 -17
  405. package/core/server/node_modules/.bin/nitropack +0 -17
  406. package/core/server/node_modules/.bin/vite +0 -17
  407. package/core/testing/node_modules/.bin/playwright +0 -17
  408. package/core/testing/node_modules/.bin/tsc +0 -17
  409. package/core/testing/node_modules/.bin/tsserver +0 -17
  410. package/core/testing/node_modules/.bin/unbuild +0 -17
  411. package/core/testing/node_modules/.bin/vitest +0 -17
  412. package/core/tinker/node_modules/.bin/tsx +0 -17
  413. package/core/types/node_modules/.bin/markdown-it +0 -17
  414. package/core/types/node_modules/.bin/vite +0 -17
  415. package/core/types/node_modules/.bin/vite-ssg +0 -17
  416. package/core/types/node_modules/.bin/vitepress +0 -17
  417. package/core/types/src/markdown.ts +0 -198
  418. package/core/ui/node_modules/.bin/vue-tsc +0 -17
  419. package/core/utils/node_modules/.bin/rimraf +0 -17
  420. package/core/utils/node_modules/.bin/semver +0 -17
  421. package/docs/node_modules/.bin/rimraf +0 -17
  422. package/docs/node_modules/.bin/vitepress +0 -17
  423. /package/core/{domains → dns}/tests/example.test.ts +0 -0
  424. /package/{LICENSE.md → ide/vscode/LICENSE.md} +0 -0
  425. /package/{components → libs/components}/vue/index.html +0 -0
  426. /package/{core/domains/src → stacks/tables/src/cli}/index.ts +0 -0
  427. /package/{pages → views}/desktop/.gitignore +0 -0
  428. /package/{pages → views}/desktop/README.md +0 -0
  429. /package/{pages → views}/desktop/index.html +0 -0
  430. /package/{pages → views}/desktop/package.json +0 -0
  431. /package/{pages → views}/desktop/public/favicon.svg +0 -0
  432. /package/{pages → views}/desktop/src/.gitignore +0 -0
  433. /package/{pages → views}/desktop/src/build.rs +0 -0
  434. /package/{pages → views}/desktop/src/icons/128x128.png +0 -0
  435. /package/{pages → views}/desktop/src/icons/128x128@2x.png +0 -0
  436. /package/{pages → views}/desktop/src/icons/32x32.png +0 -0
  437. /package/{pages → views}/desktop/src/icons/Square107x107Logo.png +0 -0
  438. /package/{pages → views}/desktop/src/icons/Square142x142Logo.png +0 -0
  439. /package/{pages → views}/desktop/src/icons/Square150x150Logo.png +0 -0
  440. /package/{pages → views}/desktop/src/icons/Square284x284Logo.png +0 -0
  441. /package/{pages → views}/desktop/src/icons/Square30x30Logo.png +0 -0
  442. /package/{pages → views}/desktop/src/icons/Square310x310Logo.png +0 -0
  443. /package/{pages → views}/desktop/src/icons/Square44x44Logo.png +0 -0
  444. /package/{pages → views}/desktop/src/icons/Square71x71Logo.png +0 -0
  445. /package/{pages → views}/desktop/src/icons/Square89x89Logo.png +0 -0
  446. /package/{pages → views}/desktop/src/icons/StoreLogo.png +0 -0
  447. /package/{pages → views}/desktop/src/icons/icon.icns +0 -0
  448. /package/{pages → views}/desktop/src/icons/icon.ico +0 -0
  449. /package/{pages → views}/desktop/src/icons/icon.png +0 -0
  450. /package/{pages → views}/desktop/src/src/main.rs +0 -0
  451. /package/{pages → views}/desktop/src/tauri.conf.json +0 -0
  452. /package/{pages → views}/web/App.vue +0 -0
  453. /package/{pages → views}/web/index.html +0 -0
  454. /package/{pages → views}/web/public/_headers +0 -0
  455. /package/{pages → views}/web/public/favicon-dark.svg +0 -0
  456. /package/{pages → views}/web/public/favicon.svg +0 -0
  457. /package/{pages → views}/web/public/pwa-192x192.png +0 -0
  458. /package/{pages → views}/web/public/pwa-512x512.png +0 -0
  459. /package/{pages → views}/web/public/safari-pinned-tab.svg +0 -0
  460. /package/{pages → views}/web/styles/main.css +0 -0
  461. /package/{pages → views}/web/styles/markdown.css +0 -0
@@ -96,22 +96,6 @@ dependencies = [
96
96
  "system-deps 6.0.2",
97
97
  ]
98
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
99
  [[package]]
116
100
  name = "autocfg"
117
101
  version = "1.1.0"
@@ -204,6 +188,9 @@ name = "bytes"
204
188
  version = "1.1.0"
205
189
  source = "registry+https://github.com/rust-lang/crates.io-index"
206
190
  checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
191
+ dependencies = [
192
+ "serde",
193
+ ]
207
194
 
208
195
  [[package]]
209
196
  name = "cairo-rs"
@@ -696,7 +683,7 @@ dependencies = [
696
683
  "cfg-if",
697
684
  "libc",
698
685
  "redox_syscall",
699
- "windows-sys",
686
+ "windows-sys 0.36.1",
700
687
  ]
701
688
 
702
689
  [[package]]
@@ -792,6 +779,12 @@ dependencies = [
792
779
  "syn 1.0.105",
793
780
  ]
794
781
 
782
+ [[package]]
783
+ name = "futures-sink"
784
+ version = "0.3.28"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
787
+
795
788
  [[package]]
796
789
  name = "futures-task"
797
790
  version = "0.3.21"
@@ -805,8 +798,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
805
798
  checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
806
799
  dependencies = [
807
800
  "futures-core",
801
+ "futures-io",
808
802
  "futures-macro",
803
+ "futures-sink",
809
804
  "futures-task",
805
+ "memchr",
810
806
  "pin-project-lite",
811
807
  "pin-utils",
812
808
  "slab",
@@ -1098,6 +1094,25 @@ dependencies = [
1098
1094
  "syn 1.0.105",
1099
1095
  ]
1100
1096
 
1097
+ [[package]]
1098
+ name = "h2"
1099
+ version = "0.3.19"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
1102
+ dependencies = [
1103
+ "bytes",
1104
+ "fnv",
1105
+ "futures-core",
1106
+ "futures-sink",
1107
+ "futures-util",
1108
+ "http",
1109
+ "indexmap",
1110
+ "slab",
1111
+ "tokio",
1112
+ "tokio-util",
1113
+ "tracing",
1114
+ ]
1115
+
1101
1116
  [[package]]
1102
1117
  name = "hashbrown"
1103
1118
  version = "0.12.2"
@@ -1159,12 +1174,72 @@ dependencies = [
1159
1174
  "itoa 1.0.2",
1160
1175
  ]
1161
1176
 
1177
+ [[package]]
1178
+ name = "http-body"
1179
+ version = "0.4.5"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
1182
+ dependencies = [
1183
+ "bytes",
1184
+ "http",
1185
+ "pin-project-lite",
1186
+ ]
1187
+
1162
1188
  [[package]]
1163
1189
  name = "http-range"
1164
1190
  version = "0.1.5"
1165
1191
  source = "registry+https://github.com/rust-lang/crates.io-index"
1166
1192
  checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
1167
1193
 
1194
+ [[package]]
1195
+ name = "httparse"
1196
+ version = "1.8.0"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1199
+
1200
+ [[package]]
1201
+ name = "httpdate"
1202
+ version = "1.0.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
1205
+
1206
+ [[package]]
1207
+ name = "hyper"
1208
+ version = "0.14.26"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
1211
+ dependencies = [
1212
+ "bytes",
1213
+ "futures-channel",
1214
+ "futures-core",
1215
+ "futures-util",
1216
+ "h2",
1217
+ "http",
1218
+ "http-body",
1219
+ "httparse",
1220
+ "httpdate",
1221
+ "itoa 1.0.2",
1222
+ "pin-project-lite",
1223
+ "socket2",
1224
+ "tokio",
1225
+ "tower-service",
1226
+ "tracing",
1227
+ "want",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "hyper-tls"
1232
+ version = "0.5.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
1235
+ dependencies = [
1236
+ "bytes",
1237
+ "hyper",
1238
+ "native-tls",
1239
+ "tokio",
1240
+ "tokio-native-tls",
1241
+ ]
1242
+
1168
1243
  [[package]]
1169
1244
  name = "iana-time-zone"
1170
1245
  version = "0.1.56"
@@ -1276,6 +1351,12 @@ dependencies = [
1276
1351
  "cfg-if",
1277
1352
  ]
1278
1353
 
1354
+ [[package]]
1355
+ name = "ipnet"
1356
+ version = "2.7.2"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
1359
+
1279
1360
  [[package]]
1280
1361
  name = "itoa"
1281
1362
  version = "0.4.8"
@@ -1487,6 +1568,12 @@ dependencies = [
1487
1568
  "autocfg",
1488
1569
  ]
1489
1570
 
1571
+ [[package]]
1572
+ name = "mime"
1573
+ version = "0.3.17"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1576
+
1490
1577
  [[package]]
1491
1578
  name = "miniz_oxide"
1492
1579
  version = "0.5.3"
@@ -1496,6 +1583,18 @@ dependencies = [
1496
1583
  "adler",
1497
1584
  ]
1498
1585
 
1586
+ [[package]]
1587
+ name = "mio"
1588
+ version = "0.8.8"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
1591
+ dependencies = [
1592
+ "libc",
1593
+ "log",
1594
+ "wasi 0.11.0+wasi-snapshot-preview1",
1595
+ "windows-sys 0.48.0",
1596
+ ]
1597
+
1499
1598
  [[package]]
1500
1599
  name = "native-tls"
1501
1600
  version = "0.2.10"
@@ -1759,7 +1858,7 @@ dependencies = [
1759
1858
  "libc",
1760
1859
  "redox_syscall",
1761
1860
  "smallvec",
1762
- "windows-sys",
1861
+ "windows-sys 0.36.1",
1763
1862
  ]
1764
1863
 
1765
1864
  [[package]]
@@ -2134,6 +2233,45 @@ dependencies = [
2134
2233
  "winapi",
2135
2234
  ]
2136
2235
 
2236
+ [[package]]
2237
+ name = "reqwest"
2238
+ version = "0.11.18"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
2241
+ dependencies = [
2242
+ "base64 0.21.0",
2243
+ "bytes",
2244
+ "encoding_rs",
2245
+ "futures-core",
2246
+ "futures-util",
2247
+ "h2",
2248
+ "http",
2249
+ "http-body",
2250
+ "hyper",
2251
+ "hyper-tls",
2252
+ "ipnet",
2253
+ "js-sys",
2254
+ "log",
2255
+ "mime",
2256
+ "native-tls",
2257
+ "once_cell",
2258
+ "percent-encoding",
2259
+ "pin-project-lite",
2260
+ "serde",
2261
+ "serde_json",
2262
+ "serde_urlencoded",
2263
+ "tokio",
2264
+ "tokio-native-tls",
2265
+ "tokio-util",
2266
+ "tower-service",
2267
+ "url",
2268
+ "wasm-bindgen",
2269
+ "wasm-bindgen-futures",
2270
+ "wasm-streams",
2271
+ "web-sys",
2272
+ "winreg",
2273
+ ]
2274
+
2137
2275
  [[package]]
2138
2276
  name = "rustc_version"
2139
2277
  version = "0.3.3"
@@ -2186,7 +2324,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
2324
  checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2187
2325
  dependencies = [
2188
2326
  "lazy_static",
2189
- "windows-sys",
2327
+ "windows-sys 0.36.1",
2190
2328
  ]
2191
2329
 
2192
2330
  [[package]]
@@ -2342,11 +2480,11 @@ dependencies = [
2342
2480
 
2343
2481
  [[package]]
2344
2482
  name = "serde_with"
2345
- version = "2.3.3"
2483
+ version = "3.0.0"
2346
2484
  source = "registry+https://github.com/rust-lang/crates.io-index"
2347
- checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe"
2485
+ checksum = "9f02d8aa6e3c385bf084924f660ce2a3a6bd333ba55b35e8590b321f35d88513"
2348
2486
  dependencies = [
2349
- "base64 0.13.0",
2487
+ "base64 0.21.0",
2350
2488
  "chrono",
2351
2489
  "hex",
2352
2490
  "indexmap",
@@ -2358,9 +2496,9 @@ dependencies = [
2358
2496
 
2359
2497
  [[package]]
2360
2498
  name = "serde_with_macros"
2361
- version = "2.3.3"
2499
+ version = "3.0.0"
2362
2500
  source = "registry+https://github.com/rust-lang/crates.io-index"
2363
- checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f"
2501
+ checksum = "edc7d5d3932fb12ce722ee5e64dd38c504efba37567f0c402f6ca728c3b8b070"
2364
2502
  dependencies = [
2365
2503
  "darling",
2366
2504
  "proc-macro2",
@@ -2438,6 +2576,16 @@ version = "1.9.0"
2438
2576
  source = "registry+https://github.com/rust-lang/crates.io-index"
2439
2577
  checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2440
2578
 
2579
+ [[package]]
2580
+ name = "socket2"
2581
+ version = "0.4.7"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
2584
+ dependencies = [
2585
+ "libc",
2586
+ "winapi",
2587
+ ]
2588
+
2441
2589
  [[package]]
2442
2590
  name = "soup2"
2443
2591
  version = "0.2.1"
@@ -2631,12 +2779,12 @@ dependencies = [
2631
2779
 
2632
2780
  [[package]]
2633
2781
  name = "tauri"
2634
- version = "1.3.0"
2782
+ version = "1.4.1"
2635
2783
  source = "registry+https://github.com/rust-lang/crates.io-index"
2636
- checksum = "d42ba3a2e8556722f31336a0750c10dbb6a81396a1c452977f515da83f69f842"
2784
+ checksum = "7fbe522898e35407a8e60dc3870f7579fea2fc262a6a6072eccdd37ae1e1d91e"
2637
2785
  dependencies = [
2638
2786
  "anyhow",
2639
- "attohttpc",
2787
+ "bytes",
2640
2788
  "cocoa",
2641
2789
  "dirs-next",
2642
2790
  "embed_plist",
@@ -2654,6 +2802,7 @@ dependencies = [
2654
2802
  "percent-encoding",
2655
2803
  "rand 0.8.5",
2656
2804
  "raw-window-handle",
2805
+ "reqwest",
2657
2806
  "semver 1.0.12",
2658
2807
  "serde",
2659
2808
  "serde_json",
@@ -2677,9 +2826,9 @@ dependencies = [
2677
2826
 
2678
2827
  [[package]]
2679
2828
  name = "tauri-build"
2680
- version = "1.3.0"
2829
+ version = "1.4.0"
2681
2830
  source = "registry+https://github.com/rust-lang/crates.io-index"
2682
- checksum = "929b3bd1248afc07b63e33a6a53c3f82c32d0b0a5e216e4530e94c467e019389"
2831
+ checksum = "7d2edd6a259b5591c8efdeb9d5702cb53515b82a6affebd55c7fd6d3a27b7d1b"
2683
2832
  dependencies = [
2684
2833
  "anyhow",
2685
2834
  "cargo_toml",
@@ -2690,14 +2839,13 @@ dependencies = [
2690
2839
  "serde_json",
2691
2840
  "tauri-utils",
2692
2841
  "tauri-winres",
2693
- "winnow",
2694
2842
  ]
2695
2843
 
2696
2844
  [[package]]
2697
2845
  name = "tauri-codegen"
2698
- version = "1.3.0"
2846
+ version = "1.4.0"
2699
2847
  source = "registry+https://github.com/rust-lang/crates.io-index"
2700
- checksum = "e5a2105f807c6f50b2fa2ce5abd62ef207bc6f14c9fcc6b8caec437f6fb13bde"
2848
+ checksum = "54ad2d49fdeab4a08717f5b49a163bdc72efc3b1950b6758245fcde79b645e1a"
2701
2849
  dependencies = [
2702
2850
  "base64 0.21.0",
2703
2851
  "brotli",
@@ -2720,9 +2868,9 @@ dependencies = [
2720
2868
 
2721
2869
  [[package]]
2722
2870
  name = "tauri-macros"
2723
- version = "1.3.0"
2871
+ version = "1.4.0"
2724
2872
  source = "registry+https://github.com/rust-lang/crates.io-index"
2725
- checksum = "8784cfe6f5444097e93c69107d1ac5e8f13d02850efa8d8f2a40fe79674cef46"
2873
+ checksum = "8eb12a2454e747896929338d93b0642144bb51e0dddbb36e579035731f0d76b7"
2726
2874
  dependencies = [
2727
2875
  "heck 0.4.0",
2728
2876
  "proc-macro2",
@@ -2734,9 +2882,9 @@ dependencies = [
2734
2882
 
2735
2883
  [[package]]
2736
2884
  name = "tauri-runtime"
2737
- version = "0.13.0"
2885
+ version = "0.14.0"
2738
2886
  source = "registry+https://github.com/rust-lang/crates.io-index"
2739
- checksum = "b3b80ea3fcd5fefb60739a3b577b277e8fc30434538a2f5bba82ad7d4368c422"
2887
+ checksum = "108683199cb18f96d2d4134187bb789964143c845d2d154848dda209191fd769"
2740
2888
  dependencies = [
2741
2889
  "gtk",
2742
2890
  "http",
@@ -2755,9 +2903,9 @@ dependencies = [
2755
2903
 
2756
2904
  [[package]]
2757
2905
  name = "tauri-runtime-wry"
2758
- version = "0.13.0"
2906
+ version = "0.14.0"
2759
2907
  source = "registry+https://github.com/rust-lang/crates.io-index"
2760
- checksum = "d1c396950b1ba06aee1b4ffe6c7cd305ff433ca0e30acbc5fa1a2f92a4ce70f1"
2908
+ checksum = "0b7aa256a1407a3a091b5d843eccc1a5042289baf0a43d1179d9f0fcfea37c1b"
2761
2909
  dependencies = [
2762
2910
  "cocoa",
2763
2911
  "gtk",
@@ -2775,12 +2923,13 @@ dependencies = [
2775
2923
 
2776
2924
  [[package]]
2777
2925
  name = "tauri-utils"
2778
- version = "1.3.0"
2926
+ version = "1.4.0"
2779
2927
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "5a6f9c2dafef5cbcf52926af57ce9561bd33bb41d7394f8bb849c0330260d864"
2928
+ checksum = "03fc02bb6072bb397e1d473c6f76c953cda48b4a2d0cce605df284aa74a12e84"
2781
2929
  dependencies = [
2782
2930
  "brotli",
2783
2931
  "ctor",
2932
+ "dunce",
2784
2933
  "glob",
2785
2934
  "heck 0.4.0",
2786
2935
  "html5ever",
@@ -2909,16 +3058,43 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2909
3058
 
2910
3059
  [[package]]
2911
3060
  name = "tokio"
2912
- version = "1.20.0"
3061
+ version = "1.26.0"
2913
3062
  source = "registry+https://github.com/rust-lang/crates.io-index"
2914
- checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e"
3063
+ checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
2915
3064
  dependencies = [
2916
3065
  "autocfg",
2917
3066
  "bytes",
3067
+ "libc",
2918
3068
  "memchr",
3069
+ "mio",
2919
3070
  "num_cpus",
2920
- "once_cell",
2921
3071
  "pin-project-lite",
3072
+ "socket2",
3073
+ "windows-sys 0.45.0",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "tokio-native-tls"
3078
+ version = "0.3.1"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3081
+ dependencies = [
3082
+ "native-tls",
3083
+ "tokio",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "tokio-util"
3088
+ version = "0.7.8"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
3091
+ dependencies = [
3092
+ "bytes",
3093
+ "futures-core",
3094
+ "futures-sink",
3095
+ "pin-project-lite",
3096
+ "tokio",
3097
+ "tracing",
2922
3098
  ]
2923
3099
 
2924
3100
  [[package]]
@@ -2964,6 +3140,12 @@ dependencies = [
2964
3140
  "winnow",
2965
3141
  ]
2966
3142
 
3143
+ [[package]]
3144
+ name = "tower-service"
3145
+ version = "0.3.2"
3146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3147
+ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
3148
+
2967
3149
  [[package]]
2968
3150
  name = "tracing"
2969
3151
  version = "0.1.35"
@@ -3035,6 +3217,12 @@ dependencies = [
3035
3217
  "serde_json",
3036
3218
  ]
3037
3219
 
3220
+ [[package]]
3221
+ name = "try-lock"
3222
+ version = "0.2.4"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
3225
+
3038
3226
  [[package]]
3039
3227
  name = "typenum"
3040
3228
  version = "1.15.0"
@@ -3148,6 +3336,16 @@ dependencies = [
3148
3336
  "winapi-util",
3149
3337
  ]
3150
3338
 
3339
+ [[package]]
3340
+ name = "want"
3341
+ version = "0.3.0"
3342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3343
+ checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
3344
+ dependencies = [
3345
+ "log",
3346
+ "try-lock",
3347
+ ]
3348
+
3151
3349
  [[package]]
3152
3350
  name = "wasi"
3153
3351
  version = "0.9.0+wasi-snapshot-preview1"
@@ -3185,6 +3383,18 @@ dependencies = [
3185
3383
  "wasm-bindgen-shared",
3186
3384
  ]
3187
3385
 
3386
+ [[package]]
3387
+ name = "wasm-bindgen-futures"
3388
+ version = "0.4.34"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
3391
+ dependencies = [
3392
+ "cfg-if",
3393
+ "js-sys",
3394
+ "wasm-bindgen",
3395
+ "web-sys",
3396
+ ]
3397
+
3188
3398
  [[package]]
3189
3399
  name = "wasm-bindgen-macro"
3190
3400
  version = "0.2.84"
@@ -3214,6 +3424,29 @@ version = "0.2.84"
3214
3424
  source = "registry+https://github.com/rust-lang/crates.io-index"
3215
3425
  checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
3216
3426
 
3427
+ [[package]]
3428
+ name = "wasm-streams"
3429
+ version = "0.2.3"
3430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3431
+ checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
3432
+ dependencies = [
3433
+ "futures-util",
3434
+ "js-sys",
3435
+ "wasm-bindgen",
3436
+ "wasm-bindgen-futures",
3437
+ "web-sys",
3438
+ ]
3439
+
3440
+ [[package]]
3441
+ name = "web-sys"
3442
+ version = "0.3.61"
3443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3444
+ checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
3445
+ dependencies = [
3446
+ "js-sys",
3447
+ "wasm-bindgen",
3448
+ ]
3449
+
3217
3450
  [[package]]
3218
3451
  name = "webkit2gtk"
3219
3452
  version = "0.18.2"
@@ -3350,7 +3583,7 @@ version = "0.48.0"
3350
3583
  source = "registry+https://github.com/rust-lang/crates.io-index"
3351
3584
  checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3352
3585
  dependencies = [
3353
- "windows-targets",
3586
+ "windows-targets 0.48.0",
3354
3587
  ]
3355
3588
 
3356
3589
  [[package]]
@@ -3392,18 +3625,51 @@ dependencies = [
3392
3625
  "windows_x86_64_msvc 0.36.1",
3393
3626
  ]
3394
3627
 
3628
+ [[package]]
3629
+ name = "windows-sys"
3630
+ version = "0.45.0"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3633
+ dependencies = [
3634
+ "windows-targets 0.42.2",
3635
+ ]
3636
+
3637
+ [[package]]
3638
+ name = "windows-sys"
3639
+ version = "0.48.0"
3640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3641
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3642
+ dependencies = [
3643
+ "windows-targets 0.48.0",
3644
+ ]
3645
+
3646
+ [[package]]
3647
+ name = "windows-targets"
3648
+ version = "0.42.2"
3649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3650
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3651
+ dependencies = [
3652
+ "windows_aarch64_gnullvm 0.42.2",
3653
+ "windows_aarch64_msvc 0.42.2",
3654
+ "windows_i686_gnu 0.42.2",
3655
+ "windows_i686_msvc 0.42.2",
3656
+ "windows_x86_64_gnu 0.42.2",
3657
+ "windows_x86_64_gnullvm 0.42.2",
3658
+ "windows_x86_64_msvc 0.42.2",
3659
+ ]
3660
+
3395
3661
  [[package]]
3396
3662
  name = "windows-targets"
3397
3663
  version = "0.48.0"
3398
3664
  source = "registry+https://github.com/rust-lang/crates.io-index"
3399
3665
  checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
3400
3666
  dependencies = [
3401
- "windows_aarch64_gnullvm",
3667
+ "windows_aarch64_gnullvm 0.48.0",
3402
3668
  "windows_aarch64_msvc 0.48.0",
3403
3669
  "windows_i686_gnu 0.48.0",
3404
3670
  "windows_i686_msvc 0.48.0",
3405
3671
  "windows_x86_64_gnu 0.48.0",
3406
- "windows_x86_64_gnullvm",
3672
+ "windows_x86_64_gnullvm 0.48.0",
3407
3673
  "windows_x86_64_msvc 0.48.0",
3408
3674
  ]
3409
3675
 
@@ -3413,6 +3679,12 @@ version = "0.39.0"
3413
3679
  source = "registry+https://github.com/rust-lang/crates.io-index"
3414
3680
  checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
3415
3681
 
3682
+ [[package]]
3683
+ name = "windows_aarch64_gnullvm"
3684
+ version = "0.42.2"
3685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3686
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3687
+
3416
3688
  [[package]]
3417
3689
  name = "windows_aarch64_gnullvm"
3418
3690
  version = "0.48.0"
@@ -3431,6 +3703,12 @@ version = "0.39.0"
3431
3703
  source = "registry+https://github.com/rust-lang/crates.io-index"
3432
3704
  checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
3433
3705
 
3706
+ [[package]]
3707
+ name = "windows_aarch64_msvc"
3708
+ version = "0.42.2"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3711
+
3434
3712
  [[package]]
3435
3713
  name = "windows_aarch64_msvc"
3436
3714
  version = "0.48.0"
@@ -3449,6 +3727,12 @@ version = "0.39.0"
3449
3727
  source = "registry+https://github.com/rust-lang/crates.io-index"
3450
3728
  checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
3451
3729
 
3730
+ [[package]]
3731
+ name = "windows_i686_gnu"
3732
+ version = "0.42.2"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3735
+
3452
3736
  [[package]]
3453
3737
  name = "windows_i686_gnu"
3454
3738
  version = "0.48.0"
@@ -3467,6 +3751,12 @@ version = "0.39.0"
3467
3751
  source = "registry+https://github.com/rust-lang/crates.io-index"
3468
3752
  checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
3469
3753
 
3754
+ [[package]]
3755
+ name = "windows_i686_msvc"
3756
+ version = "0.42.2"
3757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3758
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3759
+
3470
3760
  [[package]]
3471
3761
  name = "windows_i686_msvc"
3472
3762
  version = "0.48.0"
@@ -3485,12 +3775,24 @@ version = "0.39.0"
3485
3775
  source = "registry+https://github.com/rust-lang/crates.io-index"
3486
3776
  checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
3487
3777
 
3778
+ [[package]]
3779
+ name = "windows_x86_64_gnu"
3780
+ version = "0.42.2"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3783
+
3488
3784
  [[package]]
3489
3785
  name = "windows_x86_64_gnu"
3490
3786
  version = "0.48.0"
3491
3787
  source = "registry+https://github.com/rust-lang/crates.io-index"
3492
3788
  checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
3493
3789
 
3790
+ [[package]]
3791
+ name = "windows_x86_64_gnullvm"
3792
+ version = "0.42.2"
3793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3794
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3795
+
3494
3796
  [[package]]
3495
3797
  name = "windows_x86_64_gnullvm"
3496
3798
  version = "0.48.0"
@@ -3509,6 +3811,12 @@ version = "0.39.0"
3509
3811
  source = "registry+https://github.com/rust-lang/crates.io-index"
3510
3812
  checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
3511
3813
 
3814
+ [[package]]
3815
+ name = "windows_x86_64_msvc"
3816
+ version = "0.42.2"
3817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3818
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3819
+
3512
3820
  [[package]]
3513
3821
  name = "windows_x86_64_msvc"
3514
3822
  version = "0.48.0"
@@ -3524,6 +3832,15 @@ dependencies = [
3524
3832
  "memchr",
3525
3833
  ]
3526
3834
 
3835
+ [[package]]
3836
+ name = "winreg"
3837
+ version = "0.10.1"
3838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3839
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
3840
+ dependencies = [
3841
+ "winapi",
3842
+ ]
3843
+
3527
3844
  [[package]]
3528
3845
  name = "wry"
3529
3846
  version = "0.24.1"