dk-harness 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (291) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +267 -0
  3. package/bin/dk-harness +206 -0
  4. package/package.json +36 -0
  5. package/templates/next-axum-monorepo/.eslintrc.js +13 -0
  6. package/templates/next-axum-monorepo/.github/workflows/ci.yml +92 -0
  7. package/templates/next-axum-monorepo/.gitleaks.toml +5 -0
  8. package/templates/next-axum-monorepo/.prettierignore +7 -0
  9. package/templates/next-axum-monorepo/.prettierrc +11 -0
  10. package/templates/next-axum-monorepo/AGENTS.md +35 -0
  11. package/templates/next-axum-monorepo/ARCHITECTURE.md +58 -0
  12. package/templates/next-axum-monorepo/README.md +45 -0
  13. package/templates/next-axum-monorepo/apps/axum/Cargo.lock +1041 -0
  14. package/templates/next-axum-monorepo/apps/axum/Cargo.toml +12 -0
  15. package/templates/next-axum-monorepo/apps/axum/deny.toml +13 -0
  16. package/templates/next-axum-monorepo/apps/axum/src/api/mod.rs +1 -0
  17. package/templates/next-axum-monorepo/apps/axum/src/api/router.rs +53 -0
  18. package/templates/next-axum-monorepo/apps/axum/src/core/config.rs +17 -0
  19. package/templates/next-axum-monorepo/apps/axum/src/core/mod.rs +1 -0
  20. package/templates/next-axum-monorepo/apps/axum/src/domain/health.rs +22 -0
  21. package/templates/next-axum-monorepo/apps/axum/src/domain/mod.rs +1 -0
  22. package/templates/next-axum-monorepo/apps/axum/src/lib.rs +6 -0
  23. package/templates/next-axum-monorepo/apps/axum/src/main.rs +15 -0
  24. package/templates/next-axum-monorepo/apps/web/app/favicon.ico +0 -0
  25. package/templates/next-axum-monorepo/apps/web/app/layout.tsx +43 -0
  26. package/templates/next-axum-monorepo/apps/web/app/page.tsx +19 -0
  27. package/templates/next-axum-monorepo/apps/web/biome.json +16 -0
  28. package/templates/next-axum-monorepo/apps/web/components/.gitkeep +0 -0
  29. package/templates/next-axum-monorepo/apps/web/components/theme-provider.tsx +71 -0
  30. package/templates/next-axum-monorepo/apps/web/components.json +23 -0
  31. package/templates/next-axum-monorepo/apps/web/dependency-cruiser.cjs +66 -0
  32. package/templates/next-axum-monorepo/apps/web/eslint.config.js +4 -0
  33. package/templates/next-axum-monorepo/apps/web/hooks/.gitkeep +0 -0
  34. package/templates/next-axum-monorepo/apps/web/knip.json +17 -0
  35. package/templates/next-axum-monorepo/apps/web/lib/.gitkeep +0 -0
  36. package/templates/next-axum-monorepo/apps/web/lighthouserc.json +23 -0
  37. package/templates/next-axum-monorepo/apps/web/next-env.d.ts +6 -0
  38. package/templates/next-axum-monorepo/apps/web/next.config.mjs +6 -0
  39. package/templates/next-axum-monorepo/apps/web/package.json +46 -0
  40. package/templates/next-axum-monorepo/apps/web/playwright.config.ts +18 -0
  41. package/templates/next-axum-monorepo/apps/web/postcss.config.mjs +1 -0
  42. package/templates/next-axum-monorepo/apps/web/skills-lock.json +15 -0
  43. package/templates/next-axum-monorepo/apps/web/tests/e2e/smoke.spec.ts +13 -0
  44. package/templates/next-axum-monorepo/apps/web/tests/unit/page.test.tsx +16 -0
  45. package/templates/next-axum-monorepo/apps/web/tsconfig.json +23 -0
  46. package/templates/next-axum-monorepo/apps/web/vitest.config.ts +13 -0
  47. package/templates/next-axum-monorepo/apps/web/vitest.setup.ts +1 -0
  48. package/templates/next-axum-monorepo/docs/DESIGN.md +10 -0
  49. package/templates/next-axum-monorepo/docs/FRONTEND.md +26 -0
  50. package/templates/next-axum-monorepo/docs/PLANS.md +25 -0
  51. package/templates/next-axum-monorepo/docs/PRODUCT_SENSE.md +11 -0
  52. package/templates/next-axum-monorepo/docs/QUALITY_SCORE.md +16 -0
  53. package/templates/next-axum-monorepo/docs/RELIABILITY.md +39 -0
  54. package/templates/next-axum-monorepo/docs/SECURITY.md +16 -0
  55. package/templates/next-axum-monorepo/docs/design-docs/core-beliefs.md +6 -0
  56. package/templates/next-axum-monorepo/docs/design-docs/included-skills.md +16 -0
  57. package/templates/next-axum-monorepo/docs/design-docs/index.md +6 -0
  58. package/templates/next-axum-monorepo/docs/exec-plans/active/.gitkeep +1 -0
  59. package/templates/next-axum-monorepo/docs/exec-plans/completed/.gitkeep +1 -0
  60. package/templates/next-axum-monorepo/docs/exec-plans/repeated-work.md +15 -0
  61. package/templates/next-axum-monorepo/docs/exec-plans/tech-debt-tracker.md +3 -0
  62. package/templates/next-axum-monorepo/docs/generated/db-schema.md +3 -0
  63. package/templates/next-axum-monorepo/docs/product-specs/index.md +5 -0
  64. package/templates/next-axum-monorepo/docs/product-specs/new-user-onboarding.md +12 -0
  65. package/templates/next-axum-monorepo/docs/references/design-system-reference-llms.txt +13 -0
  66. package/templates/next-axum-monorepo/justfile +36 -0
  67. package/templates/next-axum-monorepo/lefthook.yml +8 -0
  68. package/templates/next-axum-monorepo/mise.toml +5 -0
  69. package/templates/next-axum-monorepo/package.json +41 -0
  70. package/templates/next-axum-monorepo/packages/eslint-config/README.md +3 -0
  71. package/templates/next-axum-monorepo/packages/eslint-config/base.js +32 -0
  72. package/templates/next-axum-monorepo/packages/eslint-config/next.js +51 -0
  73. package/templates/next-axum-monorepo/packages/eslint-config/package.json +26 -0
  74. package/templates/next-axum-monorepo/packages/eslint-config/react-internal.js +41 -0
  75. package/templates/next-axum-monorepo/packages/typescript-config/README.md +3 -0
  76. package/templates/next-axum-monorepo/packages/typescript-config/base.json +20 -0
  77. package/templates/next-axum-monorepo/packages/typescript-config/nextjs.json +13 -0
  78. package/templates/next-axum-monorepo/packages/typescript-config/package.json +9 -0
  79. package/templates/next-axum-monorepo/packages/typescript-config/react-library.json +8 -0
  80. package/templates/next-axum-monorepo/packages/ui/components.json +23 -0
  81. package/templates/next-axum-monorepo/packages/ui/dependency-cruiser.cjs +100 -0
  82. package/templates/next-axum-monorepo/packages/ui/eslint.config.js +4 -0
  83. package/templates/next-axum-monorepo/packages/ui/package.json +49 -0
  84. package/templates/next-axum-monorepo/packages/ui/postcss.config.mjs +6 -0
  85. package/templates/next-axum-monorepo/packages/ui/src/config/.gitkeep +1 -0
  86. package/templates/next-axum-monorepo/packages/ui/src/providers/.gitkeep +1 -0
  87. package/templates/next-axum-monorepo/packages/ui/src/repo/.gitkeep +1 -0
  88. package/templates/next-axum-monorepo/packages/ui/src/runtime/hooks/.gitkeep +1 -0
  89. package/templates/next-axum-monorepo/packages/ui/src/runtime/utils.ts +6 -0
  90. package/templates/next-axum-monorepo/packages/ui/src/service/.gitkeep +1 -0
  91. package/templates/next-axum-monorepo/packages/ui/src/styles/globals.css +129 -0
  92. package/templates/next-axum-monorepo/packages/ui/src/types/.gitkeep +1 -0
  93. package/templates/next-axum-monorepo/packages/ui/src/ui/button.tsx +65 -0
  94. package/templates/next-axum-monorepo/packages/ui/src/utils/.gitkeep +1 -0
  95. package/templates/next-axum-monorepo/packages/ui/tsconfig.json +10 -0
  96. package/templates/next-axum-monorepo/packages/ui/tsconfig.lint.json +8 -0
  97. package/templates/next-axum-monorepo/pnpm-lock.yaml +12402 -0
  98. package/templates/next-axum-monorepo/pnpm-workspace.yaml +3 -0
  99. package/templates/next-axum-monorepo/renovate.json +6 -0
  100. package/templates/next-axum-monorepo/scripts/check-rust-layers.mjs +149 -0
  101. package/templates/next-axum-monorepo/skills-lock.json +30 -0
  102. package/templates/next-axum-monorepo/tsconfig.json +4 -0
  103. package/templates/next-axum-monorepo/turbo.json +27 -0
  104. package/templates/next-fastapi-monorepo/.eslintrc.js +13 -0
  105. package/templates/next-fastapi-monorepo/.github/workflows/ci.yml +92 -0
  106. package/templates/next-fastapi-monorepo/.gitleaks.toml +5 -0
  107. package/templates/next-fastapi-monorepo/.prettierignore +7 -0
  108. package/templates/next-fastapi-monorepo/.prettierrc +11 -0
  109. package/templates/next-fastapi-monorepo/AGENTS.md +35 -0
  110. package/templates/next-fastapi-monorepo/ARCHITECTURE.md +55 -0
  111. package/templates/next-fastapi-monorepo/README.md +65 -0
  112. package/templates/next-fastapi-monorepo/apps/api/.python-version +1 -0
  113. package/templates/next-fastapi-monorepo/apps/api/README.md +17 -0
  114. package/templates/next-fastapi-monorepo/apps/api/app/__init__.py +1 -0
  115. package/templates/next-fastapi-monorepo/apps/api/app/api/__init__.py +2 -0
  116. package/templates/next-fastapi-monorepo/apps/api/app/api/routes.py +16 -0
  117. package/templates/next-fastapi-monorepo/apps/api/app/core/__init__.py +2 -0
  118. package/templates/next-fastapi-monorepo/apps/api/app/core/config.py +11 -0
  119. package/templates/next-fastapi-monorepo/apps/api/app/domain/__init__.py +2 -0
  120. package/templates/next-fastapi-monorepo/apps/api/app/domain/health.py +7 -0
  121. package/templates/next-fastapi-monorepo/apps/api/app/main.py +8 -0
  122. package/templates/next-fastapi-monorepo/apps/api/package.json +14 -0
  123. package/templates/next-fastapi-monorepo/apps/api/pyproject.toml +54 -0
  124. package/templates/next-fastapi-monorepo/apps/api/tests/test_main.py +27 -0
  125. package/templates/next-fastapi-monorepo/apps/api/uv.lock +1797 -0
  126. package/templates/next-fastapi-monorepo/apps/web/app/favicon.ico +0 -0
  127. package/templates/next-fastapi-monorepo/apps/web/app/layout.tsx +43 -0
  128. package/templates/next-fastapi-monorepo/apps/web/app/page.tsx +19 -0
  129. package/templates/next-fastapi-monorepo/apps/web/biome.json +16 -0
  130. package/templates/next-fastapi-monorepo/apps/web/components/.gitkeep +0 -0
  131. package/templates/next-fastapi-monorepo/apps/web/components/theme-provider.tsx +71 -0
  132. package/templates/next-fastapi-monorepo/apps/web/components.json +23 -0
  133. package/templates/next-fastapi-monorepo/apps/web/dependency-cruiser.cjs +66 -0
  134. package/templates/next-fastapi-monorepo/apps/web/eslint.config.js +4 -0
  135. package/templates/next-fastapi-monorepo/apps/web/hooks/.gitkeep +0 -0
  136. package/templates/next-fastapi-monorepo/apps/web/knip.json +17 -0
  137. package/templates/next-fastapi-monorepo/apps/web/lib/.gitkeep +0 -0
  138. package/templates/next-fastapi-monorepo/apps/web/lighthouserc.json +23 -0
  139. package/templates/next-fastapi-monorepo/apps/web/next-env.d.ts +6 -0
  140. package/templates/next-fastapi-monorepo/apps/web/next.config.mjs +6 -0
  141. package/templates/next-fastapi-monorepo/apps/web/package.json +46 -0
  142. package/templates/next-fastapi-monorepo/apps/web/playwright.config.ts +18 -0
  143. package/templates/next-fastapi-monorepo/apps/web/postcss.config.mjs +1 -0
  144. package/templates/next-fastapi-monorepo/apps/web/skills-lock.json +40 -0
  145. package/templates/next-fastapi-monorepo/apps/web/tests/e2e/smoke.spec.ts +13 -0
  146. package/templates/next-fastapi-monorepo/apps/web/tests/unit/page.test.tsx +16 -0
  147. package/templates/next-fastapi-monorepo/apps/web/tsconfig.json +23 -0
  148. package/templates/next-fastapi-monorepo/apps/web/vitest.config.ts +13 -0
  149. package/templates/next-fastapi-monorepo/apps/web/vitest.setup.ts +1 -0
  150. package/templates/next-fastapi-monorepo/docs/DESIGN.md +10 -0
  151. package/templates/next-fastapi-monorepo/docs/FRONTEND.md +26 -0
  152. package/templates/next-fastapi-monorepo/docs/PLANS.md +25 -0
  153. package/templates/next-fastapi-monorepo/docs/PRODUCT_SENSE.md +11 -0
  154. package/templates/next-fastapi-monorepo/docs/QUALITY_SCORE.md +16 -0
  155. package/templates/next-fastapi-monorepo/docs/RELIABILITY.md +38 -0
  156. package/templates/next-fastapi-monorepo/docs/SECURITY.md +15 -0
  157. package/templates/next-fastapi-monorepo/docs/design-docs/core-beliefs.md +6 -0
  158. package/templates/next-fastapi-monorepo/docs/design-docs/included-skills.md +13 -0
  159. package/templates/next-fastapi-monorepo/docs/design-docs/index.md +6 -0
  160. package/templates/next-fastapi-monorepo/docs/exec-plans/active/.gitkeep +1 -0
  161. package/templates/next-fastapi-monorepo/docs/exec-plans/completed/.gitkeep +1 -0
  162. package/templates/next-fastapi-monorepo/docs/exec-plans/repeated-work.md +15 -0
  163. package/templates/next-fastapi-monorepo/docs/exec-plans/tech-debt-tracker.md +3 -0
  164. package/templates/next-fastapi-monorepo/docs/generated/db-schema.md +3 -0
  165. package/templates/next-fastapi-monorepo/docs/product-specs/index.md +5 -0
  166. package/templates/next-fastapi-monorepo/docs/product-specs/new-user-onboarding.md +12 -0
  167. package/templates/next-fastapi-monorepo/docs/references/design-system-reference-llms.txt +13 -0
  168. package/templates/next-fastapi-monorepo/docs/references/uv-llms.txt +7 -0
  169. package/templates/next-fastapi-monorepo/justfile +31 -0
  170. package/templates/next-fastapi-monorepo/lefthook.yml +8 -0
  171. package/templates/next-fastapi-monorepo/mise.toml +6 -0
  172. package/templates/next-fastapi-monorepo/package.json +41 -0
  173. package/templates/next-fastapi-monorepo/packages/eslint-config/README.md +3 -0
  174. package/templates/next-fastapi-monorepo/packages/eslint-config/base.js +32 -0
  175. package/templates/next-fastapi-monorepo/packages/eslint-config/next.js +51 -0
  176. package/templates/next-fastapi-monorepo/packages/eslint-config/package.json +26 -0
  177. package/templates/next-fastapi-monorepo/packages/eslint-config/react-internal.js +41 -0
  178. package/templates/next-fastapi-monorepo/packages/typescript-config/README.md +3 -0
  179. package/templates/next-fastapi-monorepo/packages/typescript-config/base.json +20 -0
  180. package/templates/next-fastapi-monorepo/packages/typescript-config/nextjs.json +13 -0
  181. package/templates/next-fastapi-monorepo/packages/typescript-config/package.json +9 -0
  182. package/templates/next-fastapi-monorepo/packages/typescript-config/react-library.json +8 -0
  183. package/templates/next-fastapi-monorepo/packages/ui/components.json +23 -0
  184. package/templates/next-fastapi-monorepo/packages/ui/dependency-cruiser.cjs +100 -0
  185. package/templates/next-fastapi-monorepo/packages/ui/eslint.config.js +4 -0
  186. package/templates/next-fastapi-monorepo/packages/ui/package.json +49 -0
  187. package/templates/next-fastapi-monorepo/packages/ui/postcss.config.mjs +6 -0
  188. package/templates/next-fastapi-monorepo/packages/ui/src/config/.gitkeep +1 -0
  189. package/templates/next-fastapi-monorepo/packages/ui/src/providers/.gitkeep +1 -0
  190. package/templates/next-fastapi-monorepo/packages/ui/src/repo/.gitkeep +1 -0
  191. package/templates/next-fastapi-monorepo/packages/ui/src/runtime/hooks/.gitkeep +1 -0
  192. package/templates/next-fastapi-monorepo/packages/ui/src/runtime/utils.ts +6 -0
  193. package/templates/next-fastapi-monorepo/packages/ui/src/service/.gitkeep +1 -0
  194. package/templates/next-fastapi-monorepo/packages/ui/src/styles/globals.css +129 -0
  195. package/templates/next-fastapi-monorepo/packages/ui/src/types/.gitkeep +1 -0
  196. package/templates/next-fastapi-monorepo/packages/ui/src/ui/button.tsx +65 -0
  197. package/templates/next-fastapi-monorepo/packages/ui/src/utils/.gitkeep +1 -0
  198. package/templates/next-fastapi-monorepo/packages/ui/tsconfig.json +10 -0
  199. package/templates/next-fastapi-monorepo/packages/ui/tsconfig.lint.json +8 -0
  200. package/templates/next-fastapi-monorepo/pnpm-lock.yaml +12404 -0
  201. package/templates/next-fastapi-monorepo/pnpm-workspace.yaml +3 -0
  202. package/templates/next-fastapi-monorepo/renovate.json +6 -0
  203. package/templates/next-fastapi-monorepo/tsconfig.json +4 -0
  204. package/templates/next-fastapi-monorepo/turbo.json +27 -0
  205. package/templates/next-monorepo/.eslintrc.js +13 -0
  206. package/templates/next-monorepo/.github/workflows/ci.yml +76 -0
  207. package/templates/next-monorepo/.gitleaks.toml +5 -0
  208. package/templates/next-monorepo/.prettierignore +7 -0
  209. package/templates/next-monorepo/.prettierrc +11 -0
  210. package/templates/next-monorepo/AGENTS.md +35 -0
  211. package/templates/next-monorepo/ARCHITECTURE.md +67 -0
  212. package/templates/next-monorepo/README.md +45 -0
  213. package/templates/next-monorepo/apps/web/app/favicon.ico +0 -0
  214. package/templates/next-monorepo/apps/web/app/layout.tsx +43 -0
  215. package/templates/next-monorepo/apps/web/app/page.tsx +19 -0
  216. package/templates/next-monorepo/apps/web/biome.json +16 -0
  217. package/templates/next-monorepo/apps/web/components/.gitkeep +0 -0
  218. package/templates/next-monorepo/apps/web/components/theme-provider.tsx +71 -0
  219. package/templates/next-monorepo/apps/web/components.json +23 -0
  220. package/templates/next-monorepo/apps/web/dependency-cruiser.cjs +66 -0
  221. package/templates/next-monorepo/apps/web/eslint.config.js +4 -0
  222. package/templates/next-monorepo/apps/web/hooks/.gitkeep +0 -0
  223. package/templates/next-monorepo/apps/web/knip.json +17 -0
  224. package/templates/next-monorepo/apps/web/lib/.gitkeep +0 -0
  225. package/templates/next-monorepo/apps/web/lighthouserc.json +23 -0
  226. package/templates/next-monorepo/apps/web/next-env.d.ts +6 -0
  227. package/templates/next-monorepo/apps/web/next.config.mjs +6 -0
  228. package/templates/next-monorepo/apps/web/package.json +46 -0
  229. package/templates/next-monorepo/apps/web/playwright.config.ts +18 -0
  230. package/templates/next-monorepo/apps/web/postcss.config.mjs +1 -0
  231. package/templates/next-monorepo/apps/web/skills-lock.json +40 -0
  232. package/templates/next-monorepo/apps/web/tests/e2e/smoke.spec.ts +13 -0
  233. package/templates/next-monorepo/apps/web/tests/unit/page.test.tsx +16 -0
  234. package/templates/next-monorepo/apps/web/tsconfig.json +23 -0
  235. package/templates/next-monorepo/apps/web/vitest.config.ts +13 -0
  236. package/templates/next-monorepo/apps/web/vitest.setup.ts +1 -0
  237. package/templates/next-monorepo/docs/DESIGN.md +11 -0
  238. package/templates/next-monorepo/docs/FRONTEND.md +32 -0
  239. package/templates/next-monorepo/docs/PLANS.md +25 -0
  240. package/templates/next-monorepo/docs/PRODUCT_SENSE.md +11 -0
  241. package/templates/next-monorepo/docs/QUALITY_SCORE.md +18 -0
  242. package/templates/next-monorepo/docs/RELIABILITY.md +37 -0
  243. package/templates/next-monorepo/docs/SECURITY.md +14 -0
  244. package/templates/next-monorepo/docs/design-docs/core-beliefs.md +6 -0
  245. package/templates/next-monorepo/docs/design-docs/included-skills.md +13 -0
  246. package/templates/next-monorepo/docs/design-docs/index.md +6 -0
  247. package/templates/next-monorepo/docs/exec-plans/active/.gitkeep +1 -0
  248. package/templates/next-monorepo/docs/exec-plans/completed/.gitkeep +1 -0
  249. package/templates/next-monorepo/docs/exec-plans/repeated-work.md +15 -0
  250. package/templates/next-monorepo/docs/exec-plans/tech-debt-tracker.md +3 -0
  251. package/templates/next-monorepo/docs/generated/db-schema.md +3 -0
  252. package/templates/next-monorepo/docs/product-specs/index.md +5 -0
  253. package/templates/next-monorepo/docs/product-specs/new-user-onboarding.md +12 -0
  254. package/templates/next-monorepo/docs/references/design-system-reference-llms.txt +13 -0
  255. package/templates/next-monorepo/justfile +26 -0
  256. package/templates/next-monorepo/lefthook.yml +8 -0
  257. package/templates/next-monorepo/mise.toml +4 -0
  258. package/templates/next-monorepo/package.json +41 -0
  259. package/templates/next-monorepo/packages/eslint-config/README.md +3 -0
  260. package/templates/next-monorepo/packages/eslint-config/base.js +32 -0
  261. package/templates/next-monorepo/packages/eslint-config/next.js +51 -0
  262. package/templates/next-monorepo/packages/eslint-config/package.json +26 -0
  263. package/templates/next-monorepo/packages/eslint-config/react-internal.js +41 -0
  264. package/templates/next-monorepo/packages/typescript-config/README.md +3 -0
  265. package/templates/next-monorepo/packages/typescript-config/base.json +20 -0
  266. package/templates/next-monorepo/packages/typescript-config/nextjs.json +13 -0
  267. package/templates/next-monorepo/packages/typescript-config/package.json +9 -0
  268. package/templates/next-monorepo/packages/typescript-config/react-library.json +8 -0
  269. package/templates/next-monorepo/packages/ui/components.json +23 -0
  270. package/templates/next-monorepo/packages/ui/dependency-cruiser.cjs +100 -0
  271. package/templates/next-monorepo/packages/ui/eslint.config.js +4 -0
  272. package/templates/next-monorepo/packages/ui/package.json +49 -0
  273. package/templates/next-monorepo/packages/ui/postcss.config.mjs +6 -0
  274. package/templates/next-monorepo/packages/ui/src/config/.gitkeep +1 -0
  275. package/templates/next-monorepo/packages/ui/src/providers/.gitkeep +1 -0
  276. package/templates/next-monorepo/packages/ui/src/repo/.gitkeep +1 -0
  277. package/templates/next-monorepo/packages/ui/src/runtime/hooks/.gitkeep +1 -0
  278. package/templates/next-monorepo/packages/ui/src/runtime/utils.ts +6 -0
  279. package/templates/next-monorepo/packages/ui/src/service/.gitkeep +1 -0
  280. package/templates/next-monorepo/packages/ui/src/styles/globals.css +129 -0
  281. package/templates/next-monorepo/packages/ui/src/types/.gitkeep +1 -0
  282. package/templates/next-monorepo/packages/ui/src/ui/button.tsx +65 -0
  283. package/templates/next-monorepo/packages/ui/src/utils/.gitkeep +1 -0
  284. package/templates/next-monorepo/packages/ui/tsconfig.json +10 -0
  285. package/templates/next-monorepo/packages/ui/tsconfig.lint.json +8 -0
  286. package/templates/next-monorepo/pnpm-lock.yaml +12402 -0
  287. package/templates/next-monorepo/pnpm-workspace.yaml +3 -0
  288. package/templates/next-monorepo/renovate.json +6 -0
  289. package/templates/next-monorepo/tsconfig.json +4 -0
  290. package/templates/next-monorepo/turbo.json +27 -0
  291. package/templates/registry.json +22 -0
