enya-agent 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 (389) hide show
  1. package/.env.example +20 -0
  2. package/.github/workflows/ci.yml +70 -0
  3. package/.github/workflows/publish.yml +250 -0
  4. package/.gitmodules +3 -0
  5. package/Cargo.lock +3584 -0
  6. package/Cargo.toml +97 -0
  7. package/crates/enact/Cargo.toml +27 -0
  8. package/crates/enact/src/lib.rs +60 -0
  9. package/crates/enact-a2a/Cargo.toml +25 -0
  10. package/crates/enact-a2a/src/lib.rs +411 -0
  11. package/crates/enact-channels/Cargo.toml +64 -0
  12. package/crates/enact-channels/examples/README.md +80 -0
  13. package/crates/enact-channels/examples/channel_bot.rs +169 -0
  14. package/crates/enact-channels/examples/telegram-echo.rs +34 -0
  15. package/crates/enact-channels/examples/whatsapp-echo.rs +142 -0
  16. package/crates/enact-channels/src/config.rs +213 -0
  17. package/crates/enact-channels/src/lib.rs +25 -0
  18. package/crates/enact-channels/src/runtime.rs +237 -0
  19. package/crates/enact-channels/src/security/mod.rs +5 -0
  20. package/crates/enact-channels/src/security/pairing.rs +205 -0
  21. package/crates/enact-channels/src/teams.rs +601 -0
  22. package/crates/enact-channels/src/telegram.rs +2833 -0
  23. package/crates/enact-channels/src/traits.rs +200 -0
  24. package/crates/enact-channels/src/webhook.rs +262 -0
  25. package/crates/enact-channels/src/whatsapp.rs +310 -0
  26. package/crates/enact-cli/Cargo.toml +40 -0
  27. package/crates/enact-cli/src/commands/doctor.rs +62 -0
  28. package/crates/enact-cli/src/commands/mod.rs +3 -0
  29. package/crates/enact-cli/src/commands/run.rs +69 -0
  30. package/crates/enact-cli/src/commands/serve.rs +81 -0
  31. package/crates/enact-cli/src/config.rs +2 -0
  32. package/crates/enact-cli/src/main.rs +79 -0
  33. package/crates/enact-config/Cargo.toml +36 -0
  34. package/crates/enact-config/ENV_VAR_MAPPING.md +135 -0
  35. package/crates/enact-config/QUICK_REFERENCE.md +92 -0
  36. package/crates/enact-config/README.md +107 -0
  37. package/crates/enact-config/TESTING.md +161 -0
  38. package/crates/enact-config/examples/test-env-vars.rs +100 -0
  39. package/crates/enact-config/src/config.rs +399 -0
  40. package/crates/enact-config/src/encrypted_store.rs +211 -0
  41. package/crates/enact-config/src/lib.rs +298 -0
  42. package/crates/enact-config/src/secrets.rs +149 -0
  43. package/crates/enact-config/src/sync.rs +260 -0
  44. package/crates/enact-config/test-env-vars.sh +34 -0
  45. package/crates/enact-config/tests/README.md +99 -0
  46. package/crates/enact-config/tests/config_integration_test.rs +202 -0
  47. package/crates/enact-config/tests/security_test.rs +140 -0
  48. package/crates/enact-context/Cargo.toml +41 -0
  49. package/crates/enact-context/src/budget.rs +314 -0
  50. package/crates/enact-context/src/calibrator.rs +535 -0
  51. package/crates/enact-context/src/compactor.rs +392 -0
  52. package/crates/enact-context/src/condenser.rs +826 -0
  53. package/crates/enact-context/src/lib.rs +94 -0
  54. package/crates/enact-context/src/segment.rs +238 -0
  55. package/crates/enact-context/src/step_context.rs +645 -0
  56. package/crates/enact-context/src/token_counter.rs +148 -0
  57. package/crates/enact-context/src/window.rs +372 -0
  58. package/crates/enact-core/Cargo.toml +42 -0
  59. package/crates/enact-core/README.md +98 -0
  60. package/crates/enact-core/src/background/executor.rs +524 -0
  61. package/crates/enact-core/src/background/mod.rs +48 -0
  62. package/crates/enact-core/src/background/target_binding.rs +390 -0
  63. package/crates/enact-core/src/background/trigger.rs +511 -0
  64. package/crates/enact-core/src/callable/callable.rs +152 -0
  65. package/crates/enact-core/src/callable/composite.rs +817 -0
  66. package/crates/enact-core/src/callable/graph.rs +104 -0
  67. package/crates/enact-core/src/callable/llm.rs +211 -0
  68. package/crates/enact-core/src/callable/mod.rs +64 -0
  69. package/crates/enact-core/src/callable/registry.rs +206 -0
  70. package/crates/enact-core/src/context/execution_context.rs +757 -0
  71. package/crates/enact-core/src/context/invocation.rs +99 -0
  72. package/crates/enact-core/src/context/mod.rs +50 -0
  73. package/crates/enact-core/src/context/tenant.rs +175 -0
  74. package/crates/enact-core/src/context/trace.rs +127 -0
  75. package/crates/enact-core/src/flow/conditional.rs +293 -0
  76. package/crates/enact-core/src/flow/mod.rs +43 -0
  77. package/crates/enact-core/src/flow/parallel.rs +437 -0
  78. package/crates/enact-core/src/flow/repeat.rs +534 -0
  79. package/crates/enact-core/src/flow/sequential.rs +248 -0
  80. package/crates/enact-core/src/graph/checkpoint.rs +79 -0
  81. package/crates/enact-core/src/graph/checkpoint_store.rs +76 -0
  82. package/crates/enact-core/src/graph/compiled.rs +189 -0
  83. package/crates/enact-core/src/graph/edge.rs +59 -0
  84. package/crates/enact-core/src/graph/graph_schema.rs +218 -0
  85. package/crates/enact-core/src/graph/loader.rs +155 -0
  86. package/crates/enact-core/src/graph/mod.rs +18 -0
  87. package/crates/enact-core/src/graph/node/function.rs +49 -0
  88. package/crates/enact-core/src/graph/node/mod.rs +48 -0
  89. package/crates/enact-core/src/graph/schema.rs +62 -0
  90. package/crates/enact-core/src/inbox/message.rs +405 -0
  91. package/crates/enact-core/src/inbox/mod.rs +31 -0
  92. package/crates/enact-core/src/inbox/store.rs +355 -0
  93. package/crates/enact-core/src/kernel/artifact/filesystem.rs +546 -0
  94. package/crates/enact-core/src/kernel/artifact/metadata.rs +283 -0
  95. package/crates/enact-core/src/kernel/artifact/mod.rs +27 -0
  96. package/crates/enact-core/src/kernel/artifact/store.rs +427 -0
  97. package/crates/enact-core/src/kernel/enforcement.rs +1315 -0
  98. package/crates/enact-core/src/kernel/error.rs +1200 -0
  99. package/crates/enact-core/src/kernel/event.rs +1394 -0
  100. package/crates/enact-core/src/kernel/execution_model.rs +831 -0
  101. package/crates/enact-core/src/kernel/execution_state.rs +189 -0
  102. package/crates/enact-core/src/kernel/execution_strategy.rs +117 -0
  103. package/crates/enact-core/src/kernel/ids.rs +2086 -0
  104. package/crates/enact-core/src/kernel/interrupt.rs +125 -0
  105. package/crates/enact-core/src/kernel/kernel.rs +1283 -0
  106. package/crates/enact-core/src/kernel/mod.rs +205 -0
  107. package/crates/enact-core/src/kernel/persistence/event_store.rs +270 -0
  108. package/crates/enact-core/src/kernel/persistence/message_store.rs +908 -0
  109. package/crates/enact-core/src/kernel/persistence/mod.rs +102 -0
  110. package/crates/enact-core/src/kernel/persistence/state_store.rs +228 -0
  111. package/crates/enact-core/src/kernel/persistence/vector_store.rs +299 -0
  112. package/crates/enact-core/src/kernel/reducer.rs +808 -0
  113. package/crates/enact-core/src/kernel/replay.rs +153 -0
  114. package/crates/enact-core/src/lib.rs +413 -0
  115. package/crates/enact-core/src/memory/episodic.rs +0 -0
  116. package/crates/enact-core/src/memory/mod.rs +6 -0
  117. package/crates/enact-core/src/memory/semantic.rs +0 -0
  118. package/crates/enact-core/src/memory/trait.rs +0 -0
  119. package/crates/enact-core/src/memory/vector_db.rs +0 -0
  120. package/crates/enact-core/src/memory/working.rs +0 -0
  121. package/crates/enact-core/src/policy/execution_policy.rs +292 -0
  122. package/crates/enact-core/src/policy/filters.rs +458 -0
  123. package/crates/enact-core/src/policy/input_processor.rs +407 -0
  124. package/crates/enact-core/src/policy/long_running.rs +134 -0
  125. package/crates/enact-core/src/policy/mod.rs +193 -0
  126. package/crates/enact-core/src/policy/pii_input.rs +274 -0
  127. package/crates/enact-core/src/policy/tenant_policy.rs +453 -0
  128. package/crates/enact-core/src/policy/tool_policy.rs +407 -0
  129. package/crates/enact-core/src/providers/mod.rs +63 -0
  130. package/crates/enact-core/src/providers/trait.rs +292 -0
  131. package/crates/enact-core/src/runner/callbacks.rs +6 -0
  132. package/crates/enact-core/src/runner/execution_runner.rs +476 -0
  133. package/crates/enact-core/src/runner/loop.rs +117 -0
  134. package/crates/enact-core/src/runner/mod.rs +58 -0
  135. package/crates/enact-core/src/runner/protected_runner.rs +280 -0
  136. package/crates/enact-core/src/signal/inmemory.rs +231 -0
  137. package/crates/enact-core/src/signal/mod.rs +108 -0
  138. package/crates/enact-core/src/streaming/event_logger.rs +195 -0
  139. package/crates/enact-core/src/streaming/event_stream.rs +1423 -0
  140. package/crates/enact-core/src/streaming/mod.rs +108 -0
  141. package/crates/enact-core/src/streaming/pause_cancel.rs +0 -0
  142. package/crates/enact-core/src/streaming/protected_emitter.rs +173 -0
  143. package/crates/enact-core/src/streaming/protection/context.rs +136 -0
  144. package/crates/enact-core/src/streaming/protection/encryption.rs +289 -0
  145. package/crates/enact-core/src/streaming/protection/mod.rs +43 -0
  146. package/crates/enact-core/src/streaming/protection/pii_protection.rs +243 -0
  147. package/crates/enact-core/src/streaming/protection/processor.rs +166 -0
  148. package/crates/enact-core/src/streaming/sse.rs +0 -0
  149. package/crates/enact-core/src/telemetry/exporter.rs +0 -0
  150. package/crates/enact-core/src/telemetry/init.rs +0 -0
  151. package/crates/enact-core/src/telemetry/mod.rs +49 -0
  152. package/crates/enact-core/src/telemetry/spans.rs +245 -0
  153. package/crates/enact-core/src/tool/agent_tool.rs +177 -0
  154. package/crates/enact-core/src/tool/browser/mod.rs +0 -0
  155. package/crates/enact-core/src/tool/browser/webdriver.rs +0 -0
  156. package/crates/enact-core/src/tool/cost.rs +247 -0
  157. package/crates/enact-core/src/tool/discovery.rs +0 -0
  158. package/crates/enact-core/src/tool/dispatcher.rs +347 -0
  159. package/crates/enact-core/src/tool/filesystem.rs +231 -0
  160. package/crates/enact-core/src/tool/function.rs +99 -0
  161. package/crates/enact-core/src/tool/git.rs +162 -0
  162. package/crates/enact-core/src/tool/http.rs +214 -0
  163. package/crates/enact-core/src/tool/mcp/client.rs +0 -0
  164. package/crates/enact-core/src/tool/mcp/mod.rs +0 -0
  165. package/crates/enact-core/src/tool/mod.rs +51 -0
  166. package/crates/enact-core/src/tool/reasoning/debugging.rs +0 -0
  167. package/crates/enact-core/src/tool/reasoning/mcts.rs +0 -0
  168. package/crates/enact-core/src/tool/reasoning/mod.rs +0 -0
  169. package/crates/enact-core/src/tool/reasoning/sequential.rs +0 -0
  170. package/crates/enact-core/src/tool/sandbox/dagger.rs +0 -0
  171. package/crates/enact-core/src/tool/sandbox/mod.rs +0 -0
  172. package/crates/enact-core/src/tool/shell.rs +147 -0
  173. package/crates/enact-core/src/tool/trait.rs +33 -0
  174. package/crates/enact-core/src/tool/web_search.rs +277 -0
  175. package/crates/enact-core/src/util/config.rs +0 -0
  176. package/crates/enact-core/src/util/errors.rs +0 -0
  177. package/crates/enact-core/src/util/mod.rs +6 -0
  178. package/crates/enact-core/tests/airgapped_e2e_test.rs +291 -0
  179. package/crates/enact-core/tests/e2e_agentic_loop.rs +119 -0
  180. package/crates/enact-core/tests/e2e_test.rs +259 -0
  181. package/crates/enact-core/tests/graph_test.rs +130 -0
  182. package/crates/enact-core/tests/stream_event_id_validation.rs +435 -0
  183. package/crates/enact-cron/Cargo.toml +28 -0
  184. package/crates/enact-cron/src/lib.rs +44 -0
  185. package/crates/enact-cron/src/schedule.rs +156 -0
  186. package/crates/enact-cron/src/store.rs +589 -0
  187. package/crates/enact-cron/src/types.rs +148 -0
  188. package/crates/enact-gateway/Cargo.toml +31 -0
  189. package/crates/enact-gateway/README.md +30 -0
  190. package/crates/enact-gateway/examples/whatsapp-gateway-runner-mock.rs +59 -0
  191. package/crates/enact-gateway/examples/whatsapp-gateway.rs +42 -0
  192. package/crates/enact-gateway/src/lib.rs +582 -0
  193. package/crates/enact-mcp/Cargo.toml +24 -0
  194. package/crates/enact-mcp/src/lib.rs +178 -0
  195. package/crates/enact-memory/Cargo.toml +25 -0
  196. package/crates/enact-memory/src/backend.rs +20 -0
  197. package/crates/enact-memory/src/chunker.rs +230 -0
  198. package/crates/enact-memory/src/embeddings.rs +221 -0
  199. package/crates/enact-memory/src/lib.rs +67 -0
  200. package/crates/enact-memory/src/markdown.rs +127 -0
  201. package/crates/enact-memory/src/none.rs +61 -0
  202. package/crates/enact-memory/src/sqlite.rs +276 -0
  203. package/crates/enact-memory/src/traits.rs +65 -0
  204. package/crates/enact-memory/src/vector.rs +198 -0
  205. package/crates/enact-oauth/Cargo.toml +27 -0
  206. package/crates/enact-oauth/src/lib.rs +584 -0
  207. package/crates/enact-observability/Cargo.toml +22 -0
  208. package/crates/enact-observability/src/lib.rs +197 -0
  209. package/crates/enact-providers/Cargo.toml +33 -0
  210. package/crates/enact-providers/examples/hello-agent.rs +33 -0
  211. package/crates/enact-providers/src/anthropic.rs +182 -0
  212. package/crates/enact-providers/src/azure.rs +96 -0
  213. package/crates/enact-providers/src/bridge.rs +221 -0
  214. package/crates/enact-providers/src/gemini.rs +227 -0
  215. package/crates/enact-providers/src/http.rs +78 -0
  216. package/crates/enact-providers/src/lib.rs +53 -0
  217. package/crates/enact-providers/src/openai_compatible.rs +167 -0
  218. package/crates/enact-providers/src/openrouter.rs +33 -0
  219. package/crates/enact-runner/Cargo.toml +24 -0
  220. package/crates/enact-runner/README.md +76 -0
  221. package/crates/enact-runner/src/compaction.rs +225 -0
  222. package/crates/enact-runner/src/config.rs +118 -0
  223. package/crates/enact-runner/src/lib.rs +63 -0
  224. package/crates/enact-runner/src/loop_driver.rs +414 -0
  225. package/crates/enact-runner/src/parser.rs +421 -0
  226. package/crates/enact-runner/src/retry.rs +262 -0
  227. package/crates/enact-runner/tests/integration.rs +278 -0
  228. package/crates/enact-security/Cargo.toml +22 -0
  229. package/crates/enact-security/src/audit.rs +375 -0
  230. package/crates/enact-security/src/lib.rs +37 -0
  231. package/crates/enact-security/src/policy.rs +406 -0
  232. package/crates/enact-skills/Cargo.toml +25 -0
  233. package/crates/enact-skills/src/lib.rs +506 -0
  234. package/crates/enact-tools/Cargo.toml +22 -0
  235. package/crates/enact-tools/src/file_read.rs +166 -0
  236. package/crates/enact-tools/src/file_write.rs +216 -0
  237. package/crates/enact-tools/src/git_operations.rs +513 -0
  238. package/crates/enact-tools/src/http_request.rs +417 -0
  239. package/crates/enact-tools/src/lib.rs +104 -0
  240. package/crates/enact-tools/src/security.rs +227 -0
  241. package/crates/enact-tools/src/shell.rs +191 -0
  242. package/crates/enact-tools/src/traits.rs +159 -0
  243. package/docs/Makefile +74 -0
  244. package/docs/config.toml +62 -0
  245. package/docs/content/_index.md +174 -0
  246. package/docs/content/a2a/_index.md +431 -0
  247. package/docs/content/api/_index.md +323 -0
  248. package/docs/content/channels/_index.md +160 -0
  249. package/docs/content/channels/teams.md +205 -0
  250. package/docs/content/channels/telegram.md +182 -0
  251. package/docs/content/channels/webhook.md +423 -0
  252. package/docs/content/channels/whatsapp.md +240 -0
  253. package/docs/content/cli/_index.md +261 -0
  254. package/docs/content/concepts/_index.md +273 -0
  255. package/docs/content/configuration/_index.md +241 -0
  256. package/docs/content/cron/_index.md +248 -0
  257. package/docs/content/developers/_index.md +278 -0
  258. package/docs/content/getting-started/_index.md +180 -0
  259. package/docs/content/installation/_index.md +186 -0
  260. package/docs/content/installation/uninstall.md +101 -0
  261. package/docs/content/installation/updating.md +120 -0
  262. package/docs/content/mcp/_index.md +215 -0
  263. package/docs/content/memory/_index.md +163 -0
  264. package/docs/content/oauth/_index.md +515 -0
  265. package/docs/content/providers/_index.md +206 -0
  266. package/docs/content/roadmap/_index.md +199 -0
  267. package/docs/content/security/_index.md +219 -0
  268. package/docs/content/skills/_index.md +228 -0
  269. package/docs/content/tools/_index.md +485 -0
  270. package/docs/content/troubleshooting/_index.md +259 -0
  271. package/docs/content/yaml-schema/_index.md +294 -0
  272. package/docs/static/giallo-dark.css +91 -0
  273. package/docs/static/giallo-light.css +91 -0
  274. package/docs/themes/tanuki/.github/workflows/deploy.yml +44 -0
  275. package/docs/themes/tanuki/LICENSE +21 -0
  276. package/docs/themes/tanuki/README.md +166 -0
  277. package/docs/themes/tanuki/examples/blog/config.toml +58 -0
  278. package/docs/themes/tanuki/examples/blog/content/_index.md +4 -0
  279. package/docs/themes/tanuki/examples/blog/content/about.md +33 -0
  280. package/docs/themes/tanuki/examples/blog/content/blog/_index.md +7 -0
  281. package/docs/themes/tanuki/examples/blog/content/blog/api-design-best-practices.md +245 -0
  282. package/docs/themes/tanuki/examples/blog/content/blog/building-accessible-websites.md +147 -0
  283. package/docs/themes/tanuki/examples/blog/content/blog/css-grid-vs-flexbox.md +165 -0
  284. package/docs/themes/tanuki/examples/blog/content/blog/customizing-catppuccin-colors.md +137 -0
  285. package/docs/themes/tanuki/examples/blog/content/blog/dark-mode-best-practices.md +82 -0
  286. package/docs/themes/tanuki/examples/blog/content/blog/docker-essentials.md +301 -0
  287. package/docs/themes/tanuki/examples/blog/content/blog/getting-started-with-zola.md +129 -0
  288. package/docs/themes/tanuki/examples/blog/content/blog/git-workflow-for-content.md +112 -0
  289. package/docs/themes/tanuki/examples/blog/content/blog/introduction-to-webassembly.md +183 -0
  290. package/docs/themes/tanuki/examples/blog/content/blog/modern-javascript-features.md +234 -0
  291. package/docs/themes/tanuki/examples/blog/content/blog/testing-strategies.md +311 -0
  292. package/docs/themes/tanuki/examples/blog/content/blog/typography-for-developers.md +104 -0
  293. package/docs/themes/tanuki/examples/blog/content/blog/welcome-to-tanuki.md +67 -0
  294. package/docs/themes/tanuki/examples/blog/content/blog/why-static-sites.md +85 -0
  295. package/docs/themes/tanuki/examples/blog/content/projects.md +64 -0
  296. package/docs/themes/tanuki/examples/book/config.toml +17 -0
  297. package/docs/themes/tanuki/examples/book/content/_index.md +12 -0
  298. package/docs/themes/tanuki/examples/book/content/chapter-1.md +90 -0
  299. package/docs/themes/tanuki/examples/book/content/chapter-2.md +143 -0
  300. package/docs/themes/tanuki/examples/book/content/chapter-3.md +217 -0
  301. package/docs/themes/tanuki/examples/book/content/chapter-4.md +224 -0
  302. package/docs/themes/tanuki/examples/book/content/chapter-5.md +297 -0
  303. package/docs/themes/tanuki/examples/book/content/print.md +6 -0
  304. package/docs/themes/tanuki/examples/docs/config.toml +28 -0
  305. package/docs/themes/tanuki/examples/docs/content/_index.md +20 -0
  306. package/docs/themes/tanuki/examples/docs/content/components.md +156 -0
  307. package/docs/themes/tanuki/examples/docs/content/configuration.md +94 -0
  308. package/docs/themes/tanuki/examples/docs/content/customization.md +202 -0
  309. package/docs/themes/tanuki/examples/docs/content/deployment.md +204 -0
  310. package/docs/themes/tanuki/examples/docs/content/installation.md +59 -0
  311. package/docs/themes/tanuki/examples/docs/content/print.md +6 -0
  312. package/docs/themes/tanuki/examples/docs/static/img/tanuki-icon.avif +0 -0
  313. package/docs/themes/tanuki/examples/index.html +2104 -0
  314. package/docs/themes/tanuki/mise.toml +108 -0
  315. package/docs/themes/tanuki/sass/base/_catppuccin.scss +164 -0
  316. package/docs/themes/tanuki/sass/base/_fonts.scss +64 -0
  317. package/docs/themes/tanuki/sass/base/_reset.scss +152 -0
  318. package/docs/themes/tanuki/sass/base/_typography.scss +523 -0
  319. package/docs/themes/tanuki/sass/components/_buttons.scss +209 -0
  320. package/docs/themes/tanuki/sass/components/_code.scss +457 -0
  321. package/docs/themes/tanuki/sass/components/_landing.scss +633 -0
  322. package/docs/themes/tanuki/sass/components/_layout.scss +294 -0
  323. package/docs/themes/tanuki/sass/components/_navigation.scss +1200 -0
  324. package/docs/themes/tanuki/sass/components/_print.scss +237 -0
  325. package/docs/themes/tanuki/sass/components/_search.scss +224 -0
  326. package/docs/themes/tanuki/sass/components/_sidebar.scss +473 -0
  327. package/docs/themes/tanuki/sass/components/_theme-toggle.scss +186 -0
  328. package/docs/themes/tanuki/sass/modes/_blog.scss +366 -0
  329. package/docs/themes/tanuki/sass/modes/_product.scss +875 -0
  330. package/docs/themes/tanuki/sass/modes/_raskell.scss +1696 -0
  331. package/docs/themes/tanuki/sass/patterns/_buttons.scss +183 -0
  332. package/docs/themes/tanuki/sass/patterns/_cards.scss +144 -0
  333. package/docs/themes/tanuki/sass/patterns/_index.scss +9 -0
  334. package/docs/themes/tanuki/sass/patterns/_lists.scss +259 -0
  335. package/docs/themes/tanuki/sass/patterns/_sections.scss +243 -0
  336. package/docs/themes/tanuki/sass/style.scss +47 -0
  337. package/docs/themes/tanuki/sass/tokens/_colors.scss +139 -0
  338. package/docs/themes/tanuki/sass/tokens/_spacing.scss +100 -0
  339. package/docs/themes/tanuki/sass/tokens/_typography.scss +186 -0
  340. package/docs/themes/tanuki/screenshot.png +0 -0
  341. package/docs/themes/tanuki/sentinel.kdl +59 -0
  342. package/docs/themes/tanuki/static/elasticlunr.min.js +10 -0
  343. package/docs/themes/tanuki/static/fonts/GEIST-LICENSE.txt +92 -0
  344. package/docs/themes/tanuki/static/fonts/Geist-Variable.woff2 +0 -0
  345. package/docs/themes/tanuki/static/fonts/GeistMono-Variable.woff2 +0 -0
  346. package/docs/themes/tanuki/static/img/tanuki-icon.avif +0 -0
  347. package/docs/themes/tanuki/static/img/tanuki-icon.png +0 -0
  348. package/docs/themes/tanuki/static/js/anchors.js +18 -0
  349. package/docs/themes/tanuki/static/js/app.js +274 -0
  350. package/docs/themes/tanuki/static/js/code.js +394 -0
  351. package/docs/themes/tanuki/static/js/navigation.js +778 -0
  352. package/docs/themes/tanuki/static/js/scroll-to-top.js +33 -0
  353. package/docs/themes/tanuki/static/js/search-raskell.js +240 -0
  354. package/docs/themes/tanuki/static/js/search.js +215 -0
  355. package/docs/themes/tanuki/static/js/theme.js +169 -0
  356. package/docs/themes/tanuki/static/syntax-dark.css +151 -0
  357. package/docs/themes/tanuki/static/syntax-light.css +151 -0
  358. package/docs/themes/tanuki/static/wasm/sentinel_playground_wasm.js +486 -0
  359. package/docs/themes/tanuki/static/wasm/sentinel_playground_wasm_bg.wasm +0 -0
  360. package/docs/themes/tanuki/templates/404.html +52 -0
  361. package/docs/themes/tanuki/templates/base.html +428 -0
  362. package/docs/themes/tanuki/templates/blog.html +66 -0
  363. package/docs/themes/tanuki/templates/home.html +108 -0
  364. package/docs/themes/tanuki/templates/index.html +178 -0
  365. package/docs/themes/tanuki/templates/landing.html +168 -0
  366. package/docs/themes/tanuki/templates/macros/nav.html +128 -0
  367. package/docs/themes/tanuki/templates/macros/posts.html +101 -0
  368. package/docs/themes/tanuki/templates/macros/ui.html +159 -0
  369. package/docs/themes/tanuki/templates/page.html +135 -0
  370. package/docs/themes/tanuki/templates/partials/footer.html +38 -0
  371. package/docs/themes/tanuki/templates/partials/header.html +366 -0
  372. package/docs/themes/tanuki/templates/partials/nav-buttons.html +55 -0
  373. package/docs/themes/tanuki/templates/partials/nav-overlay.html +81 -0
  374. package/docs/themes/tanuki/templates/partials/page-toc-panel.html +43 -0
  375. package/docs/themes/tanuki/templates/partials/search.html +52 -0
  376. package/docs/themes/tanuki/templates/partials/sidebar.html +107 -0
  377. package/docs/themes/tanuki/templates/partials/theme-toggle.html +35 -0
  378. package/docs/themes/tanuki/templates/partials/toc-overlay.html +146 -0
  379. package/docs/themes/tanuki/templates/partials/version-picker.html +38 -0
  380. package/docs/themes/tanuki/templates/print.html +244 -0
  381. package/docs/themes/tanuki/templates/section.html +186 -0
  382. package/docs/themes/tanuki/templates/taxonomy_list.html +18 -0
  383. package/docs/themes/tanuki/templates/taxonomy_single.html +31 -0
  384. package/docs/themes/tanuki/theme.toml +58 -0
  385. package/examples/hello-agent.rs +55 -0
  386. package/package.json +36 -0
  387. package/proto/config.proto +60 -0
  388. package/proto/events.proto +0 -0
  389. package/proto/runtime.proto +215 -0