@@ -0,0 +1,1041 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anyhow"
7
+ version = "1.0.102"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
10
+
11
+ [[package]]
12
+ name = "atomic-waker"
13
+ version = "1.1.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
16
+
17
+ [[package]]
18
+ name = "autocfg"
19
+ version = "1.5.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
22
+
23
+ [[package]]
24
+ name = "axum"
25
+ version = "0.8.8"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
28
+ dependencies = [
29
+ "axum-core",
30
+ "bytes",
31
+ "form_urlencoded",
32
+ "futures-util",
33
+ "http",
34
+ "http-body",
35
+ "http-body-util",
36
+ "hyper",
37
+ "hyper-util",
38
+ "itoa",
39
+ "matchit",
40
+ "memchr",
41
+ "mime",
42
+ "percent-encoding",
43
+ "pin-project-lite",
44
+ "serde_core",
45
+ "serde_json",
46
+ "serde_path_to_error",
47
+ "serde_urlencoded",
48
+ "sync_wrapper",
49
+ "tokio",
50
+ "tower",
51
+ "tower-layer",
52
+ "tower-service",
53
+ "tracing",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "axum-core"
58
+ version = "0.5.6"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
61
+ dependencies = [
62
+ "bytes",
63
+ "futures-core",
64
+ "http",
65
+ "http-body",
66
+ "http-body-util",
67
+ "mime",
68
+ "pin-project-lite",
69
+ "sync_wrapper",
70
+ "tower-layer",
71
+ "tower-service",
72
+ "tracing",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "axum-server"
77
+ version = "0.1.0"
78
+ dependencies = [
79
+ "axum",
80
+ "proptest",
81
+ "tokio",
82
+ "tower",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "bit-set"
87
+ version = "0.8.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
90
+ dependencies = [
91
+ "bit-vec",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bit-vec"
96
+ version = "0.8.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
99
+
100
+ [[package]]
101
+ name = "bitflags"
102
+ version = "2.11.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
105
+
106
+ [[package]]
107
+ name = "bytes"
108
+ version = "1.11.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
111
+
112
+ [[package]]
113
+ name = "cfg-if"
114
+ version = "1.0.4"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
117
+
118
+ [[package]]
119
+ name = "equivalent"
120
+ version = "1.0.2"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
123
+
124
+ [[package]]
125
+ name = "errno"
126
+ version = "0.3.14"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
129
+ dependencies = [
130
+ "libc",
131
+ "windows-sys",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "fastrand"
136
+ version = "2.4.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
139
+
140
+ [[package]]
141
+ name = "fnv"
142
+ version = "1.0.7"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
145
+
146
+ [[package]]
147
+ name = "foldhash"
148
+ version = "0.1.5"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
151
+
152
+ [[package]]
153
+ name = "form_urlencoded"
154
+ version = "1.2.2"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
157
+ dependencies = [
158
+ "percent-encoding",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "futures-channel"
163
+ version = "0.3.32"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
166
+ dependencies = [
167
+ "futures-core",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "futures-core"
172
+ version = "0.3.32"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
175
+
176
+ [[package]]
177
+ name = "futures-task"
178
+ version = "0.3.32"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
181
+
182
+ [[package]]
183
+ name = "futures-util"
184
+ version = "0.3.32"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
187
+ dependencies = [
188
+ "futures-core",
189
+ "futures-task",
190
+ "pin-project-lite",
191
+ "slab",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "getrandom"
196
+ version = "0.3.4"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
199
+ dependencies = [
200
+ "cfg-if",
201
+ "libc",
202
+ "r-efi 5.3.0",
203
+ "wasip2",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "getrandom"
208
+ version = "0.4.2"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
211
+ dependencies = [
212
+ "cfg-if",
213
+ "libc",
214
+ "r-efi 6.0.0",
215
+ "wasip2",
216
+ "wasip3",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "hashbrown"
221
+ version = "0.15.5"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
224
+ dependencies = [
225
+ "foldhash",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "hashbrown"
230
+ version = "0.17.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
233
+
234
+ [[package]]
235
+ name = "heck"
236
+ version = "0.5.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
239
+
240
+ [[package]]
241
+ name = "http"
242
+ version = "1.4.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
245
+ dependencies = [
246
+ "bytes",
247
+ "itoa",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "http-body"
252
+ version = "1.0.1"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
255
+ dependencies = [
256
+ "bytes",
257
+ "http",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "http-body-util"
262
+ version = "0.1.3"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
265
+ dependencies = [
266
+ "bytes",
267
+ "futures-core",
268
+ "http",
269
+ "http-body",
270
+ "pin-project-lite",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "httparse"
275
+ version = "1.10.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
278
+
279
+ [[package]]
280
+ name = "httpdate"
281
+ version = "1.0.3"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
284
+
285
+ [[package]]
286
+ name = "hyper"
287
+ version = "1.9.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
290
+ dependencies = [
291
+ "atomic-waker",
292
+ "bytes",
293
+ "futures-channel",
294
+ "futures-core",
295
+ "http",
296
+ "http-body",
297
+ "httparse",
298
+ "httpdate",
299
+ "itoa",
300
+ "pin-project-lite",
301
+ "smallvec",
302
+ "tokio",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "hyper-util"
307
+ version = "0.1.20"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
310
+ dependencies = [
311
+ "bytes",
312
+ "http",
313
+ "http-body",
314
+ "hyper",
315
+ "pin-project-lite",
316
+ "tokio",
317
+ "tower-service",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "id-arena"
322
+ version = "2.3.0"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
325
+
326
+ [[package]]
327
+ name = "indexmap"
328
+ version = "2.14.0"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
331
+ dependencies = [
332
+ "equivalent",
333
+ "hashbrown 0.17.0",
334
+ "serde",
335
+ "serde_core",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "itoa"
340
+ version = "1.0.18"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
343
+
344
+ [[package]]
345
+ name = "leb128fmt"
346
+ version = "0.1.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
349
+
350
+ [[package]]
351
+ name = "libc"
352
+ version = "0.2.184"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
355
+
356
+ [[package]]
357
+ name = "linux-raw-sys"
358
+ version = "0.12.1"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
361
+
362
+ [[package]]
363
+ name = "lock_api"
364
+ version = "0.4.14"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
367
+ dependencies = [
368
+ "scopeguard",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "log"
373
+ version = "0.4.29"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
376
+
377
+ [[package]]
378
+ name = "matchit"
379
+ version = "0.8.4"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
382
+
383
+ [[package]]
384
+ name = "memchr"
385
+ version = "2.8.0"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
388
+
389
+ [[package]]
390
+ name = "mime"
391
+ version = "0.3.17"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
394
+
395
+ [[package]]
396
+ name = "mio"
397
+ version = "1.2.0"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
400
+ dependencies = [
401
+ "libc",
402
+ "wasi",
403
+ "windows-sys",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "num-traits"
408
+ version = "0.2.19"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
411
+ dependencies = [
412
+ "autocfg",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "once_cell"
417
+ version = "1.21.4"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
420
+
421
+ [[package]]
422
+ name = "parking_lot"
423
+ version = "0.12.5"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
426
+ dependencies = [
427
+ "lock_api",
428
+ "parking_lot_core",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "parking_lot_core"
433
+ version = "0.9.12"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
436
+ dependencies = [
437
+ "cfg-if",
438
+ "libc",
439
+ "redox_syscall",
440
+ "smallvec",
441
+ "windows-link",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "percent-encoding"
446
+ version = "2.3.2"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
449
+
450
+ [[package]]
451
+ name = "pin-project-lite"
452
+ version = "0.2.17"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
455
+
456
+ [[package]]
457
+ name = "ppv-lite86"
458
+ version = "0.2.21"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
461
+ dependencies = [
462
+ "zerocopy",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "prettyplease"
467
+ version = "0.2.37"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
470
+ dependencies = [
471
+ "proc-macro2",
472
+ "syn",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "proc-macro2"
477
+ version = "1.0.106"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
480
+ dependencies = [
481
+ "unicode-ident",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "proptest"
486
+ version = "1.11.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
489
+ dependencies = [
490
+ "bit-set",
491
+ "bit-vec",
492
+ "bitflags",
493
+ "num-traits",
494
+ "rand",
495
+ "rand_chacha",
496
+ "rand_xorshift",
497
+ "regex-syntax",
498
+ "rusty-fork",
499
+ "tempfile",
500
+ "unarray",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "quick-error"
505
+ version = "1.2.3"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
508
+
509
+ [[package]]
510
+ name = "quote"
511
+ version = "1.0.45"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
514
+ dependencies = [
515
+ "proc-macro2",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "r-efi"
520
+ version = "5.3.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
523
+
524
+ [[package]]
525
+ name = "r-efi"
526
+ version = "6.0.0"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
529
+
530
+ [[package]]
531
+ name = "rand"
532
+ version = "0.9.3"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166"
535
+ dependencies = [
536
+ "rand_chacha",
537
+ "rand_core",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "rand_chacha"
542
+ version = "0.9.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
545
+ dependencies = [
546
+ "ppv-lite86",
547
+ "rand_core",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "rand_core"
552
+ version = "0.9.5"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
555
+ dependencies = [
556
+ "getrandom 0.3.4",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "rand_xorshift"
561
+ version = "0.4.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
564
+ dependencies = [
565
+ "rand_core",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "redox_syscall"
570
+ version = "0.5.18"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
573
+ dependencies = [
574
+ "bitflags",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "regex-syntax"
579
+ version = "0.8.10"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
582
+
583
+ [[package]]
584
+ name = "rustix"
585
+ version = "1.1.4"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
588
+ dependencies = [
589
+ "bitflags",
590
+ "errno",
591
+ "libc",
592
+ "linux-raw-sys",
593
+ "windows-sys",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "rusty-fork"
598
+ version = "0.3.1"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
601
+ dependencies = [
602
+ "fnv",
603
+ "quick-error",
604
+ "tempfile",
605
+ "wait-timeout",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "ryu"
610
+ version = "1.0.23"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
613
+
614
+ [[package]]
615
+ name = "scopeguard"
616
+ version = "1.2.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
619
+
620
+ [[package]]
621
+ name = "semver"
622
+ version = "1.0.28"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
625
+
626
+ [[package]]
627
+ name = "serde"
628
+ version = "1.0.228"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
631
+ dependencies = [
632
+ "serde_core",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "serde_core"
637
+ version = "1.0.228"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
640
+ dependencies = [
641
+ "serde_derive",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "serde_derive"
646
+ version = "1.0.228"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
649
+ dependencies = [
650
+ "proc-macro2",
651
+ "quote",
652
+ "syn",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "serde_json"
657
+ version = "1.0.149"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
660
+ dependencies = [
661
+ "itoa",
662
+ "memchr",
663
+ "serde",
664
+ "serde_core",
665
+ "zmij",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "serde_path_to_error"
670
+ version = "0.1.20"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
673
+ dependencies = [
674
+ "itoa",
675
+ "serde",
676
+ "serde_core",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "serde_urlencoded"
681
+ version = "0.7.1"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
684
+ dependencies = [
685
+ "form_urlencoded",
686
+ "itoa",
687
+ "ryu",
688
+ "serde",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "signal-hook-registry"
693
+ version = "1.4.8"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
696
+ dependencies = [
697
+ "errno",
698
+ "libc",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "slab"
703
+ version = "0.4.12"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
706
+
707
+ [[package]]
708
+ name = "smallvec"
709
+ version = "1.15.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
712
+
713
+ [[package]]
714
+ name = "socket2"
715
+ version = "0.6.3"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
718
+ dependencies = [
719
+ "libc",
720
+ "windows-sys",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "syn"
725
+ version = "2.0.117"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
728
+ dependencies = [
729
+ "proc-macro2",
730
+ "quote",
731
+ "unicode-ident",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "sync_wrapper"
736
+ version = "1.0.2"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
739
+
740
+ [[package]]
741
+ name = "tempfile"
742
+ version = "3.27.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
745
+ dependencies = [
746
+ "fastrand",
747
+ "getrandom 0.4.2",
748
+ "once_cell",
749
+ "rustix",
750
+ "windows-sys",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "tokio"
755
+ version = "1.51.1"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
758
+ dependencies = [
759
+ "bytes",
760
+ "libc",
761
+ "mio",
762
+ "parking_lot",
763
+ "pin-project-lite",
764
+ "signal-hook-registry",
765
+ "socket2",
766
+ "tokio-macros",
767
+ "windows-sys",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "tokio-macros"
772
+ version = "2.7.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
775
+ dependencies = [
776
+ "proc-macro2",
777
+ "quote",
778
+ "syn",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "tower"
783
+ version = "0.5.3"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
786
+ dependencies = [
787
+ "futures-core",
788
+ "futures-util",
789
+ "pin-project-lite",
790
+ "sync_wrapper",
791
+ "tokio",
792
+ "tower-layer",
793
+ "tower-service",
794
+ "tracing",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "tower-layer"
799
+ version = "0.3.3"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
802
+
803
+ [[package]]
804
+ name = "tower-service"
805
+ version = "0.3.3"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
808
+
809
+ [[package]]
810
+ name = "tracing"
811
+ version = "0.1.44"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
814
+ dependencies = [
815
+ "log",
816
+ "pin-project-lite",
817
+ "tracing-core",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "tracing-core"
822
+ version = "0.1.36"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
825
+ dependencies = [
826
+ "once_cell",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "unarray"
831
+ version = "0.1.4"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
834
+
835
+ [[package]]
836
+ name = "unicode-ident"
837
+ version = "1.0.24"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
840
+
841
+ [[package]]
842
+ name = "unicode-xid"
843
+ version = "0.2.6"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
846
+
847
+ [[package]]
848
+ name = "wait-timeout"
849
+ version = "0.2.1"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
852
+ dependencies = [
853
+ "libc",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "wasi"
858
+ version = "0.11.1+wasi-snapshot-preview1"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
861
+
862
+ [[package]]
863
+ name = "wasip2"
864
+ version = "1.0.2+wasi-0.2.9"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
867
+ dependencies = [
868
+ "wit-bindgen",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "wasip3"
873
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
876
+ dependencies = [
877
+ "wit-bindgen",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "wasm-encoder"
882
+ version = "0.244.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
885
+ dependencies = [
886
+ "leb128fmt",
887
+ "wasmparser",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "wasm-metadata"
892
+ version = "0.244.0"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
895
+ dependencies = [
896
+ "anyhow",
897
+ "indexmap",
898
+ "wasm-encoder",
899
+ "wasmparser",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "wasmparser"
904
+ version = "0.244.0"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
907
+ dependencies = [
908
+ "bitflags",
909
+ "hashbrown 0.15.5",
910
+ "indexmap",
911
+ "semver",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "windows-link"
916
+ version = "0.2.1"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
919
+
920
+ [[package]]
921
+ name = "windows-sys"
922
+ version = "0.61.2"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
925
+ dependencies = [
926
+ "windows-link",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "wit-bindgen"
931
+ version = "0.51.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
934
+ dependencies = [
935
+ "wit-bindgen-rust-macro",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "wit-bindgen-core"
940
+ version = "0.51.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
943
+ dependencies = [
944
+ "anyhow",
945
+ "heck",
946
+ "wit-parser",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "wit-bindgen-rust"
951
+ version = "0.51.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
954
+ dependencies = [
955
+ "anyhow",
956
+ "heck",
957
+ "indexmap",
958
+ "prettyplease",
959
+ "syn",
960
+ "wasm-metadata",
961
+ "wit-bindgen-core",
962
+ "wit-component",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "wit-bindgen-rust-macro"
967
+ version = "0.51.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
970
+ dependencies = [
971
+ "anyhow",
972
+ "prettyplease",
973
+ "proc-macro2",
974
+ "quote",
975
+ "syn",
976
+ "wit-bindgen-core",
977
+ "wit-bindgen-rust",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "wit-component"
982
+ version = "0.244.0"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
985
+ dependencies = [
986
+ "anyhow",
987
+ "bitflags",
988
+ "indexmap",
989
+ "log",
990
+ "serde",
991
+ "serde_derive",
992
+ "serde_json",
993
+ "wasm-encoder",
994
+ "wasm-metadata",
995
+ "wasmparser",
996
+ "wit-parser",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "wit-parser"
1001
+ version = "0.244.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1004
+ dependencies = [
1005
+ "anyhow",
1006
+ "id-arena",
1007
+ "indexmap",
1008
+ "log",
1009
+ "semver",
1010
+ "serde",
1011
+ "serde_derive",
1012
+ "serde_json",
1013
+ "unicode-xid",
1014
+ "wasmparser",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "zerocopy"
1019
+ version = "0.8.48"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1022
+ dependencies = [
1023
+ "zerocopy-derive",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "zerocopy-derive"
1028
+ version = "0.8.48"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1031
+ dependencies = [
1032
+ "proc-macro2",
1033
+ "quote",
1034
+ "syn",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "zmij"
1039
+ version = "1.0.21"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"