package/Cargo.lock ADDED
@@ -0,0 +1,3584 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "ahash"
48
+ version = "0.8.12"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
51
+ dependencies = [
52
+ "cfg-if",
53
+ "once_cell",
54
+ "version_check",
55
+ "zerocopy",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "aho-corasick"
60
+ version = "1.1.4"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
63
+ dependencies = [
64
+ "memchr",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "android_system_properties"
69
+ version = "0.1.5"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
72
+ dependencies = [
73
+ "libc",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anstream"
78
+ version = "0.6.21"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
81
+ dependencies = [
82
+ "anstyle",
83
+ "anstyle-parse",
84
+ "anstyle-query",
85
+ "anstyle-wincon",
86
+ "colorchoice",
87
+ "is_terminal_polyfill",
88
+ "utf8parse",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anstyle"
93
+ version = "1.0.13"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
96
+
97
+ [[package]]
98
+ name = "anstyle-parse"
99
+ version = "0.2.7"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
102
+ dependencies = [
103
+ "utf8parse",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "anstyle-query"
108
+ version = "1.1.5"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
111
+ dependencies = [
112
+ "windows-sys 0.61.2",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "anstyle-wincon"
117
+ version = "3.0.11"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
120
+ dependencies = [
121
+ "anstyle",
122
+ "once_cell_polyfill",
123
+ "windows-sys 0.61.2",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "anyhow"
128
+ version = "1.0.102"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
131
+
132
+ [[package]]
133
+ name = "async-stream"
134
+ version = "0.3.6"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
137
+ dependencies = [
138
+ "async-stream-impl",
139
+ "futures-core",
140
+ "pin-project-lite",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "async-stream-impl"
145
+ version = "0.3.6"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
148
+ dependencies = [
149
+ "proc-macro2",
150
+ "quote",
151
+ "syn",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "async-trait"
156
+ version = "0.1.89"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
159
+ dependencies = [
160
+ "proc-macro2",
161
+ "quote",
162
+ "syn",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "atomic-waker"
167
+ version = "1.1.2"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
170
+
171
+ [[package]]
172
+ name = "autocfg"
173
+ version = "1.5.0"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
176
+
177
+ [[package]]
178
+ name = "axum"
179
+ version = "0.7.9"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
182
+ dependencies = [
183
+ "async-trait",
184
+ "axum-core",
185
+ "bytes",
186
+ "futures-util",
187
+ "http",
188
+ "http-body",
189
+ "http-body-util",
190
+ "hyper",
191
+ "hyper-util",
192
+ "itoa",
193
+ "matchit",
194
+ "memchr",
195
+ "mime",
196
+ "percent-encoding",
197
+ "pin-project-lite",
198
+ "rustversion",
199
+ "serde",
200
+ "serde_json",
201
+ "serde_path_to_error",
202
+ "serde_urlencoded",
203
+ "sync_wrapper",
204
+ "tokio",
205
+ "tower 0.5.3",
206
+ "tower-layer",
207
+ "tower-service",
208
+ "tracing",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "axum-core"
213
+ version = "0.4.5"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
216
+ dependencies = [
217
+ "async-trait",
218
+ "bytes",
219
+ "futures-util",
220
+ "http",
221
+ "http-body",
222
+ "http-body-util",
223
+ "mime",
224
+ "pin-project-lite",
225
+ "rustversion",
226
+ "sync_wrapper",
227
+ "tower-layer",
228
+ "tower-service",
229
+ "tracing",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "base-encode"
234
+ version = "0.3.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "a17bd29f7c70f32e9387f4d4acfa5ea7b7749ef784fb78cf382df97069337b8c"
237
+
238
+ [[package]]
239
+ name = "base64"
240
+ version = "0.21.7"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
243
+
244
+ [[package]]
245
+ name = "base64"
246
+ version = "0.22.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
249
+
250
+ [[package]]
251
+ name = "bit-set"
252
+ version = "0.5.3"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
255
+ dependencies = [
256
+ "bit-vec",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "bit-vec"
261
+ version = "0.6.3"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
264
+
265
+ [[package]]
266
+ name = "bitflags"
267
+ version = "2.11.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
270
+
271
+ [[package]]
272
+ name = "block-buffer"
273
+ version = "0.10.4"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
276
+ dependencies = [
277
+ "generic-array",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "bstr"
282
+ version = "1.12.1"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
285
+ dependencies = [
286
+ "memchr",
287
+ "regex-automata",
288
+ "serde",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "bumpalo"
293
+ version = "3.20.2"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
296
+
297
+ [[package]]
298
+ name = "byteorder"
299
+ version = "1.5.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
302
+
303
+ [[package]]
304
+ name = "bytes"
305
+ version = "1.11.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
308
+
309
+ [[package]]
310
+ name = "cc"
311
+ version = "1.2.56"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
314
+ dependencies = [
315
+ "find-msvc-tools",
316
+ "shlex",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "cfg-if"
321
+ version = "1.0.4"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
324
+
325
+ [[package]]
326
+ name = "chrono"
327
+ version = "0.4.43"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
330
+ dependencies = [
331
+ "iana-time-zone",
332
+ "js-sys",
333
+ "num-traits",
334
+ "serde",
335
+ "wasm-bindgen",
336
+ "windows-link",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "chrono-tz"
341
+ version = "0.10.4"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
344
+ dependencies = [
345
+ "chrono",
346
+ "phf",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "cipher"
351
+ version = "0.4.4"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
354
+ dependencies = [
355
+ "crypto-common",
356
+ "inout",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "clap"
361
+ version = "4.5.60"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
364
+ dependencies = [
365
+ "clap_builder",
366
+ "clap_derive",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "clap_builder"
371
+ version = "4.5.60"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
374
+ dependencies = [
375
+ "anstream",
376
+ "anstyle",
377
+ "clap_lex",
378
+ "strsim",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "clap_complete"
383
+ version = "4.5.66"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "c757a3b7e39161a4e56f9365141ada2a6c915a8622c408ab6bb4b5d047371031"
386
+ dependencies = [
387
+ "clap",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "clap_derive"
392
+ version = "4.5.55"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
395
+ dependencies = [
396
+ "heck",
397
+ "proc-macro2",
398
+ "quote",
399
+ "syn",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "clap_lex"
404
+ version = "1.0.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
407
+
408
+ [[package]]
409
+ name = "colorchoice"
410
+ version = "1.0.4"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
413
+
414
+ [[package]]
415
+ name = "comfy-table"
416
+ version = "7.2.2"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
419
+ dependencies = [
420
+ "crossterm",
421
+ "unicode-segmentation",
422
+ "unicode-width",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "core-foundation"
427
+ version = "0.9.4"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
430
+ dependencies = [
431
+ "core-foundation-sys",
432
+ "libc",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "core-foundation"
437
+ version = "0.10.1"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
440
+ dependencies = [
441
+ "core-foundation-sys",
442
+ "libc",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "core-foundation-sys"
447
+ version = "0.8.7"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
450
+
451
+ [[package]]
452
+ name = "cpufeatures"
453
+ version = "0.2.17"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
456
+ dependencies = [
457
+ "libc",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "cron"
462
+ version = "0.15.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "5877d3fbf742507b66bc2a1945106bd30dd8504019d596901ddd012a4dd01740"
465
+ dependencies = [
466
+ "chrono",
467
+ "once_cell",
468
+ "winnow 0.6.26",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "crossterm"
473
+ version = "0.29.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
476
+ dependencies = [
477
+ "bitflags",
478
+ "crossterm_winapi",
479
+ "document-features",
480
+ "parking_lot",
481
+ "rustix",
482
+ "winapi",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "crossterm_winapi"
487
+ version = "0.9.1"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
490
+ dependencies = [
491
+ "winapi",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "crypto-common"
496
+ version = "0.1.7"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
499
+ dependencies = [
500
+ "generic-array",
501
+ "rand_core",
502
+ "typenum",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "ctr"
507
+ version = "0.9.2"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
510
+ dependencies = [
511
+ "cipher",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "deranged"
516
+ version = "0.5.6"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4"
519
+ dependencies = [
520
+ "powerfmt",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "digest"
525
+ version = "0.10.7"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
528
+ dependencies = [
529
+ "block-buffer",
530
+ "crypto-common",
531
+ "subtle",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "directories"
536
+ version = "5.0.1"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
539
+ dependencies = [
540
+ "dirs-sys",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "dirs"
545
+ version = "5.0.1"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
548
+ dependencies = [
549
+ "dirs-sys",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "dirs-sys"
554
+ version = "0.4.1"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
557
+ dependencies = [
558
+ "libc",
559
+ "option-ext",
560
+ "redox_users",
561
+ "windows-sys 0.48.0",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "displaydoc"
566
+ version = "0.2.5"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
569
+ dependencies = [
570
+ "proc-macro2",
571
+ "quote",
572
+ "syn",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "document-features"
577
+ version = "0.2.12"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
580
+ dependencies = [
581
+ "litrs",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "dotenv"
586
+ version = "0.15.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
589
+
590
+ [[package]]
591
+ name = "enact"
592
+ version = "0.0.1"
593
+ dependencies = [
594
+ "anyhow",
595
+ "async-trait",
596
+ "clap",
597
+ "clap_complete",
598
+ "comfy-table",
599
+ "dirs",
600
+ "enact-channels",
601
+ "enact-config",
602
+ "enact-core",
603
+ "enact-gateway",
604
+ "enact-memory",
605
+ "enact-providers",
606
+ "enact-runner",
607
+ "serde",
608
+ "serde_json",
609
+ "tempfile",
610
+ "tokio",
611
+ "tokio-util",
612
+ "toml",
613
+ "tracing",
614
+ "tracing-subscriber",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "enact-a2a"
619
+ version = "0.0.1"
620
+ dependencies = [
621
+ "anyhow",
622
+ "async-trait",
623
+ "chrono",
624
+ "enact-core",
625
+ "enact-providers",
626
+ "serde",
627
+ "serde_json",
628
+ "tempfile",
629
+ "tokio",
630
+ "tracing",
631
+ "uuid",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "enact-channels"
636
+ version = "0.0.1"
637
+ dependencies = [
638
+ "anyhow",
639
+ "async-trait",
640
+ "axum",
641
+ "chrono",
642
+ "directories",
643
+ "dirs",
644
+ "enact-config",
645
+ "enact-core",
646
+ "enact-runner",
647
+ "futures",
648
+ "hex",
649
+ "hmac",
650
+ "parking_lot",
651
+ "rand",
652
+ "regex",
653
+ "reqwest",
654
+ "serde",
655
+ "serde_json",
656
+ "sha2",
657
+ "tempfile",
658
+ "thiserror",
659
+ "tokio",
660
+ "toml",
661
+ "tower 0.4.13",
662
+ "tower-http 0.5.2",
663
+ "tracing",
664
+ "tracing-subscriber",
665
+ "uuid",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "enact-config"
670
+ version = "0.0.1"
671
+ dependencies = [
672
+ "aes-gcm",
673
+ "anyhow",
674
+ "chrono",
675
+ "dirs",
676
+ "dotenv",
677
+ "hex",
678
+ "rand",
679
+ "reqwest",
680
+ "serde",
681
+ "serde_json",
682
+ "tempfile",
683
+ "thiserror",
684
+ "tokio",
685
+ "toml",
686
+ "tracing",
687
+ "tracing-subscriber",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "enact-context"
692
+ version = "0.0.1"
693
+ dependencies = [
694
+ "anyhow",
695
+ "async-trait",
696
+ "chrono",
697
+ "enact-core",
698
+ "serde",
699
+ "serde_json",
700
+ "thiserror",
701
+ "tiktoken-rs",
702
+ "tokio",
703
+ "tracing",
704
+ "uuid",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "enact-core"
709
+ version = "0.0.1"
710
+ dependencies = [
711
+ "aes-gcm",
712
+ "anyhow",
713
+ "async-stream",
714
+ "async-trait",
715
+ "chrono",
716
+ "futures",
717
+ "hex",
718
+ "html-escape",
719
+ "miniz_oxide",
720
+ "rand",
721
+ "regex",
722
+ "reqwest",
723
+ "serde",
724
+ "serde_json",
725
+ "serde_yaml",
726
+ "sha2",
727
+ "svix-ksuid",
728
+ "tempfile",
729
+ "thiserror",
730
+ "tokio",
731
+ "tokio-util",
732
+ "tracing",
733
+ "urlencoding",
734
+ "uuid",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "enact-cron"
739
+ version = "0.0.1"
740
+ dependencies = [
741
+ "anyhow",
742
+ "async-trait",
743
+ "chrono",
744
+ "chrono-tz",
745
+ "cron",
746
+ "enact-core",
747
+ "futures-util",
748
+ "rusqlite",
749
+ "serde",
750
+ "serde_json",
751
+ "tempfile",
752
+ "tokio",
753
+ "tracing",
754
+ "uuid",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "enact"
759
+ version = "0.0.1"
760
+ dependencies = [
761
+ "enact-a2a",
762
+ "enact-channels",
763
+ "enact-config",
764
+ "enact-context",
765
+ "enact-core",
766
+ "enact-cron",
767
+ "enact-gateway",
768
+ "enact-mcp",
769
+ "enact-memory",
770
+ "enact-oauth",
771
+ "enact-observability",
772
+ "enact-providers",
773
+ "enact-runner",
774
+ "enact-skills",
775
+ "enact-tools",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "enact-gateway"
780
+ version = "0.0.1"
781
+ dependencies = [
782
+ "anyhow",
783
+ "async-trait",
784
+ "axum",
785
+ "enact-channels",
786
+ "enact-core",
787
+ "enact-runner",
788
+ "hex",
789
+ "hmac",
790
+ "serde",
791
+ "serde_json",
792
+ "sha2",
793
+ "tokio",
794
+ "tower 0.5.3",
795
+ "tower-http 0.5.2",
796
+ "tracing",
797
+ "tracing-subscriber",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "enact-mcp"
802
+ version = "0.0.1"
803
+ dependencies = [
804
+ "anyhow",
805
+ "async-trait",
806
+ "enact-core",
807
+ "serde",
808
+ "serde_json",
809
+ "tempfile",
810
+ "tokio",
811
+ "tokio-stream",
812
+ "tokio-util",
813
+ "tracing",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "enact-memory"
818
+ version = "0.0.1"
819
+ dependencies = [
820
+ "anyhow",
821
+ "async-trait",
822
+ "chrono",
823
+ "reqwest",
824
+ "rusqlite",
825
+ "serde",
826
+ "serde_json",
827
+ "tempfile",
828
+ "tokio",
829
+ "tracing",
830
+ "uuid",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "enact-oauth"
835
+ version = "0.0.1"
836
+ dependencies = [
837
+ "anyhow",
838
+ "async-trait",
839
+ "base64 0.22.1",
840
+ "chrono",
841
+ "dirs",
842
+ "rand",
843
+ "reqwest",
844
+ "serde",
845
+ "serde_json",
846
+ "sha2",
847
+ "tempfile",
848
+ "tokio",
849
+ "tracing",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "enact-observability"
854
+ version = "0.0.1"
855
+ dependencies = [
856
+ "anyhow",
857
+ "chrono",
858
+ "enact-core",
859
+ "serde",
860
+ "serde_json",
861
+ "tempfile",
862
+ "tracing",
863
+ "tracing-subscriber",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "enact-providers"
868
+ version = "0.0.1"
869
+ dependencies = [
870
+ "anyhow",
871
+ "async-trait",
872
+ "enact-core",
873
+ "reqwest",
874
+ "serde",
875
+ "serde_json",
876
+ "tokio",
877
+ "uuid",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "enact-runner"
882
+ version = "0.0.1"
883
+ dependencies = [
884
+ "anyhow",
885
+ "async-trait",
886
+ "enact-core",
887
+ "regex",
888
+ "serde",
889
+ "serde_json",
890
+ "tokio",
891
+ "tracing",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "enact-security"
896
+ version = "0.0.1"
897
+ dependencies = [
898
+ "anyhow",
899
+ "chrono",
900
+ "parking_lot",
901
+ "serde",
902
+ "serde_json",
903
+ "tempfile",
904
+ "tracing",
905
+ "uuid",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "enact-skills"
910
+ version = "0.0.1"
911
+ dependencies = [
912
+ "anyhow",
913
+ "async-trait",
914
+ "directories",
915
+ "enact-core",
916
+ "glob",
917
+ "serde",
918
+ "serde_json",
919
+ "tempfile",
920
+ "tokio",
921
+ "toml",
922
+ "tracing",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "enact-tools"
927
+ version = "0.0.1"
928
+ dependencies = [
929
+ "anyhow",
930
+ "async-trait",
931
+ "reqwest",
932
+ "serde",
933
+ "serde_json",
934
+ "tempfile",
935
+ "tokio",
936
+ "tracing",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "encoding_rs"
941
+ version = "0.8.35"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
944
+ dependencies = [
945
+ "cfg-if",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "equivalent"
950
+ version = "1.0.2"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
953
+
954
+ [[package]]
955
+ name = "errno"
956
+ version = "0.3.14"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
959
+ dependencies = [
960
+ "libc",
961
+ "windows-sys 0.61.2",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "fallible-iterator"
966
+ version = "0.3.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
969
+
970
+ [[package]]
971
+ name = "fallible-streaming-iterator"
972
+ version = "0.1.9"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
975
+
976
+ [[package]]
977
+ name = "fancy-regex"
978
+ version = "0.12.0"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "7493d4c459da9f84325ad297371a6b2b8a162800873a22e3b6b6512e61d18c05"
981
+ dependencies = [
982
+ "bit-set",
983
+ "regex",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "fastrand"
988
+ version = "2.3.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
991
+
992
+ [[package]]
993
+ name = "find-msvc-tools"
994
+ version = "0.1.9"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
997
+
998
+ [[package]]
999
+ name = "fnv"
1000
+ version = "1.0.7"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1003
+
1004
+ [[package]]
1005
+ name = "foldhash"
1006
+ version = "0.1.5"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1009
+
1010
+ [[package]]
1011
+ name = "foreign-types"
1012
+ version = "0.3.2"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1015
+ dependencies = [
1016
+ "foreign-types-shared",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "foreign-types-shared"
1021
+ version = "0.1.1"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1024
+
1025
+ [[package]]
1026
+ name = "form_urlencoded"
1027
+ version = "1.2.2"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1030
+ dependencies = [
1031
+ "percent-encoding",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "futures"
1036
+ version = "0.3.32"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1039
+ dependencies = [
1040
+ "futures-channel",
1041
+ "futures-core",
1042
+ "futures-executor",
1043
+ "futures-io",
1044
+ "futures-sink",
1045
+ "futures-task",
1046
+ "futures-util",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "futures-channel"
1051
+ version = "0.3.32"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1054
+ dependencies = [
1055
+ "futures-core",
1056
+ "futures-sink",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "futures-core"
1061
+ version = "0.3.32"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1064
+
1065
+ [[package]]
1066
+ name = "futures-executor"
1067
+ version = "0.3.32"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1070
+ dependencies = [
1071
+ "futures-core",
1072
+ "futures-task",
1073
+ "futures-util",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "futures-io"
1078
+ version = "0.3.32"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1081
+
1082
+ [[package]]
1083
+ name = "futures-macro"
1084
+ version = "0.3.32"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1087
+ dependencies = [
1088
+ "proc-macro2",
1089
+ "quote",
1090
+ "syn",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "futures-sink"
1095
+ version = "0.3.32"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1098
+
1099
+ [[package]]
1100
+ name = "futures-task"
1101
+ version = "0.3.32"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1104
+
1105
+ [[package]]
1106
+ name = "futures-util"
1107
+ version = "0.3.32"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1110
+ dependencies = [
1111
+ "futures-channel",
1112
+ "futures-core",
1113
+ "futures-io",
1114
+ "futures-macro",
1115
+ "futures-sink",
1116
+ "futures-task",
1117
+ "memchr",
1118
+ "pin-project-lite",
1119
+ "slab",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "generic-array"
1124
+ version = "0.14.7"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1127
+ dependencies = [
1128
+ "typenum",
1129
+ "version_check",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "getrandom"
1134
+ version = "0.2.17"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1137
+ dependencies = [
1138
+ "cfg-if",
1139
+ "libc",
1140
+ "wasi",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "getrandom"
1145
+ version = "0.4.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
1148
+ dependencies = [
1149
+ "cfg-if",
1150
+ "libc",
1151
+ "r-efi",
1152
+ "wasip2",
1153
+ "wasip3",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "ghash"
1158
+ version = "0.5.1"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1161
+ dependencies = [
1162
+ "opaque-debug",
1163
+ "polyval",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "glob"
1168
+ version = "0.3.3"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1171
+
1172
+ [[package]]
1173
+ name = "h2"
1174
+ version = "0.4.13"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1177
+ dependencies = [
1178
+ "atomic-waker",
1179
+ "bytes",
1180
+ "fnv",
1181
+ "futures-core",
1182
+ "futures-sink",
1183
+ "http",
1184
+ "indexmap",
1185
+ "slab",
1186
+ "tokio",
1187
+ "tokio-util",
1188
+ "tracing",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "hashbrown"
1193
+ version = "0.14.5"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1196
+ dependencies = [
1197
+ "ahash",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "hashbrown"
1202
+ version = "0.15.5"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1205
+ dependencies = [
1206
+ "foldhash",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "hashbrown"
1211
+ version = "0.16.1"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1214
+
1215
+ [[package]]
1216
+ name = "hashlink"
1217
+ version = "0.9.1"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1220
+ dependencies = [
1221
+ "hashbrown 0.14.5",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "heck"
1226
+ version = "0.5.0"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1229
+
1230
+ [[package]]
1231
+ name = "hex"
1232
+ version = "0.4.3"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1235
+
1236
+ [[package]]
1237
+ name = "hmac"
1238
+ version = "0.12.1"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1241
+ dependencies = [
1242
+ "digest",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "html-escape"
1247
+ version = "0.2.13"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
1250
+ dependencies = [
1251
+ "utf8-width",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "http"
1256
+ version = "1.4.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1259
+ dependencies = [
1260
+ "bytes",
1261
+ "itoa",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "http-body"
1266
+ version = "1.0.1"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1269
+ dependencies = [
1270
+ "bytes",
1271
+ "http",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "http-body-util"
1276
+ version = "0.1.3"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1279
+ dependencies = [
1280
+ "bytes",
1281
+ "futures-core",
1282
+ "http",
1283
+ "http-body",
1284
+ "pin-project-lite",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "httparse"
1289
+ version = "1.10.1"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1292
+
1293
+ [[package]]
1294
+ name = "httpdate"
1295
+ version = "1.0.3"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1298
+
1299
+ [[package]]
1300
+ name = "hyper"
1301
+ version = "1.8.1"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1304
+ dependencies = [
1305
+ "atomic-waker",
1306
+ "bytes",
1307
+ "futures-channel",
1308
+ "futures-core",
1309
+ "h2",
1310
+ "http",
1311
+ "http-body",
1312
+ "httparse",
1313
+ "httpdate",
1314
+ "itoa",
1315
+ "pin-project-lite",
1316
+ "pin-utils",
1317
+ "smallvec",
1318
+ "tokio",
1319
+ "want",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "hyper-rustls"
1324
+ version = "0.27.7"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1327
+ dependencies = [
1328
+ "http",
1329
+ "hyper",
1330
+ "hyper-util",
1331
+ "rustls",
1332
+ "rustls-pki-types",
1333
+ "tokio",
1334
+ "tokio-rustls",
1335
+ "tower-service",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "hyper-tls"
1340
+ version = "0.6.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1343
+ dependencies = [
1344
+ "bytes",
1345
+ "http-body-util",
1346
+ "hyper",
1347
+ "hyper-util",
1348
+ "native-tls",
1349
+ "tokio",
1350
+ "tokio-native-tls",
1351
+ "tower-service",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "hyper-util"
1356
+ version = "0.1.20"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1359
+ dependencies = [
1360
+ "base64 0.22.1",
1361
+ "bytes",
1362
+ "futures-channel",
1363
+ "futures-util",
1364
+ "http",
1365
+ "http-body",
1366
+ "hyper",
1367
+ "ipnet",
1368
+ "libc",
1369
+ "percent-encoding",
1370
+ "pin-project-lite",
1371
+ "socket2",
1372
+ "system-configuration",
1373
+ "tokio",
1374
+ "tower-service",
1375
+ "tracing",
1376
+ "windows-registry",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "iana-time-zone"
1381
+ version = "0.1.65"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1384
+ dependencies = [
1385
+ "android_system_properties",
1386
+ "core-foundation-sys",
1387
+ "iana-time-zone-haiku",
1388
+ "js-sys",
1389
+ "log",
1390
+ "wasm-bindgen",
1391
+ "windows-core",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "iana-time-zone-haiku"
1396
+ version = "0.1.2"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1399
+ dependencies = [
1400
+ "cc",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "icu_collections"
1405
+ version = "2.1.1"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1408
+ dependencies = [
1409
+ "displaydoc",
1410
+ "potential_utf",
1411
+ "yoke",
1412
+ "zerofrom",
1413
+ "zerovec",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "icu_locale_core"
1418
+ version = "2.1.1"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1421
+ dependencies = [
1422
+ "displaydoc",
1423
+ "litemap",
1424
+ "tinystr",
1425
+ "writeable",
1426
+ "zerovec",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "icu_normalizer"
1431
+ version = "2.1.1"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1434
+ dependencies = [
1435
+ "icu_collections",
1436
+ "icu_normalizer_data",
1437
+ "icu_properties",
1438
+ "icu_provider",
1439
+ "smallvec",
1440
+ "zerovec",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "icu_normalizer_data"
1445
+ version = "2.1.1"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1448
+
1449
+ [[package]]
1450
+ name = "icu_properties"
1451
+ version = "2.1.2"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1454
+ dependencies = [
1455
+ "icu_collections",
1456
+ "icu_locale_core",
1457
+ "icu_properties_data",
1458
+ "icu_provider",
1459
+ "zerotrie",
1460
+ "zerovec",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "icu_properties_data"
1465
+ version = "2.1.2"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1468
+
1469
+ [[package]]
1470
+ name = "icu_provider"
1471
+ version = "2.1.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1474
+ dependencies = [
1475
+ "displaydoc",
1476
+ "icu_locale_core",
1477
+ "writeable",
1478
+ "yoke",
1479
+ "zerofrom",
1480
+ "zerotrie",
1481
+ "zerovec",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "id-arena"
1486
+ version = "2.3.0"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1489
+
1490
+ [[package]]
1491
+ name = "idna"
1492
+ version = "1.1.0"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1495
+ dependencies = [
1496
+ "idna_adapter",
1497
+ "smallvec",
1498
+ "utf8_iter",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "idna_adapter"
1503
+ version = "1.2.1"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1506
+ dependencies = [
1507
+ "icu_normalizer",
1508
+ "icu_properties",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "indexmap"
1513
+ version = "2.13.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1516
+ dependencies = [
1517
+ "equivalent",
1518
+ "hashbrown 0.16.1",
1519
+ "serde",
1520
+ "serde_core",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "inout"
1525
+ version = "0.1.4"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1528
+ dependencies = [
1529
+ "generic-array",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "ipnet"
1534
+ version = "2.11.0"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1537
+
1538
+ [[package]]
1539
+ name = "iri-string"
1540
+ version = "0.7.10"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1543
+ dependencies = [
1544
+ "memchr",
1545
+ "serde",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "is_terminal_polyfill"
1550
+ version = "1.70.2"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1553
+
1554
+ [[package]]
1555
+ name = "itoa"
1556
+ version = "1.0.17"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1559
+
1560
+ [[package]]
1561
+ name = "js-sys"
1562
+ version = "0.3.85"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1565
+ dependencies = [
1566
+ "once_cell",
1567
+ "wasm-bindgen",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "lazy_static"
1572
+ version = "1.5.0"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1575
+
1576
+ [[package]]
1577
+ name = "leb128fmt"
1578
+ version = "0.1.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1581
+
1582
+ [[package]]
1583
+ name = "libc"
1584
+ version = "0.2.182"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1587
+
1588
+ [[package]]
1589
+ name = "libredox"
1590
+ version = "0.1.12"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1593
+ dependencies = [
1594
+ "bitflags",
1595
+ "libc",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "libsqlite3-sys"
1600
+ version = "0.30.1"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1603
+ dependencies = [
1604
+ "cc",
1605
+ "pkg-config",
1606
+ "vcpkg",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "linux-raw-sys"
1611
+ version = "0.11.0"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1614
+
1615
+ [[package]]
1616
+ name = "litemap"
1617
+ version = "0.8.1"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1620
+
1621
+ [[package]]
1622
+ name = "litrs"
1623
+ version = "1.0.0"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1626
+
1627
+ [[package]]
1628
+ name = "lock_api"
1629
+ version = "0.4.14"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1632
+ dependencies = [
1633
+ "scopeguard",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "log"
1638
+ version = "0.4.29"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1641
+
1642
+ [[package]]
1643
+ name = "matchers"
1644
+ version = "0.2.0"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1647
+ dependencies = [
1648
+ "regex-automata",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "matchit"
1653
+ version = "0.7.3"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1656
+
1657
+ [[package]]
1658
+ name = "memchr"
1659
+ version = "2.8.0"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1662
+
1663
+ [[package]]
1664
+ name = "mime"
1665
+ version = "0.3.17"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1668
+
1669
+ [[package]]
1670
+ name = "mime_guess"
1671
+ version = "2.0.5"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1674
+ dependencies = [
1675
+ "mime",
1676
+ "unicase",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "miniz_oxide"
1681
+ version = "0.8.9"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1684
+ dependencies = [
1685
+ "adler2",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "mio"
1690
+ version = "1.1.1"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1693
+ dependencies = [
1694
+ "libc",
1695
+ "wasi",
1696
+ "windows-sys 0.61.2",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "native-tls"
1701
+ version = "0.2.18"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1704
+ dependencies = [
1705
+ "libc",
1706
+ "log",
1707
+ "openssl",
1708
+ "openssl-probe",
1709
+ "openssl-sys",
1710
+ "schannel",
1711
+ "security-framework",
1712
+ "security-framework-sys",
1713
+ "tempfile",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "nu-ansi-term"
1718
+ version = "0.50.3"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1721
+ dependencies = [
1722
+ "windows-sys 0.61.2",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "num-conv"
1727
+ version = "0.2.0"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1730
+
1731
+ [[package]]
1732
+ name = "num-traits"
1733
+ version = "0.2.19"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1736
+ dependencies = [
1737
+ "autocfg",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "once_cell"
1742
+ version = "1.21.3"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1745
+
1746
+ [[package]]
1747
+ name = "once_cell_polyfill"
1748
+ version = "1.70.2"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1751
+
1752
+ [[package]]
1753
+ name = "opaque-debug"
1754
+ version = "0.3.1"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1757
+
1758
+ [[package]]
1759
+ name = "openssl"
1760
+ version = "0.10.75"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1763
+ dependencies = [
1764
+ "bitflags",
1765
+ "cfg-if",
1766
+ "foreign-types",
1767
+ "libc",
1768
+ "once_cell",
1769
+ "openssl-macros",
1770
+ "openssl-sys",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "openssl-macros"
1775
+ version = "0.1.1"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1778
+ dependencies = [
1779
+ "proc-macro2",
1780
+ "quote",
1781
+ "syn",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "openssl-probe"
1786
+ version = "0.2.1"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1789
+
1790
+ [[package]]
1791
+ name = "openssl-sys"
1792
+ version = "0.9.111"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1795
+ dependencies = [
1796
+ "cc",
1797
+ "libc",
1798
+ "pkg-config",
1799
+ "vcpkg",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "option-ext"
1804
+ version = "0.2.0"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1807
+
1808
+ [[package]]
1809
+ name = "parking_lot"
1810
+ version = "0.12.5"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1813
+ dependencies = [
1814
+ "lock_api",
1815
+ "parking_lot_core",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "parking_lot_core"
1820
+ version = "0.9.12"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1823
+ dependencies = [
1824
+ "cfg-if",
1825
+ "libc",
1826
+ "redox_syscall",
1827
+ "smallvec",
1828
+ "windows-link",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "percent-encoding"
1833
+ version = "2.3.2"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1836
+
1837
+ [[package]]
1838
+ name = "phf"
1839
+ version = "0.12.1"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1842
+ dependencies = [
1843
+ "phf_shared",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "phf_shared"
1848
+ version = "0.12.1"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1851
+ dependencies = [
1852
+ "siphasher",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "pin-project-lite"
1857
+ version = "0.2.16"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1860
+
1861
+ [[package]]
1862
+ name = "pin-utils"
1863
+ version = "0.1.0"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1866
+
1867
+ [[package]]
1868
+ name = "pkg-config"
1869
+ version = "0.3.32"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1872
+
1873
+ [[package]]
1874
+ name = "polyval"
1875
+ version = "0.6.2"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1878
+ dependencies = [
1879
+ "cfg-if",
1880
+ "cpufeatures",
1881
+ "opaque-debug",
1882
+ "universal-hash",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "potential_utf"
1887
+ version = "0.1.4"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1890
+ dependencies = [
1891
+ "zerovec",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "powerfmt"
1896
+ version = "0.2.0"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1899
+
1900
+ [[package]]
1901
+ name = "ppv-lite86"
1902
+ version = "0.2.21"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1905
+ dependencies = [
1906
+ "zerocopy",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "prettyplease"
1911
+ version = "0.2.37"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1914
+ dependencies = [
1915
+ "proc-macro2",
1916
+ "syn",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "proc-macro2"
1921
+ version = "1.0.106"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1924
+ dependencies = [
1925
+ "unicode-ident",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "quote"
1930
+ version = "1.0.44"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1933
+ dependencies = [
1934
+ "proc-macro2",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "r-efi"
1939
+ version = "5.3.0"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1942
+
1943
+ [[package]]
1944
+ name = "rand"
1945
+ version = "0.8.5"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1948
+ dependencies = [
1949
+ "libc",
1950
+ "rand_chacha",
1951
+ "rand_core",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "rand_chacha"
1956
+ version = "0.3.1"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1959
+ dependencies = [
1960
+ "ppv-lite86",
1961
+ "rand_core",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "rand_core"
1966
+ version = "0.6.4"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1969
+ dependencies = [
1970
+ "getrandom 0.2.17",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "redox_syscall"
1975
+ version = "0.5.18"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1978
+ dependencies = [
1979
+ "bitflags",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "redox_users"
1984
+ version = "0.4.6"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1987
+ dependencies = [
1988
+ "getrandom 0.2.17",
1989
+ "libredox",
1990
+ "thiserror",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "regex"
1995
+ version = "1.12.3"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1998
+ dependencies = [
1999
+ "aho-corasick",
2000
+ "memchr",
2001
+ "regex-automata",
2002
+ "regex-syntax",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "regex-automata"
2007
+ version = "0.4.14"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2010
+ dependencies = [
2011
+ "aho-corasick",
2012
+ "memchr",
2013
+ "regex-syntax",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "regex-syntax"
2018
+ version = "0.8.9"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
2021
+
2022
+ [[package]]
2023
+ name = "reqwest"
2024
+ version = "0.12.28"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2027
+ dependencies = [
2028
+ "base64 0.22.1",
2029
+ "bytes",
2030
+ "encoding_rs",
2031
+ "futures-core",
2032
+ "futures-util",
2033
+ "h2",
2034
+ "http",
2035
+ "http-body",
2036
+ "http-body-util",
2037
+ "hyper",
2038
+ "hyper-rustls",
2039
+ "hyper-tls",
2040
+ "hyper-util",
2041
+ "js-sys",
2042
+ "log",
2043
+ "mime",
2044
+ "mime_guess",
2045
+ "native-tls",
2046
+ "percent-encoding",
2047
+ "pin-project-lite",
2048
+ "rustls-pki-types",
2049
+ "serde",
2050
+ "serde_json",
2051
+ "serde_urlencoded",
2052
+ "sync_wrapper",
2053
+ "tokio",
2054
+ "tokio-native-tls",
2055
+ "tokio-util",
2056
+ "tower 0.5.3",
2057
+ "tower-http 0.6.8",
2058
+ "tower-service",
2059
+ "url",
2060
+ "wasm-bindgen",
2061
+ "wasm-bindgen-futures",
2062
+ "wasm-streams",
2063
+ "web-sys",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "ring"
2068
+ version = "0.17.14"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2071
+ dependencies = [
2072
+ "cc",
2073
+ "cfg-if",
2074
+ "getrandom 0.2.17",
2075
+ "libc",
2076
+ "untrusted",
2077
+ "windows-sys 0.52.0",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "rusqlite"
2082
+ version = "0.32.1"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
2085
+ dependencies = [
2086
+ "bitflags",
2087
+ "fallible-iterator",
2088
+ "fallible-streaming-iterator",
2089
+ "hashlink",
2090
+ "libsqlite3-sys",
2091
+ "smallvec",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "rustc-hash"
2096
+ version = "1.1.0"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2099
+
2100
+ [[package]]
2101
+ name = "rustix"
2102
+ version = "1.1.3"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2105
+ dependencies = [
2106
+ "bitflags",
2107
+ "errno",
2108
+ "libc",
2109
+ "linux-raw-sys",
2110
+ "windows-sys 0.61.2",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "rustls"
2115
+ version = "0.23.36"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
2118
+ dependencies = [
2119
+ "once_cell",
2120
+ "rustls-pki-types",
2121
+ "rustls-webpki",
2122
+ "subtle",
2123
+ "zeroize",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "rustls-pki-types"
2128
+ version = "1.14.0"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2131
+ dependencies = [
2132
+ "zeroize",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "rustls-webpki"
2137
+ version = "0.103.9"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2140
+ dependencies = [
2141
+ "ring",
2142
+ "rustls-pki-types",
2143
+ "untrusted",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "rustversion"
2148
+ version = "1.0.22"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2151
+
2152
+ [[package]]
2153
+ name = "ryu"
2154
+ version = "1.0.23"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2157
+
2158
+ [[package]]
2159
+ name = "schannel"
2160
+ version = "0.1.28"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2163
+ dependencies = [
2164
+ "windows-sys 0.61.2",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "scopeguard"
2169
+ version = "1.2.0"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2172
+
2173
+ [[package]]
2174
+ name = "security-framework"
2175
+ version = "3.7.0"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2178
+ dependencies = [
2179
+ "bitflags",
2180
+ "core-foundation 0.10.1",
2181
+ "core-foundation-sys",
2182
+ "libc",
2183
+ "security-framework-sys",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "security-framework-sys"
2188
+ version = "2.17.0"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2191
+ dependencies = [
2192
+ "core-foundation-sys",
2193
+ "libc",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "semver"
2198
+ version = "1.0.27"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2201
+
2202
+ [[package]]
2203
+ name = "serde"
2204
+ version = "1.0.228"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2207
+ dependencies = [
2208
+ "serde_core",
2209
+ "serde_derive",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "serde_core"
2214
+ version = "1.0.228"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2217
+ dependencies = [
2218
+ "serde_derive",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "serde_derive"
2223
+ version = "1.0.228"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2226
+ dependencies = [
2227
+ "proc-macro2",
2228
+ "quote",
2229
+ "syn",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "serde_json"
2234
+ version = "1.0.149"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2237
+ dependencies = [
2238
+ "itoa",
2239
+ "memchr",
2240
+ "serde",
2241
+ "serde_core",
2242
+ "zmij",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "serde_path_to_error"
2247
+ version = "0.1.20"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2250
+ dependencies = [
2251
+ "itoa",
2252
+ "serde",
2253
+ "serde_core",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "serde_spanned"
2258
+ version = "0.6.9"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2261
+ dependencies = [
2262
+ "serde",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "serde_urlencoded"
2267
+ version = "0.7.1"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2270
+ dependencies = [
2271
+ "form_urlencoded",
2272
+ "itoa",
2273
+ "ryu",
2274
+ "serde",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "serde_yaml"
2279
+ version = "0.9.34+deprecated"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2282
+ dependencies = [
2283
+ "indexmap",
2284
+ "itoa",
2285
+ "ryu",
2286
+ "serde",
2287
+ "unsafe-libyaml",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "sha2"
2292
+ version = "0.10.9"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2295
+ dependencies = [
2296
+ "cfg-if",
2297
+ "cpufeatures",
2298
+ "digest",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "sharded-slab"
2303
+ version = "0.1.7"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2306
+ dependencies = [
2307
+ "lazy_static",
2308
+ ]
2309
+
2310
+ [[package]]
2311
+ name = "shlex"
2312
+ version = "1.3.0"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2315
+
2316
+ [[package]]
2317
+ name = "signal-hook-registry"
2318
+ version = "1.4.8"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2321
+ dependencies = [
2322
+ "errno",
2323
+ "libc",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "siphasher"
2328
+ version = "1.0.2"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2331
+
2332
+ [[package]]
2333
+ name = "slab"
2334
+ version = "0.4.12"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2337
+
2338
+ [[package]]
2339
+ name = "smallvec"
2340
+ version = "1.15.1"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2343
+
2344
+ [[package]]
2345
+ name = "socket2"
2346
+ version = "0.6.2"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2349
+ dependencies = [
2350
+ "libc",
2351
+ "windows-sys 0.60.2",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "stable_deref_trait"
2356
+ version = "1.2.1"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2359
+
2360
+ [[package]]
2361
+ name = "strsim"
2362
+ version = "0.11.1"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2365
+
2366
+ [[package]]
2367
+ name = "subtle"
2368
+ version = "2.6.1"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2371
+
2372
+ [[package]]
2373
+ name = "svix-ksuid"
2374
+ version = "0.7.0"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "75d773122e48817eb6eb74605cf799574a855bf4c7eb0c1bb06c005067123b13"
2377
+ dependencies = [
2378
+ "base-encode",
2379
+ "byteorder",
2380
+ "getrandom 0.2.17",
2381
+ "time",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "syn"
2386
+ version = "2.0.117"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2389
+ dependencies = [
2390
+ "proc-macro2",
2391
+ "quote",
2392
+ "unicode-ident",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "sync_wrapper"
2397
+ version = "1.0.2"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2400
+ dependencies = [
2401
+ "futures-core",
2402
+ ]
2403
+
2404
+ [[package]]
2405
+ name = "synstructure"
2406
+ version = "0.13.2"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2409
+ dependencies = [
2410
+ "proc-macro2",
2411
+ "quote",
2412
+ "syn",
2413
+ ]
2414
+
2415
+ [[package]]
2416
+ name = "system-configuration"
2417
+ version = "0.7.0"
2418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2419
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2420
+ dependencies = [
2421
+ "bitflags",
2422
+ "core-foundation 0.9.4",
2423
+ "system-configuration-sys",
2424
+ ]
2425
+
2426
+ [[package]]
2427
+ name = "system-configuration-sys"
2428
+ version = "0.6.0"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2431
+ dependencies = [
2432
+ "core-foundation-sys",
2433
+ "libc",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "tempfile"
2438
+ version = "3.25.0"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
2441
+ dependencies = [
2442
+ "fastrand",
2443
+ "getrandom 0.4.1",
2444
+ "once_cell",
2445
+ "rustix",
2446
+ "windows-sys 0.61.2",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "thiserror"
2451
+ version = "1.0.69"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2454
+ dependencies = [
2455
+ "thiserror-impl",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "thiserror-impl"
2460
+ version = "1.0.69"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2463
+ dependencies = [
2464
+ "proc-macro2",
2465
+ "quote",
2466
+ "syn",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "thread_local"
2471
+ version = "1.1.9"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2474
+ dependencies = [
2475
+ "cfg-if",
2476
+ ]
2477
+
2478
+ [[package]]
2479
+ name = "tiktoken-rs"
2480
+ version = "0.5.9"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "c314e7ce51440f9e8f5a497394682a57b7c323d0f4d0a6b1b13c429056e0e234"
2483
+ dependencies = [
2484
+ "anyhow",
2485
+ "base64 0.21.7",
2486
+ "bstr",
2487
+ "fancy-regex",
2488
+ "lazy_static",
2489
+ "parking_lot",
2490
+ "rustc-hash",
2491
+ ]
2492
+
2493
+ [[package]]
2494
+ name = "time"
2495
+ version = "0.3.47"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2498
+ dependencies = [
2499
+ "deranged",
2500
+ "num-conv",
2501
+ "powerfmt",
2502
+ "serde_core",
2503
+ "time-core",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "time-core"
2508
+ version = "0.1.8"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2511
+
2512
+ [[package]]
2513
+ name = "tinystr"
2514
+ version = "0.8.2"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2517
+ dependencies = [
2518
+ "displaydoc",
2519
+ "zerovec",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "tokio"
2524
+ version = "1.49.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2527
+ dependencies = [
2528
+ "bytes",
2529
+ "libc",
2530
+ "mio",
2531
+ "parking_lot",
2532
+ "pin-project-lite",
2533
+ "signal-hook-registry",
2534
+ "socket2",
2535
+ "tokio-macros",
2536
+ "windows-sys 0.61.2",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "tokio-macros"
2541
+ version = "2.6.0"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2544
+ dependencies = [
2545
+ "proc-macro2",
2546
+ "quote",
2547
+ "syn",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "tokio-native-tls"
2552
+ version = "0.3.1"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2555
+ dependencies = [
2556
+ "native-tls",
2557
+ "tokio",
2558
+ ]
2559
+
2560
+ [[package]]
2561
+ name = "tokio-rustls"
2562
+ version = "0.26.4"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2565
+ dependencies = [
2566
+ "rustls",
2567
+ "tokio",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "tokio-stream"
2572
+ version = "0.1.18"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2575
+ dependencies = [
2576
+ "futures-core",
2577
+ "pin-project-lite",
2578
+ "tokio",
2579
+ ]
2580
+
2581
+ [[package]]
2582
+ name = "tokio-util"
2583
+ version = "0.7.18"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2586
+ dependencies = [
2587
+ "bytes",
2588
+ "futures-core",
2589
+ "futures-sink",
2590
+ "pin-project-lite",
2591
+ "tokio",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "toml"
2596
+ version = "0.8.23"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2599
+ dependencies = [
2600
+ "serde",
2601
+ "serde_spanned",
2602
+ "toml_datetime",
2603
+ "toml_edit",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "toml_datetime"
2608
+ version = "0.6.11"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2611
+ dependencies = [
2612
+ "serde",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "toml_edit"
2617
+ version = "0.22.27"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2620
+ dependencies = [
2621
+ "indexmap",
2622
+ "serde",
2623
+ "serde_spanned",
2624
+ "toml_datetime",
2625
+ "toml_write",
2626
+ "winnow 0.7.14",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "toml_write"
2631
+ version = "0.1.2"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2634
+
2635
+ [[package]]
2636
+ name = "tower"
2637
+ version = "0.4.13"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2640
+ dependencies = [
2641
+ "tower-layer",
2642
+ "tower-service",
2643
+ "tracing",
2644
+ ]
2645
+
2646
+ [[package]]
2647
+ name = "tower"
2648
+ version = "0.5.3"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2651
+ dependencies = [
2652
+ "futures-core",
2653
+ "futures-util",
2654
+ "pin-project-lite",
2655
+ "sync_wrapper",
2656
+ "tokio",
2657
+ "tower-layer",
2658
+ "tower-service",
2659
+ "tracing",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "tower-http"
2664
+ version = "0.5.2"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
2667
+ dependencies = [
2668
+ "bitflags",
2669
+ "bytes",
2670
+ "http",
2671
+ "http-body",
2672
+ "http-body-util",
2673
+ "pin-project-lite",
2674
+ "tokio",
2675
+ "tower-layer",
2676
+ "tower-service",
2677
+ "tracing",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "tower-http"
2682
+ version = "0.6.8"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2685
+ dependencies = [
2686
+ "bitflags",
2687
+ "bytes",
2688
+ "futures-util",
2689
+ "http",
2690
+ "http-body",
2691
+ "iri-string",
2692
+ "pin-project-lite",
2693
+ "tower 0.5.3",
2694
+ "tower-layer",
2695
+ "tower-service",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "tower-layer"
2700
+ version = "0.3.3"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2703
+
2704
+ [[package]]
2705
+ name = "tower-service"
2706
+ version = "0.3.3"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2709
+
2710
+ [[package]]
2711
+ name = "tracing"
2712
+ version = "0.1.44"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2715
+ dependencies = [
2716
+ "log",
2717
+ "pin-project-lite",
2718
+ "tracing-attributes",
2719
+ "tracing-core",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "tracing-attributes"
2724
+ version = "0.1.31"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2727
+ dependencies = [
2728
+ "proc-macro2",
2729
+ "quote",
2730
+ "syn",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "tracing-core"
2735
+ version = "0.1.36"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2738
+ dependencies = [
2739
+ "once_cell",
2740
+ "valuable",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "tracing-log"
2745
+ version = "0.2.0"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2748
+ dependencies = [
2749
+ "log",
2750
+ "once_cell",
2751
+ "tracing-core",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "tracing-subscriber"
2756
+ version = "0.3.22"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2759
+ dependencies = [
2760
+ "matchers",
2761
+ "nu-ansi-term",
2762
+ "once_cell",
2763
+ "regex-automata",
2764
+ "sharded-slab",
2765
+ "smallvec",
2766
+ "thread_local",
2767
+ "tracing",
2768
+ "tracing-core",
2769
+ "tracing-log",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "try-lock"
2774
+ version = "0.2.5"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2777
+
2778
+ [[package]]
2779
+ name = "typenum"
2780
+ version = "1.19.0"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2783
+
2784
+ [[package]]
2785
+ name = "unicase"
2786
+ version = "2.9.0"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2789
+
2790
+ [[package]]
2791
+ name = "unicode-ident"
2792
+ version = "1.0.24"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2795
+
2796
+ [[package]]
2797
+ name = "unicode-segmentation"
2798
+ version = "1.12.0"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2801
+
2802
+ [[package]]
2803
+ name = "unicode-width"
2804
+ version = "0.2.2"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2807
+
2808
+ [[package]]
2809
+ name = "unicode-xid"
2810
+ version = "0.2.6"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2813
+
2814
+ [[package]]
2815
+ name = "universal-hash"
2816
+ version = "0.5.1"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2819
+ dependencies = [
2820
+ "crypto-common",
2821
+ "subtle",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "unsafe-libyaml"
2826
+ version = "0.2.11"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2829
+
2830
+ [[package]]
2831
+ name = "untrusted"
2832
+ version = "0.9.0"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2835
+
2836
+ [[package]]
2837
+ name = "url"
2838
+ version = "2.5.8"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2841
+ dependencies = [
2842
+ "form_urlencoded",
2843
+ "idna",
2844
+ "percent-encoding",
2845
+ "serde",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "urlencoding"
2850
+ version = "2.1.3"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2853
+
2854
+ [[package]]
2855
+ name = "utf8-width"
2856
+ version = "0.1.8"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
2859
+
2860
+ [[package]]
2861
+ name = "utf8_iter"
2862
+ version = "1.0.4"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2865
+
2866
+ [[package]]
2867
+ name = "utf8parse"
2868
+ version = "0.2.2"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2871
+
2872
+ [[package]]
2873
+ name = "uuid"
2874
+ version = "1.21.0"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
2877
+ dependencies = [
2878
+ "getrandom 0.4.1",
2879
+ "js-sys",
2880
+ "serde_core",
2881
+ "wasm-bindgen",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "valuable"
2886
+ version = "0.1.1"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2889
+
2890
+ [[package]]
2891
+ name = "vcpkg"
2892
+ version = "0.2.15"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2895
+
2896
+ [[package]]
2897
+ name = "version_check"
2898
+ version = "0.9.5"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2901
+
2902
+ [[package]]
2903
+ name = "want"
2904
+ version = "0.3.1"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2907
+ dependencies = [
2908
+ "try-lock",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "wasi"
2913
+ version = "0.11.1+wasi-snapshot-preview1"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2916
+
2917
+ [[package]]
2918
+ name = "wasip2"
2919
+ version = "1.0.2+wasi-0.2.9"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2922
+ dependencies = [
2923
+ "wit-bindgen",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "wasip3"
2928
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2931
+ dependencies = [
2932
+ "wit-bindgen",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "wasm-bindgen"
2937
+ version = "0.2.108"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
2940
+ dependencies = [
2941
+ "cfg-if",
2942
+ "once_cell",
2943
+ "rustversion",
2944
+ "wasm-bindgen-macro",
2945
+ "wasm-bindgen-shared",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "wasm-bindgen-futures"
2950
+ version = "0.4.58"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
2953
+ dependencies = [
2954
+ "cfg-if",
2955
+ "futures-util",
2956
+ "js-sys",
2957
+ "once_cell",
2958
+ "wasm-bindgen",
2959
+ "web-sys",
2960
+ ]
2961
+
2962
+ [[package]]
2963
+ name = "wasm-bindgen-macro"
2964
+ version = "0.2.108"
2965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2966
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
2967
+ dependencies = [
2968
+ "quote",
2969
+ "wasm-bindgen-macro-support",
2970
+ ]
2971
+
2972
+ [[package]]
2973
+ name = "wasm-bindgen-macro-support"
2974
+ version = "0.2.108"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
2977
+ dependencies = [
2978
+ "bumpalo",
2979
+ "proc-macro2",
2980
+ "quote",
2981
+ "syn",
2982
+ "wasm-bindgen-shared",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "wasm-bindgen-shared"
2987
+ version = "0.2.108"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
2990
+ dependencies = [
2991
+ "unicode-ident",
2992
+ ]
2993
+
2994
+ [[package]]
2995
+ name = "wasm-encoder"
2996
+ version = "0.244.0"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2999
+ dependencies = [
3000
+ "leb128fmt",
3001
+ "wasmparser",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "wasm-metadata"
3006
+ version = "0.244.0"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3009
+ dependencies = [
3010
+ "anyhow",
3011
+ "indexmap",
3012
+ "wasm-encoder",
3013
+ "wasmparser",
3014
+ ]
3015
+
3016
+ [[package]]
3017
+ name = "wasm-streams"
3018
+ version = "0.4.2"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3021
+ dependencies = [
3022
+ "futures-util",
3023
+ "js-sys",
3024
+ "wasm-bindgen",
3025
+ "wasm-bindgen-futures",
3026
+ "web-sys",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "wasmparser"
3031
+ version = "0.244.0"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3034
+ dependencies = [
3035
+ "bitflags",
3036
+ "hashbrown 0.15.5",
3037
+ "indexmap",
3038
+ "semver",
3039
+ ]
3040
+
3041
+ [[package]]
3042
+ name = "web-sys"
3043
+ version = "0.3.85"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
3046
+ dependencies = [
3047
+ "js-sys",
3048
+ "wasm-bindgen",
3049
+ ]
3050
+
3051
+ [[package]]
3052
+ name = "winapi"
3053
+ version = "0.3.9"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3056
+ dependencies = [
3057
+ "winapi-i686-pc-windows-gnu",
3058
+ "winapi-x86_64-pc-windows-gnu",
3059
+ ]
3060
+
3061
+ [[package]]
3062
+ name = "winapi-i686-pc-windows-gnu"
3063
+ version = "0.4.0"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3066
+
3067
+ [[package]]
3068
+ name = "winapi-x86_64-pc-windows-gnu"
3069
+ version = "0.4.0"
3070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3071
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3072
+
3073
+ [[package]]
3074
+ name = "windows-core"
3075
+ version = "0.62.2"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3078
+ dependencies = [
3079
+ "windows-implement",
3080
+ "windows-interface",
3081
+ "windows-link",
3082
+ "windows-result",
3083
+ "windows-strings",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "windows-implement"
3088
+ version = "0.60.2"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3091
+ dependencies = [
3092
+ "proc-macro2",
3093
+ "quote",
3094
+ "syn",
3095
+ ]
3096
+
3097
+ [[package]]
3098
+ name = "windows-interface"
3099
+ version = "0.59.3"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3102
+ dependencies = [
3103
+ "proc-macro2",
3104
+ "quote",
3105
+ "syn",
3106
+ ]
3107
+
3108
+ [[package]]
3109
+ name = "windows-link"
3110
+ version = "0.2.1"
3111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3112
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3113
+
3114
+ [[package]]
3115
+ name = "windows-registry"
3116
+ version = "0.6.1"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3119
+ dependencies = [
3120
+ "windows-link",
3121
+ "windows-result",
3122
+ "windows-strings",
3123
+ ]
3124
+
3125
+ [[package]]
3126
+ name = "windows-result"
3127
+ version = "0.4.1"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3130
+ dependencies = [
3131
+ "windows-link",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "windows-strings"
3136
+ version = "0.5.1"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3139
+ dependencies = [
3140
+ "windows-link",
3141
+ ]
3142
+
3143
+ [[package]]
3144
+ name = "windows-sys"
3145
+ version = "0.48.0"
3146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3147
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3148
+ dependencies = [
3149
+ "windows-targets 0.48.5",
3150
+ ]
3151
+
3152
+ [[package]]
3153
+ name = "windows-sys"
3154
+ version = "0.52.0"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3157
+ dependencies = [
3158
+ "windows-targets 0.52.6",
3159
+ ]
3160
+
3161
+ [[package]]
3162
+ name = "windows-sys"
3163
+ version = "0.60.2"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3166
+ dependencies = [
3167
+ "windows-targets 0.53.5",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "windows-sys"
3172
+ version = "0.61.2"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3175
+ dependencies = [
3176
+ "windows-link",
3177
+ ]
3178
+
3179
+ [[package]]
3180
+ name = "windows-targets"
3181
+ version = "0.48.5"
3182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3183
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3184
+ dependencies = [
3185
+ "windows_aarch64_gnullvm 0.48.5",
3186
+ "windows_aarch64_msvc 0.48.5",
3187
+ "windows_i686_gnu 0.48.5",
3188
+ "windows_i686_msvc 0.48.5",
3189
+ "windows_x86_64_gnu 0.48.5",
3190
+ "windows_x86_64_gnullvm 0.48.5",
3191
+ "windows_x86_64_msvc 0.48.5",
3192
+ ]
3193
+
3194
+ [[package]]
3195
+ name = "windows-targets"
3196
+ version = "0.52.6"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3199
+ dependencies = [
3200
+ "windows_aarch64_gnullvm 0.52.6",
3201
+ "windows_aarch64_msvc 0.52.6",
3202
+ "windows_i686_gnu 0.52.6",
3203
+ "windows_i686_gnullvm 0.52.6",
3204
+ "windows_i686_msvc 0.52.6",
3205
+ "windows_x86_64_gnu 0.52.6",
3206
+ "windows_x86_64_gnullvm 0.52.6",
3207
+ "windows_x86_64_msvc 0.52.6",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "windows-targets"
3212
+ version = "0.53.5"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3215
+ dependencies = [
3216
+ "windows-link",
3217
+ "windows_aarch64_gnullvm 0.53.1",
3218
+ "windows_aarch64_msvc 0.53.1",
3219
+ "windows_i686_gnu 0.53.1",
3220
+ "windows_i686_gnullvm 0.53.1",
3221
+ "windows_i686_msvc 0.53.1",
3222
+ "windows_x86_64_gnu 0.53.1",
3223
+ "windows_x86_64_gnullvm 0.53.1",
3224
+ "windows_x86_64_msvc 0.53.1",
3225
+ ]
3226
+
3227
+ [[package]]
3228
+ name = "windows_aarch64_gnullvm"
3229
+ version = "0.48.5"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3232
+
3233
+ [[package]]
3234
+ name = "windows_aarch64_gnullvm"
3235
+ version = "0.52.6"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3238
+
3239
+ [[package]]
3240
+ name = "windows_aarch64_gnullvm"
3241
+ version = "0.53.1"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3244
+
3245
+ [[package]]
3246
+ name = "windows_aarch64_msvc"
3247
+ version = "0.48.5"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3250
+
3251
+ [[package]]
3252
+ name = "windows_aarch64_msvc"
3253
+ version = "0.52.6"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3256
+
3257
+ [[package]]
3258
+ name = "windows_aarch64_msvc"
3259
+ version = "0.53.1"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3262
+
3263
+ [[package]]
3264
+ name = "windows_i686_gnu"
3265
+ version = "0.48.5"
3266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3267
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3268
+
3269
+ [[package]]
3270
+ name = "windows_i686_gnu"
3271
+ version = "0.52.6"
3272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3273
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3274
+
3275
+ [[package]]
3276
+ name = "windows_i686_gnu"
3277
+ version = "0.53.1"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3280
+
3281
+ [[package]]
3282
+ name = "windows_i686_gnullvm"
3283
+ version = "0.52.6"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3286
+
3287
+ [[package]]
3288
+ name = "windows_i686_gnullvm"
3289
+ version = "0.53.1"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3292
+
3293
+ [[package]]
3294
+ name = "windows_i686_msvc"
3295
+ version = "0.48.5"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3298
+
3299
+ [[package]]
3300
+ name = "windows_i686_msvc"
3301
+ version = "0.52.6"
3302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3303
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3304
+
3305
+ [[package]]
3306
+ name = "windows_i686_msvc"
3307
+ version = "0.53.1"
3308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3309
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3310
+
3311
+ [[package]]
3312
+ name = "windows_x86_64_gnu"
3313
+ version = "0.48.5"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3316
+
3317
+ [[package]]
3318
+ name = "windows_x86_64_gnu"
3319
+ version = "0.52.6"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3322
+
3323
+ [[package]]
3324
+ name = "windows_x86_64_gnu"
3325
+ version = "0.53.1"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3328
+
3329
+ [[package]]
3330
+ name = "windows_x86_64_gnullvm"
3331
+ version = "0.48.5"
3332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3333
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3334
+
3335
+ [[package]]
3336
+ name = "windows_x86_64_gnullvm"
3337
+ version = "0.52.6"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3340
+
3341
+ [[package]]
3342
+ name = "windows_x86_64_gnullvm"
3343
+ version = "0.53.1"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3346
+
3347
+ [[package]]
3348
+ name = "windows_x86_64_msvc"
3349
+ version = "0.48.5"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3352
+
3353
+ [[package]]
3354
+ name = "windows_x86_64_msvc"
3355
+ version = "0.52.6"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3358
+
3359
+ [[package]]
3360
+ name = "windows_x86_64_msvc"
3361
+ version = "0.53.1"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3364
+
3365
+ [[package]]
3366
+ name = "winnow"
3367
+ version = "0.6.26"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28"
3370
+ dependencies = [
3371
+ "memchr",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "winnow"
3376
+ version = "0.7.14"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3379
+ dependencies = [
3380
+ "memchr",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "wit-bindgen"
3385
+ version = "0.51.0"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3388
+ dependencies = [
3389
+ "wit-bindgen-rust-macro",
3390
+ ]
3391
+
3392
+ [[package]]
3393
+ name = "wit-bindgen-core"
3394
+ version = "0.51.0"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3397
+ dependencies = [
3398
+ "anyhow",
3399
+ "heck",
3400
+ "wit-parser",
3401
+ ]
3402
+
3403
+ [[package]]
3404
+ name = "wit-bindgen-rust"
3405
+ version = "0.51.0"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3408
+ dependencies = [
3409
+ "anyhow",
3410
+ "heck",
3411
+ "indexmap",
3412
+ "prettyplease",
3413
+ "syn",
3414
+ "wasm-metadata",
3415
+ "wit-bindgen-core",
3416
+ "wit-component",
3417
+ ]
3418
+
3419
+ [[package]]
3420
+ name = "wit-bindgen-rust-macro"
3421
+ version = "0.51.0"
3422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3423
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3424
+ dependencies = [
3425
+ "anyhow",
3426
+ "prettyplease",
3427
+ "proc-macro2",
3428
+ "quote",
3429
+ "syn",
3430
+ "wit-bindgen-core",
3431
+ "wit-bindgen-rust",
3432
+ ]
3433
+
3434
+ [[package]]
3435
+ name = "wit-component"
3436
+ version = "0.244.0"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3439
+ dependencies = [
3440
+ "anyhow",
3441
+ "bitflags",
3442
+ "indexmap",
3443
+ "log",
3444
+ "serde",
3445
+ "serde_derive",
3446
+ "serde_json",
3447
+ "wasm-encoder",
3448
+ "wasm-metadata",
3449
+ "wasmparser",
3450
+ "wit-parser",
3451
+ ]
3452
+
3453
+ [[package]]
3454
+ name = "wit-parser"
3455
+ version = "0.244.0"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3458
+ dependencies = [
3459
+ "anyhow",
3460
+ "id-arena",
3461
+ "indexmap",
3462
+ "log",
3463
+ "semver",
3464
+ "serde",
3465
+ "serde_derive",
3466
+ "serde_json",
3467
+ "unicode-xid",
3468
+ "wasmparser",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "writeable"
3473
+ version = "0.6.2"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3476
+
3477
+ [[package]]
3478
+ name = "yoke"
3479
+ version = "0.8.1"
3480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3481
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3482
+ dependencies = [
3483
+ "stable_deref_trait",
3484
+ "yoke-derive",
3485
+ "zerofrom",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "yoke-derive"
3490
+ version = "0.8.1"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3493
+ dependencies = [
3494
+ "proc-macro2",
3495
+ "quote",
3496
+ "syn",
3497
+ "synstructure",
3498
+ ]
3499
+
3500
+ [[package]]
3501
+ name = "zerocopy"
3502
+ version = "0.8.39"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
3505
+ dependencies = [
3506
+ "zerocopy-derive",
3507
+ ]
3508
+
3509
+ [[package]]
3510
+ name = "zerocopy-derive"
3511
+ version = "0.8.39"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
3514
+ dependencies = [
3515
+ "proc-macro2",
3516
+ "quote",
3517
+ "syn",
3518
+ ]
3519
+
3520
+ [[package]]
3521
+ name = "zerofrom"
3522
+ version = "0.1.6"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3525
+ dependencies = [
3526
+ "zerofrom-derive",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "zerofrom-derive"
3531
+ version = "0.1.6"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3534
+ dependencies = [
3535
+ "proc-macro2",
3536
+ "quote",
3537
+ "syn",
3538
+ "synstructure",
3539
+ ]
3540
+
3541
+ [[package]]
3542
+ name = "zeroize"
3543
+ version = "1.8.2"
3544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3545
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3546
+
3547
+ [[package]]
3548
+ name = "zerotrie"
3549
+ version = "0.2.3"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3552
+ dependencies = [
3553
+ "displaydoc",
3554
+ "yoke",
3555
+ "zerofrom",
3556
+ ]
3557
+
3558
+ [[package]]
3559
+ name = "zerovec"
3560
+ version = "0.11.5"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3563
+ dependencies = [
3564
+ "yoke",
3565
+ "zerofrom",
3566
+ "zerovec-derive",
3567
+ ]
3568
+
3569
+ [[package]]
3570
+ name = "zerovec-derive"
3571
+ version = "0.11.2"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3574
+ dependencies = [
3575
+ "proc-macro2",
3576
+ "quote",
3577
+ "syn",
3578
+ ]
3579
+
3580
+ [[package]]
3581
+ name = "zmij"
3582
+ version = "1.0.21"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"