nemo-switchyard 0.0.1.dev1__tar.gz

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 (331) hide show
  1. nemo_switchyard-0.0.1.dev1/Cargo.lock +2168 -0
  2. nemo_switchyard-0.0.1.dev1/Cargo.toml +13 -0
  3. nemo_switchyard-0.0.1.dev1/LICENSE +204 -0
  4. nemo_switchyard-0.0.1.dev1/NOTICE +40 -0
  5. nemo_switchyard-0.0.1.dev1/PKG-INFO +279 -0
  6. nemo_switchyard-0.0.1.dev1/README.md +235 -0
  7. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/Cargo.toml +29 -0
  8. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/anthropic.rs +695 -0
  9. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/common.rs +192 -0
  10. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/context_overflow.rs +93 -0
  11. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/mod.rs +18 -0
  12. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/multi.rs +330 -0
  13. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/openai.rs +781 -0
  14. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/selection.rs +92 -0
  15. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/backends/stats.rs +90 -0
  16. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/dimension_collector/config.rs +351 -0
  17. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/dimension_collector/mod.rs +135 -0
  18. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/dimension_collector/response/checks.rs +361 -0
  19. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/dimension_collector/response/mod.rs +128 -0
  20. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/dimension_collector/scorers.rs +602 -0
  21. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/dimension_collector/tool_signals.rs +1172 -0
  22. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/intake/client.rs +340 -0
  23. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/intake/config.rs +104 -0
  24. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/intake/context.rs +96 -0
  25. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/intake/payload.rs +1579 -0
  26. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/intake.rs +22 -0
  27. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/lib.rs +42 -0
  28. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/request_processors/dimension_collector.rs +206 -0
  29. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/request_processors/intake.rs +47 -0
  30. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/request_processors/mod.rs +14 -0
  31. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/request_processors/random_routing.rs +176 -0
  32. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/request_processors/stats.rs +38 -0
  33. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/response_processors/intake.rs +180 -0
  34. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/response_processors/mod.rs +12 -0
  35. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/response_processors/response_signals.rs +98 -0
  36. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/response_processors/stats.rs +251 -0
  37. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/stats/accumulator.rs +888 -0
  38. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/stats/cache_eligibility.rs +164 -0
  39. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/stats/context.rs +72 -0
  40. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/stats/cost.rs +255 -0
  41. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/stats/mod.rs +25 -0
  42. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/stats/usage.rs +183 -0
  43. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/src/telemetry.rs +102 -0
  44. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/adversarial_multi_llm_backend.rs +1277 -0
  45. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/adversarial_native_backends.rs +1124 -0
  46. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/adversarial_random_routing.rs +209 -0
  47. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/intake_http_sink.rs +183 -0
  48. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/intake_payload.rs +473 -0
  49. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/intake_request_processor.rs +156 -0
  50. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/intake_response_processor.rs +504 -0
  51. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/nvdataflow_live.rs +106 -0
  52. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/stats_accumulator.rs +751 -0
  53. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/stats_processors.rs +804 -0
  54. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/stats_usage_shapes.rs +241 -0
  55. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/support/config.rs +67 -0
  56. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/support/intake.rs +187 -0
  57. nemo_switchyard-0.0.1.dev1/crates/switchyard-components/tests/support/mod.rs +290 -0
  58. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/Cargo.toml +30 -0
  59. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/DESIGN.md +901 -0
  60. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/backend.rs +74 -0
  61. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/config/loading.rs +65 -0
  62. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/config/parsing.rs +270 -0
  63. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/config/resolving.rs +319 -0
  64. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/config.rs +19 -0
  65. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/lib.rs +43 -0
  66. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profile.rs +208 -0
  67. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/cascade/prompts/classifier.md +5 -0
  68. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/cascade.rs +1355 -0
  69. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/latency_service/health.rs +60 -0
  70. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/latency_service/mod.rs +390 -0
  71. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/latency_service/polling.rs +137 -0
  72. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/latency_service/selection.rs +94 -0
  73. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/latency_service/tests.rs +893 -0
  74. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/llm_routing/prompts/coding_agent.md +1 -0
  75. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/llm_routing/prompts/general.md +1 -0
  76. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/llm_routing/prompts/openclaw.md +1 -0
  77. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/llm_routing.rs +1605 -0
  78. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/macros.rs +70 -0
  79. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/mod.rs +32 -0
  80. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/noop.rs +78 -0
  81. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/passthrough.rs +275 -0
  82. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/profile_types.rs +19 -0
  83. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/profiles/random_routing.rs +481 -0
  84. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/src/stats.rs +14 -0
  85. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/tests/cascade_profile.rs +529 -0
  86. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/tests/config.rs +631 -0
  87. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/tests/latency_service_profile.rs +453 -0
  88. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/tests/llm_routing_profile.rs +687 -0
  89. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/tests/passthrough_profile.rs +84 -0
  90. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2/tests/random_routing_profile.rs +86 -0
  91. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2-macros/Cargo.toml +20 -0
  92. nemo_switchyard-0.0.1.dev1/crates/switchyard-components-v2-macros/src/lib.rs +235 -0
  93. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/Cargo.toml +25 -0
  94. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/backend.rs +145 -0
  95. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/context.rs +216 -0
  96. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/error.rs +103 -0
  97. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/ids.rs +115 -0
  98. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/lib.rs +25 -0
  99. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/roles.rs +30 -0
  100. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/session.rs +322 -0
  101. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/src/types.rs +327 -0
  102. nemo_switchyard-0.0.1.dev1/crates/switchyard-core/tests/adversarial_types.rs +190 -0
  103. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/Cargo.toml +32 -0
  104. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings/backends.rs +350 -0
  105. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings/config.rs +802 -0
  106. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings/dimension_collector.rs +586 -0
  107. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings/intake.rs +224 -0
  108. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings/request_processors.rs +112 -0
  109. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings/response_processors.rs +143 -0
  110. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings/stats.rs +291 -0
  111. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/component_bindings.rs +25 -0
  112. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/core_bindings/context.rs +636 -0
  113. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/core_bindings/request.rs +202 -0
  114. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/core_bindings/response.rs +856 -0
  115. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/core_bindings/roles.rs +122 -0
  116. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/core_bindings/session.rs +77 -0
  117. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/core_bindings.rs +21 -0
  118. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/errors.rs +209 -0
  119. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/lib.rs +23 -0
  120. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/profile_bindings/mod.rs +305 -0
  121. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/profile_bindings/typed.rs +223 -0
  122. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/py_serde.rs +41 -0
  123. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/server_bindings.rs +59 -0
  124. nemo_switchyard-0.0.1.dev1/crates/switchyard-py/src/translation.rs +123 -0
  125. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/Cargo.toml +31 -0
  126. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/src/cli.rs +64 -0
  127. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/src/lib.rs +613 -0
  128. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/src/main.rs +19 -0
  129. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/src/registry.rs +126 -0
  130. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/src/response.rs +144 -0
  131. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/src/sse.rs +88 -0
  132. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/tests/profile_migration.rs +820 -0
  133. nemo_switchyard-0.0.1.dev1/crates/switchyard-server/tests/server.rs +917 -0
  134. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/Cargo.toml +20 -0
  135. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/anthropic/buffered.rs +898 -0
  136. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/anthropic/mod.rs +10 -0
  137. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/anthropic/stream.rs +546 -0
  138. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/common.rs +48 -0
  139. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/mod.rs +68 -0
  140. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/openai_chat/buffered.rs +1121 -0
  141. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/openai_chat/mod.rs +12 -0
  142. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/openai_chat/stream.rs +366 -0
  143. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/responses/buffered.rs +1124 -0
  144. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/responses/mod.rs +10 -0
  145. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/responses/stream.rs +572 -0
  146. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/codecs/stream.rs +311 -0
  147. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/diagnostic.rs +58 -0
  148. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/engine.rs +270 -0
  149. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/error.rs +70 -0
  150. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/format.rs +100 -0
  151. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/ir.rs +281 -0
  152. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/lib.rs +29 -0
  153. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/policy.rs +92 -0
  154. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/stream.rs +6 -0
  155. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/src/util.rs +443 -0
  156. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/tests/extension_points.rs +299 -0
  157. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/tests/lossless_roundtrip.rs +680 -0
  158. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/tests/request_translation.rs +1103 -0
  159. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/tests/response_translation.rs +322 -0
  160. nemo_switchyard-0.0.1.dev1/crates/switchyard-translation/tests/stream_translation.rs +418 -0
  161. nemo_switchyard-0.0.1.dev1/pyproject.toml +219 -0
  162. nemo_switchyard-0.0.1.dev1/switchyard/__init__.py +243 -0
  163. nemo_switchyard-0.0.1.dev1/switchyard/cli/__init__.py +5 -0
  164. nemo_switchyard-0.0.1.dev1/switchyard/cli/command_utils.py +85 -0
  165. nemo_switchyard-0.0.1.dev1/switchyard/cli/config/__init__.py +5 -0
  166. nemo_switchyard-0.0.1.dev1/switchyard/cli/config/user_config.py +692 -0
  167. nemo_switchyard-0.0.1.dev1/switchyard/cli/configure_command.py +614 -0
  168. nemo_switchyard-0.0.1.dev1/switchyard/cli/intake_cli_config.py +117 -0
  169. nemo_switchyard-0.0.1.dev1/switchyard/cli/launch_command.py +1121 -0
  170. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/__init__.py +5 -0
  171. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/claude_alias.py +43 -0
  172. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/claude_code_launcher.py +542 -0
  173. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/codex_cli_launcher.py +642 -0
  174. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/codex_model_catalog.py +160 -0
  175. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/launch_intake_config.py +211 -0
  176. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/launcher_runtime.py +444 -0
  177. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/live_stats_footer.py +156 -0
  178. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/openclaw_launcher.py +702 -0
  179. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/proxy_health_monitor.py +44 -0
  180. nemo_switchyard-0.0.1.dev1/switchyard/cli/launchers/session_summary.py +84 -0
  181. nemo_switchyard-0.0.1.dev1/switchyard/cli/model_catalog/__init__.py +5 -0
  182. nemo_switchyard-0.0.1.dev1/switchyard/cli/model_catalog/model_discovery.py +233 -0
  183. nemo_switchyard-0.0.1.dev1/switchyard/cli/models.py +79 -0
  184. nemo_switchyard-0.0.1.dev1/switchyard/cli/output.py +171 -0
  185. nemo_switchyard-0.0.1.dev1/switchyard/cli/route_bundle.py +1490 -0
  186. nemo_switchyard-0.0.1.dev1/switchyard/cli/routing/__init__.py +20 -0
  187. nemo_switchyard-0.0.1.dev1/switchyard/cli/routing/route_builder.py +289 -0
  188. nemo_switchyard-0.0.1.dev1/switchyard/cli/status.py +213 -0
  189. nemo_switchyard-0.0.1.dev1/switchyard/cli/switchyard_cli.py +1453 -0
  190. nemo_switchyard-0.0.1.dev1/switchyard/cli/tui/__init__.py +29 -0
  191. nemo_switchyard-0.0.1.dev1/switchyard/cli/tui/choice_selector.py +55 -0
  192. nemo_switchyard-0.0.1.dev1/switchyard/cli/tui/launch_config_wizard.py +103 -0
  193. nemo_switchyard-0.0.1.dev1/switchyard/cli/tui/model_selector.py +251 -0
  194. nemo_switchyard-0.0.1.dev1/switchyard/cli/tui/terminal_capabilities.py +88 -0
  195. nemo_switchyard-0.0.1.dev1/switchyard/cli/tui/tui_session.py +111 -0
  196. nemo_switchyard-0.0.1.dev1/switchyard/lib/__init__.py +16 -0
  197. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/__init__.py +42 -0
  198. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/anthropic_cache_breakpoint_backend.py +264 -0
  199. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/anthropic_native_llm_backend.py +8 -0
  200. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/backend_format_resolver.py +392 -0
  201. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/deterministic_routing_llm_backend.py +166 -0
  202. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/health_poller.py +181 -0
  203. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/latency_service_llm_backend.py +771 -0
  204. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/llm_target.py +106 -0
  205. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/multi_llm_backend.py +86 -0
  206. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/openai_llm_backend.py +8 -0
  207. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/openai_native_backend.py +8 -0
  208. nemo_switchyard-0.0.1.dev1/switchyard/lib/backends/stats_llm_backend.py +8 -0
  209. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_request/__init__.py +17 -0
  210. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_request/anthropic.py +12 -0
  211. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_request/base.py +14 -0
  212. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_request/openai_chat.py +12 -0
  213. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_request/openai_responses.py +12 -0
  214. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_response/__init__.py +39 -0
  215. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_response/anthropic.py +19 -0
  216. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_response/base.py +14 -0
  217. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_response/openai_chat.py +15 -0
  218. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_response/openai_responses.py +19 -0
  219. nemo_switchyard-0.0.1.dev1/switchyard/lib/chat_response/streaming_response_accumulator.py +752 -0
  220. nemo_switchyard-0.0.1.dev1/switchyard/lib/config/__init__.py +20 -0
  221. nemo_switchyard-0.0.1.dev1/switchyard/lib/config/intake_sink_config.py +8 -0
  222. nemo_switchyard-0.0.1.dev1/switchyard/lib/config/latency_service_backend_config.py +121 -0
  223. nemo_switchyard-0.0.1.dev1/switchyard/lib/conversation_turn.py +68 -0
  224. nemo_switchyard-0.0.1.dev1/switchyard/lib/cost_estimator.py +441 -0
  225. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/__init__.py +55 -0
  226. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/anthropic_messages_endpoint.py +120 -0
  227. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/base.py +39 -0
  228. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/dispatch.py +111 -0
  229. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/error_envelope.py +130 -0
  230. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/models_endpoint.py +42 -0
  231. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/openai_chat_endpoint.py +101 -0
  232. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/outcome_metrics.py +249 -0
  233. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/prometheus_emitter.py +71 -0
  234. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/responses_endpoint.py +98 -0
  235. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/sse_helpers.py +207 -0
  236. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/stats_endpoint.py +113 -0
  237. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/upstream_error.py +176 -0
  238. nemo_switchyard-0.0.1.dev1/switchyard/lib/endpoints/upstream_error_log.py +81 -0
  239. nemo_switchyard-0.0.1.dev1/switchyard/lib/live_stats_collector.py +268 -0
  240. nemo_switchyard-0.0.1.dev1/switchyard/lib/llm_client.py +124 -0
  241. nemo_switchyard-0.0.1.dev1/switchyard/lib/model_listing.py +131 -0
  242. nemo_switchyard-0.0.1.dev1/switchyard/lib/plugin/__init__.py +43 -0
  243. nemo_switchyard-0.0.1.dev1/switchyard/lib/plugin/plugin_client.py +461 -0
  244. nemo_switchyard-0.0.1.dev1/switchyard/lib/plugin/plugin_protocol.py +166 -0
  245. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/__init__.py +59 -0
  246. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/_structured_output.py +124 -0
  247. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade/__init__.py +48 -0
  248. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade/classifier.py +249 -0
  249. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade/decision_log.py +43 -0
  250. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade/dimensions.py +78 -0
  251. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade/picker.py +142 -0
  252. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade/prompts/tier_classifier.md +5 -0
  253. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade/scorer.py +55 -0
  254. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/cascade_request_processor.py +124 -0
  255. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/empty_tool_content_normalizer.py +85 -0
  256. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/fixed_tier_request_processor.py +55 -0
  257. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/format_translate.py +312 -0
  258. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/intake_client.py +230 -0
  259. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/intake_payload_builder.py +301 -0
  260. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/intake_request_processor.py +8 -0
  261. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/intake_response_processor.py +8 -0
  262. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/llm_classifier/__init__.py +88 -0
  263. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/llm_classifier/presets.py +446 -0
  264. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/llm_classifier/request_processor.py +660 -0
  265. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/llm_classifier/signals.py +568 -0
  266. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/llm_classifier/tier_selector_request_processor.py +362 -0
  267. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/model_rewrite_request_processor.py +26 -0
  268. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/plan_execute/__init__.py +72 -0
  269. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/plan_execute/plan.py +86 -0
  270. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/plan_execute/request_processor.py +1005 -0
  271. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/plugin_routing_request_processor.py +319 -0
  272. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/random_routing_request_processor.py +58 -0
  273. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/reasoning_effort_normalizer.py +68 -0
  274. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/reasoning_hint.py +23 -0
  275. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/rl_logging_request_processor.py +43 -0
  276. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/rl_logging_response_processor.py +187 -0
  277. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/routellm_request_processor.py +195 -0
  278. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/stats_request_processor.py +8 -0
  279. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/stats_response_processor_accumulator.py +8 -0
  280. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/stats_response_processor_live_collector.py +330 -0
  281. nemo_switchyard-0.0.1.dev1/switchyard/lib/processors/turn_based_router_request_processor.py +238 -0
  282. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/__init__.py +97 -0
  283. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/cascade.py +100 -0
  284. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/cascade_config.py +84 -0
  285. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/chain.py +393 -0
  286. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/deterministic_routing_config.py +161 -0
  287. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/deterministic_routing_presets.py +105 -0
  288. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/deterministic_routing_profile_config.py +202 -0
  289. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/header_routing.py +93 -0
  290. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/latency_service.py +36 -0
  291. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/loader.py +192 -0
  292. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/noop.py +241 -0
  293. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/oss_router.py +138 -0
  294. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/passthrough.py +43 -0
  295. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/plan_execute.py +87 -0
  296. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/plan_execute_config.py +94 -0
  297. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/plan_execute_presets.py +98 -0
  298. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/protocols.py +116 -0
  299. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/random_routing.py +123 -0
  300. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/random_routing_presets.py +430 -0
  301. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/routellm.py +119 -0
  302. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/switchyard_adapter.py +87 -0
  303. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/table.py +149 -0
  304. nemo_switchyard-0.0.1.dev1/switchyard/lib/profiles/translate_profile_config.py +79 -0
  305. nemo_switchyard-0.0.1.dev1/switchyard/lib/prometheus_exposition.py +216 -0
  306. nemo_switchyard-0.0.1.dev1/switchyard/lib/proxy_context.py +81 -0
  307. nemo_switchyard-0.0.1.dev1/switchyard/lib/request_metadata.py +83 -0
  308. nemo_switchyard-0.0.1.dev1/switchyard/lib/roles.py +47 -0
  309. nemo_switchyard-0.0.1.dev1/switchyard/lib/route_table.py +171 -0
  310. nemo_switchyard-0.0.1.dev1/switchyard/lib/route_table_builders.py +564 -0
  311. nemo_switchyard-0.0.1.dev1/switchyard/lib/session_affinity.py +91 -0
  312. nemo_switchyard-0.0.1.dev1/switchyard/lib/session_cache.py +13 -0
  313. nemo_switchyard-0.0.1.dev1/switchyard/lib/session_key.py +14 -0
  314. nemo_switchyard-0.0.1.dev1/switchyard/lib/stats_accumulator.py +8 -0
  315. nemo_switchyard-0.0.1.dev1/switchyard/lib/switchyard.py +10 -0
  316. nemo_switchyard-0.0.1.dev1/switchyard/lib/tracing.py +72 -0
  317. nemo_switchyard-0.0.1.dev1/switchyard/server/__init__.py +34 -0
  318. nemo_switchyard-0.0.1.dev1/switchyard/server/server_util.py +389 -0
  319. nemo_switchyard-0.0.1.dev1/switchyard/server/shell_tui.py +419 -0
  320. nemo_switchyard-0.0.1.dev1/switchyard/server/switchyard_app.py +214 -0
  321. nemo_switchyard-0.0.1.dev1/switchyard/server/verify.py +1340 -0
  322. nemo_switchyard-0.0.1.dev1/switchyard/telemetry.py +64 -0
  323. nemo_switchyard-0.0.1.dev1/switchyard_rust/__init__.py +173 -0
  324. nemo_switchyard-0.0.1.dev1/switchyard_rust/components.py +90 -0
  325. nemo_switchyard-0.0.1.dev1/switchyard_rust/components.pyi +381 -0
  326. nemo_switchyard-0.0.1.dev1/switchyard_rust/core.py +851 -0
  327. nemo_switchyard-0.0.1.dev1/switchyard_rust/profiles.py +36 -0
  328. nemo_switchyard-0.0.1.dev1/switchyard_rust/profiles.pyi +66 -0
  329. nemo_switchyard-0.0.1.dev1/switchyard_rust/py.typed +1 -0
  330. nemo_switchyard-0.0.1.dev1/switchyard_rust/server.py +20 -0
  331. nemo_switchyard-0.0.1.dev1/switchyard_rust/translation.py +482 -0
@@ -0,0 +1,2168 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "allocator-api2"
7
+ version = "0.2.21"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
10
+
11
+ [[package]]
12
+ name = "anstream"
13
+ version = "1.0.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
16
+ dependencies = [
17
+ "anstyle",
18
+ "anstyle-parse",
19
+ "anstyle-query",
20
+ "anstyle-wincon",
21
+ "colorchoice",
22
+ "is_terminal_polyfill",
23
+ "utf8parse",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anstyle"
28
+ version = "1.0.14"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
31
+
32
+ [[package]]
33
+ name = "anstyle-parse"
34
+ version = "1.0.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
37
+ dependencies = [
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle-query"
43
+ version = "1.1.5"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
46
+ dependencies = [
47
+ "windows-sys 0.61.2",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-wincon"
52
+ version = "3.0.11"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
55
+ dependencies = [
56
+ "anstyle",
57
+ "once_cell_polyfill",
58
+ "windows-sys 0.61.2",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "async-stream"
63
+ version = "0.3.6"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
66
+ dependencies = [
67
+ "async-stream-impl",
68
+ "futures-core",
69
+ "pin-project-lite",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "async-stream-impl"
74
+ version = "0.3.6"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
77
+ dependencies = [
78
+ "proc-macro2",
79
+ "quote",
80
+ "syn",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "async-trait"
85
+ version = "0.1.89"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
88
+ dependencies = [
89
+ "proc-macro2",
90
+ "quote",
91
+ "syn",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "atomic-waker"
96
+ version = "1.1.2"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
99
+
100
+ [[package]]
101
+ name = "axum"
102
+ version = "0.8.9"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
105
+ dependencies = [
106
+ "axum-core",
107
+ "bytes",
108
+ "form_urlencoded",
109
+ "futures-util",
110
+ "http",
111
+ "http-body",
112
+ "http-body-util",
113
+ "hyper",
114
+ "hyper-util",
115
+ "itoa",
116
+ "matchit",
117
+ "memchr",
118
+ "mime",
119
+ "percent-encoding",
120
+ "pin-project-lite",
121
+ "serde_core",
122
+ "serde_json",
123
+ "serde_path_to_error",
124
+ "serde_urlencoded",
125
+ "sync_wrapper",
126
+ "tokio",
127
+ "tower",
128
+ "tower-layer",
129
+ "tower-service",
130
+ "tracing",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "axum-core"
135
+ version = "0.5.6"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
138
+ dependencies = [
139
+ "bytes",
140
+ "futures-core",
141
+ "http",
142
+ "http-body",
143
+ "http-body-util",
144
+ "mime",
145
+ "pin-project-lite",
146
+ "sync_wrapper",
147
+ "tower-layer",
148
+ "tower-service",
149
+ "tracing",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "base64"
154
+ version = "0.22.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
157
+
158
+ [[package]]
159
+ name = "bitflags"
160
+ version = "2.11.1"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
163
+
164
+ [[package]]
165
+ name = "bumpalo"
166
+ version = "3.20.2"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
169
+
170
+ [[package]]
171
+ name = "bytes"
172
+ version = "1.11.1"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
175
+
176
+ [[package]]
177
+ name = "cc"
178
+ version = "1.2.62"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
181
+ dependencies = [
182
+ "find-msvc-tools",
183
+ "shlex",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "cfg-if"
188
+ version = "1.0.4"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
191
+
192
+ [[package]]
193
+ name = "cfg_aliases"
194
+ version = "0.2.1"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
197
+
198
+ [[package]]
199
+ name = "clap"
200
+ version = "4.6.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
203
+ dependencies = [
204
+ "clap_builder",
205
+ "clap_derive",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "clap_builder"
210
+ version = "4.6.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
213
+ dependencies = [
214
+ "anstream",
215
+ "anstyle",
216
+ "clap_lex",
217
+ "strsim",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "clap_derive"
222
+ version = "4.6.1"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
225
+ dependencies = [
226
+ "heck",
227
+ "proc-macro2",
228
+ "quote",
229
+ "syn",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "clap_lex"
234
+ version = "1.1.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
237
+
238
+ [[package]]
239
+ name = "colorchoice"
240
+ version = "1.0.5"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
243
+
244
+ [[package]]
245
+ name = "core-foundation"
246
+ version = "0.10.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
249
+ dependencies = [
250
+ "core-foundation-sys",
251
+ "libc",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "core-foundation-sys"
256
+ version = "0.8.7"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
259
+
260
+ [[package]]
261
+ name = "diff"
262
+ version = "0.1.13"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
265
+
266
+ [[package]]
267
+ name = "displaydoc"
268
+ version = "0.2.5"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
271
+ dependencies = [
272
+ "proc-macro2",
273
+ "quote",
274
+ "syn",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "equivalent"
279
+ version = "1.0.2"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
282
+
283
+ [[package]]
284
+ name = "errno"
285
+ version = "0.3.14"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
288
+ dependencies = [
289
+ "libc",
290
+ "windows-sys 0.61.2",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "find-msvc-tools"
295
+ version = "0.1.9"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
298
+
299
+ [[package]]
300
+ name = "foldhash"
301
+ version = "0.1.5"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
304
+
305
+ [[package]]
306
+ name = "form_urlencoded"
307
+ version = "1.2.2"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
310
+ dependencies = [
311
+ "percent-encoding",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "futures-channel"
316
+ version = "0.3.32"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
319
+ dependencies = [
320
+ "futures-core",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "futures-core"
325
+ version = "0.3.32"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
328
+
329
+ [[package]]
330
+ name = "futures-io"
331
+ version = "0.3.32"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
334
+
335
+ [[package]]
336
+ name = "futures-macro"
337
+ version = "0.3.32"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
340
+ dependencies = [
341
+ "proc-macro2",
342
+ "quote",
343
+ "syn",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "futures-sink"
348
+ version = "0.3.32"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
351
+
352
+ [[package]]
353
+ name = "futures-task"
354
+ version = "0.3.32"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
357
+
358
+ [[package]]
359
+ name = "futures-util"
360
+ version = "0.3.32"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
363
+ dependencies = [
364
+ "futures-core",
365
+ "futures-io",
366
+ "futures-macro",
367
+ "futures-sink",
368
+ "futures-task",
369
+ "memchr",
370
+ "pin-project-lite",
371
+ "slab",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "getrandom"
376
+ version = "0.2.17"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
379
+ dependencies = [
380
+ "cfg-if",
381
+ "js-sys",
382
+ "libc",
383
+ "wasi",
384
+ "wasm-bindgen",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "getrandom"
389
+ version = "0.3.4"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
392
+ dependencies = [
393
+ "cfg-if",
394
+ "js-sys",
395
+ "libc",
396
+ "r-efi",
397
+ "wasip2",
398
+ "wasm-bindgen",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "hashbrown"
403
+ version = "0.15.5"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
406
+ dependencies = [
407
+ "allocator-api2",
408
+ "equivalent",
409
+ "foldhash",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "hashbrown"
414
+ version = "0.17.1"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
417
+
418
+ [[package]]
419
+ name = "heck"
420
+ version = "0.5.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
423
+
424
+ [[package]]
425
+ name = "http"
426
+ version = "1.4.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
429
+ dependencies = [
430
+ "bytes",
431
+ "itoa",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "http-body"
436
+ version = "1.0.1"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
439
+ dependencies = [
440
+ "bytes",
441
+ "http",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "http-body-util"
446
+ version = "0.1.3"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
449
+ dependencies = [
450
+ "bytes",
451
+ "futures-core",
452
+ "http",
453
+ "http-body",
454
+ "pin-project-lite",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "httparse"
459
+ version = "1.10.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
462
+
463
+ [[package]]
464
+ name = "httpdate"
465
+ version = "1.0.3"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
468
+
469
+ [[package]]
470
+ name = "hyper"
471
+ version = "1.9.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
474
+ dependencies = [
475
+ "atomic-waker",
476
+ "bytes",
477
+ "futures-channel",
478
+ "futures-core",
479
+ "http",
480
+ "http-body",
481
+ "httparse",
482
+ "httpdate",
483
+ "itoa",
484
+ "pin-project-lite",
485
+ "smallvec",
486
+ "tokio",
487
+ "want",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "hyper-rustls"
492
+ version = "0.27.9"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
495
+ dependencies = [
496
+ "http",
497
+ "hyper",
498
+ "hyper-util",
499
+ "rustls",
500
+ "rustls-native-certs",
501
+ "tokio",
502
+ "tokio-rustls",
503
+ "tower-service",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "hyper-util"
508
+ version = "0.1.20"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
511
+ dependencies = [
512
+ "base64",
513
+ "bytes",
514
+ "futures-channel",
515
+ "futures-util",
516
+ "http",
517
+ "http-body",
518
+ "hyper",
519
+ "ipnet",
520
+ "libc",
521
+ "percent-encoding",
522
+ "pin-project-lite",
523
+ "socket2",
524
+ "tokio",
525
+ "tower-service",
526
+ "tracing",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "icu_collections"
531
+ version = "2.2.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
534
+ dependencies = [
535
+ "displaydoc",
536
+ "potential_utf",
537
+ "utf8_iter",
538
+ "yoke",
539
+ "zerofrom",
540
+ "zerovec",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "icu_locale_core"
545
+ version = "2.2.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
548
+ dependencies = [
549
+ "displaydoc",
550
+ "litemap",
551
+ "tinystr",
552
+ "writeable",
553
+ "zerovec",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "icu_normalizer"
558
+ version = "2.2.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
561
+ dependencies = [
562
+ "icu_collections",
563
+ "icu_normalizer_data",
564
+ "icu_properties",
565
+ "icu_provider",
566
+ "smallvec",
567
+ "zerovec",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "icu_normalizer_data"
572
+ version = "2.2.0"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
575
+
576
+ [[package]]
577
+ name = "icu_properties"
578
+ version = "2.2.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
581
+ dependencies = [
582
+ "icu_collections",
583
+ "icu_locale_core",
584
+ "icu_properties_data",
585
+ "icu_provider",
586
+ "zerotrie",
587
+ "zerovec",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "icu_properties_data"
592
+ version = "2.2.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
595
+
596
+ [[package]]
597
+ name = "icu_provider"
598
+ version = "2.2.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
601
+ dependencies = [
602
+ "displaydoc",
603
+ "icu_locale_core",
604
+ "writeable",
605
+ "yoke",
606
+ "zerofrom",
607
+ "zerotrie",
608
+ "zerovec",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "idna"
613
+ version = "1.1.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
616
+ dependencies = [
617
+ "idna_adapter",
618
+ "smallvec",
619
+ "utf8_iter",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "idna_adapter"
624
+ version = "1.2.2"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
627
+ dependencies = [
628
+ "icu_normalizer",
629
+ "icu_properties",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "indexmap"
634
+ version = "2.14.0"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
637
+ dependencies = [
638
+ "equivalent",
639
+ "hashbrown 0.17.1",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "ipnet"
644
+ version = "2.12.0"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
647
+
648
+ [[package]]
649
+ name = "is_terminal_polyfill"
650
+ version = "1.70.2"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
653
+
654
+ [[package]]
655
+ name = "itoa"
656
+ version = "1.0.18"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
659
+
660
+ [[package]]
661
+ name = "js-sys"
662
+ version = "0.3.98"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
665
+ dependencies = [
666
+ "cfg-if",
667
+ "futures-util",
668
+ "once_cell",
669
+ "wasm-bindgen",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "libc"
674
+ version = "0.2.186"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
677
+
678
+ [[package]]
679
+ name = "libyaml-rs"
680
+ version = "0.3.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777"
683
+
684
+ [[package]]
685
+ name = "litemap"
686
+ version = "0.8.2"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
689
+
690
+ [[package]]
691
+ name = "lock_api"
692
+ version = "0.4.14"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
695
+ dependencies = [
696
+ "scopeguard",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "log"
701
+ version = "0.4.29"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
704
+
705
+ [[package]]
706
+ name = "lru"
707
+ version = "0.12.5"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
710
+ dependencies = [
711
+ "hashbrown 0.15.5",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "lru-slab"
716
+ version = "0.1.2"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
719
+
720
+ [[package]]
721
+ name = "matchit"
722
+ version = "0.8.4"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
725
+
726
+ [[package]]
727
+ name = "memchr"
728
+ version = "2.8.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
731
+
732
+ [[package]]
733
+ name = "mime"
734
+ version = "0.3.17"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
737
+
738
+ [[package]]
739
+ name = "mio"
740
+ version = "1.2.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
743
+ dependencies = [
744
+ "libc",
745
+ "wasi",
746
+ "windows-sys 0.61.2",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "once_cell"
751
+ version = "1.21.4"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
754
+
755
+ [[package]]
756
+ name = "once_cell_polyfill"
757
+ version = "1.70.2"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
760
+
761
+ [[package]]
762
+ name = "openssl-probe"
763
+ version = "0.2.1"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
766
+
767
+ [[package]]
768
+ name = "parking_lot"
769
+ version = "0.12.5"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
772
+ dependencies = [
773
+ "lock_api",
774
+ "parking_lot_core",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "parking_lot_core"
779
+ version = "0.9.12"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
782
+ dependencies = [
783
+ "cfg-if",
784
+ "libc",
785
+ "redox_syscall",
786
+ "smallvec",
787
+ "windows-link",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "percent-encoding"
792
+ version = "2.3.2"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
795
+
796
+ [[package]]
797
+ name = "pin-project-lite"
798
+ version = "0.2.17"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
801
+
802
+ [[package]]
803
+ name = "portable-atomic"
804
+ version = "1.13.1"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
807
+
808
+ [[package]]
809
+ name = "potential_utf"
810
+ version = "0.1.5"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
813
+ dependencies = [
814
+ "zerovec",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "ppv-lite86"
819
+ version = "0.2.21"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
822
+ dependencies = [
823
+ "zerocopy",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "pretty_assertions"
828
+ version = "1.4.1"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
831
+ dependencies = [
832
+ "diff",
833
+ "yansi",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "proc-macro2"
838
+ version = "1.0.106"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
841
+ dependencies = [
842
+ "unicode-ident",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "pyo3"
847
+ version = "0.28.3"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
850
+ dependencies = [
851
+ "libc",
852
+ "once_cell",
853
+ "portable-atomic",
854
+ "pyo3-build-config",
855
+ "pyo3-ffi",
856
+ "pyo3-macros",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "pyo3-async-runtimes"
861
+ version = "0.28.0"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
864
+ dependencies = [
865
+ "futures-channel",
866
+ "futures-util",
867
+ "once_cell",
868
+ "pin-project-lite",
869
+ "pyo3",
870
+ "tokio",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "pyo3-build-config"
875
+ version = "0.28.3"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
878
+ dependencies = [
879
+ "target-lexicon",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "pyo3-ffi"
884
+ version = "0.28.3"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
887
+ dependencies = [
888
+ "libc",
889
+ "pyo3-build-config",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "pyo3-macros"
894
+ version = "0.28.3"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
897
+ dependencies = [
898
+ "proc-macro2",
899
+ "pyo3-macros-backend",
900
+ "quote",
901
+ "syn",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "pyo3-macros-backend"
906
+ version = "0.28.3"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
909
+ dependencies = [
910
+ "heck",
911
+ "proc-macro2",
912
+ "pyo3-build-config",
913
+ "quote",
914
+ "syn",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "pythonize"
919
+ version = "0.28.0"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "0b79f670c9626c8b651c0581011b57b6ba6970bb69faf01a7c4c0cfc81c43f95"
922
+ dependencies = [
923
+ "pyo3",
924
+ "serde",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "quinn"
929
+ version = "0.11.9"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
932
+ dependencies = [
933
+ "bytes",
934
+ "cfg_aliases",
935
+ "pin-project-lite",
936
+ "quinn-proto",
937
+ "quinn-udp",
938
+ "rustc-hash",
939
+ "rustls",
940
+ "socket2",
941
+ "thiserror",
942
+ "tokio",
943
+ "tracing",
944
+ "web-time",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "quinn-proto"
949
+ version = "0.11.14"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
952
+ dependencies = [
953
+ "bytes",
954
+ "getrandom 0.3.4",
955
+ "lru-slab",
956
+ "rand 0.9.4",
957
+ "ring",
958
+ "rustc-hash",
959
+ "rustls",
960
+ "rustls-pki-types",
961
+ "slab",
962
+ "thiserror",
963
+ "tinyvec",
964
+ "tracing",
965
+ "web-time",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "quinn-udp"
970
+ version = "0.5.14"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
973
+ dependencies = [
974
+ "cfg_aliases",
975
+ "libc",
976
+ "once_cell",
977
+ "socket2",
978
+ "tracing",
979
+ "windows-sys 0.60.2",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "quote"
984
+ version = "1.0.45"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
987
+ dependencies = [
988
+ "proc-macro2",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "r-efi"
993
+ version = "5.3.0"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
996
+
997
+ [[package]]
998
+ name = "rand"
999
+ version = "0.8.6"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1002
+ dependencies = [
1003
+ "libc",
1004
+ "rand_chacha 0.3.1",
1005
+ "rand_core 0.6.4",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "rand"
1010
+ version = "0.9.4"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1013
+ dependencies = [
1014
+ "rand_chacha 0.9.0",
1015
+ "rand_core 0.9.5",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "rand_chacha"
1020
+ version = "0.3.1"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1023
+ dependencies = [
1024
+ "ppv-lite86",
1025
+ "rand_core 0.6.4",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "rand_chacha"
1030
+ version = "0.9.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1033
+ dependencies = [
1034
+ "ppv-lite86",
1035
+ "rand_core 0.9.5",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "rand_core"
1040
+ version = "0.6.4"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1043
+ dependencies = [
1044
+ "getrandom 0.2.17",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "rand_core"
1049
+ version = "0.9.5"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1052
+ dependencies = [
1053
+ "getrandom 0.3.4",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "redox_syscall"
1058
+ version = "0.5.18"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1061
+ dependencies = [
1062
+ "bitflags",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "reqwest"
1067
+ version = "0.12.28"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1070
+ dependencies = [
1071
+ "base64",
1072
+ "bytes",
1073
+ "futures-core",
1074
+ "futures-util",
1075
+ "http",
1076
+ "http-body",
1077
+ "http-body-util",
1078
+ "hyper",
1079
+ "hyper-rustls",
1080
+ "hyper-util",
1081
+ "js-sys",
1082
+ "log",
1083
+ "percent-encoding",
1084
+ "pin-project-lite",
1085
+ "quinn",
1086
+ "rustls",
1087
+ "rustls-native-certs",
1088
+ "rustls-pki-types",
1089
+ "serde",
1090
+ "serde_json",
1091
+ "serde_urlencoded",
1092
+ "sync_wrapper",
1093
+ "tokio",
1094
+ "tokio-rustls",
1095
+ "tokio-util",
1096
+ "tower",
1097
+ "tower-http",
1098
+ "tower-service",
1099
+ "url",
1100
+ "wasm-bindgen",
1101
+ "wasm-bindgen-futures",
1102
+ "wasm-streams",
1103
+ "web-sys",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "ring"
1108
+ version = "0.17.14"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1111
+ dependencies = [
1112
+ "cc",
1113
+ "cfg-if",
1114
+ "getrandom 0.2.17",
1115
+ "libc",
1116
+ "untrusted",
1117
+ "windows-sys 0.52.0",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "rustc-hash"
1122
+ version = "2.1.2"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1125
+
1126
+ [[package]]
1127
+ name = "rustls"
1128
+ version = "0.23.40"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1131
+ dependencies = [
1132
+ "once_cell",
1133
+ "ring",
1134
+ "rustls-pki-types",
1135
+ "rustls-webpki",
1136
+ "subtle",
1137
+ "zeroize",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "rustls-native-certs"
1142
+ version = "0.8.3"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1145
+ dependencies = [
1146
+ "openssl-probe",
1147
+ "rustls-pki-types",
1148
+ "schannel",
1149
+ "security-framework",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "rustls-pki-types"
1154
+ version = "1.14.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1157
+ dependencies = [
1158
+ "web-time",
1159
+ "zeroize",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "rustls-webpki"
1164
+ version = "0.103.13"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1167
+ dependencies = [
1168
+ "ring",
1169
+ "rustls-pki-types",
1170
+ "untrusted",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "rustversion"
1175
+ version = "1.0.22"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1178
+
1179
+ [[package]]
1180
+ name = "ryu"
1181
+ version = "1.0.23"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1184
+
1185
+ [[package]]
1186
+ name = "schannel"
1187
+ version = "0.1.29"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1190
+ dependencies = [
1191
+ "windows-sys 0.61.2",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "scopeguard"
1196
+ version = "1.2.0"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1199
+
1200
+ [[package]]
1201
+ name = "security-framework"
1202
+ version = "3.7.0"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1205
+ dependencies = [
1206
+ "bitflags",
1207
+ "core-foundation",
1208
+ "core-foundation-sys",
1209
+ "libc",
1210
+ "security-framework-sys",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "security-framework-sys"
1215
+ version = "2.17.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1218
+ dependencies = [
1219
+ "core-foundation-sys",
1220
+ "libc",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "serde"
1225
+ version = "1.0.228"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1228
+ dependencies = [
1229
+ "serde_core",
1230
+ "serde_derive",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "serde_core"
1235
+ version = "1.0.228"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1238
+ dependencies = [
1239
+ "serde_derive",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "serde_derive"
1244
+ version = "1.0.228"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1247
+ dependencies = [
1248
+ "proc-macro2",
1249
+ "quote",
1250
+ "syn",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "serde_json"
1255
+ version = "1.0.149"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1258
+ dependencies = [
1259
+ "itoa",
1260
+ "memchr",
1261
+ "serde",
1262
+ "serde_core",
1263
+ "zmij",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "serde_path_to_error"
1268
+ version = "0.1.20"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1271
+ dependencies = [
1272
+ "itoa",
1273
+ "serde",
1274
+ "serde_core",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "serde_spanned"
1279
+ version = "0.6.9"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1282
+ dependencies = [
1283
+ "serde",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "serde_urlencoded"
1288
+ version = "0.7.1"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1291
+ dependencies = [
1292
+ "form_urlencoded",
1293
+ "itoa",
1294
+ "ryu",
1295
+ "serde",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "shlex"
1300
+ version = "1.3.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1303
+
1304
+ [[package]]
1305
+ name = "signal-hook-registry"
1306
+ version = "1.4.8"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1309
+ dependencies = [
1310
+ "errno",
1311
+ "libc",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "slab"
1316
+ version = "0.4.12"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1319
+
1320
+ [[package]]
1321
+ name = "smallvec"
1322
+ version = "1.15.1"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1325
+
1326
+ [[package]]
1327
+ name = "socket2"
1328
+ version = "0.6.3"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1331
+ dependencies = [
1332
+ "libc",
1333
+ "windows-sys 0.61.2",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "stable_deref_trait"
1338
+ version = "1.2.1"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1341
+
1342
+ [[package]]
1343
+ name = "strsim"
1344
+ version = "0.11.1"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1347
+
1348
+ [[package]]
1349
+ name = "subtle"
1350
+ version = "2.6.1"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1353
+
1354
+ [[package]]
1355
+ name = "switchyard-components"
1356
+ version = "0.1.0"
1357
+ dependencies = [
1358
+ "async-stream",
1359
+ "async-trait",
1360
+ "futures-util",
1361
+ "parking_lot",
1362
+ "rand 0.8.6",
1363
+ "reqwest",
1364
+ "serde",
1365
+ "serde_json",
1366
+ "switchyard-core",
1367
+ "switchyard-translation",
1368
+ "tokio",
1369
+ "tracing",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "switchyard-components-v2"
1374
+ version = "0.1.0"
1375
+ dependencies = [
1376
+ "async-trait",
1377
+ "futures-core",
1378
+ "parking_lot",
1379
+ "rand 0.8.6",
1380
+ "reqwest",
1381
+ "serde",
1382
+ "serde_json",
1383
+ "switchyard-components",
1384
+ "switchyard-components-v2-macros",
1385
+ "switchyard-core",
1386
+ "tokio",
1387
+ "toml",
1388
+ "tracing",
1389
+ "yaml_serde",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "switchyard-components-v2-macros"
1394
+ version = "0.1.0"
1395
+ dependencies = [
1396
+ "proc-macro2",
1397
+ "quote",
1398
+ "syn",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "switchyard-core"
1403
+ version = "0.1.0"
1404
+ dependencies = [
1405
+ "async-trait",
1406
+ "futures-core",
1407
+ "lru",
1408
+ "rand 0.8.6",
1409
+ "serde",
1410
+ "serde_json",
1411
+ "thiserror",
1412
+ "tokio",
1413
+ "tracing",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "switchyard-py"
1418
+ version = "0.1.0"
1419
+ dependencies = [
1420
+ "async-trait",
1421
+ "futures-util",
1422
+ "pyo3",
1423
+ "pyo3-async-runtimes",
1424
+ "pythonize",
1425
+ "serde",
1426
+ "serde_json",
1427
+ "switchyard-components",
1428
+ "switchyard-components-v2",
1429
+ "switchyard-core",
1430
+ "switchyard-server",
1431
+ "switchyard-translation",
1432
+ "tokio",
1433
+ "tracing",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "switchyard-server"
1438
+ version = "0.1.0"
1439
+ dependencies = [
1440
+ "async-stream",
1441
+ "async-trait",
1442
+ "axum",
1443
+ "clap",
1444
+ "futures-util",
1445
+ "http-body-util",
1446
+ "serde",
1447
+ "serde_json",
1448
+ "switchyard-components-v2",
1449
+ "switchyard-core",
1450
+ "switchyard-translation",
1451
+ "tokio",
1452
+ "tower",
1453
+ "tracing",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "switchyard-translation"
1458
+ version = "0.1.0"
1459
+ dependencies = [
1460
+ "pretty_assertions",
1461
+ "serde",
1462
+ "serde_json",
1463
+ "thiserror",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "syn"
1468
+ version = "2.0.117"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1471
+ dependencies = [
1472
+ "proc-macro2",
1473
+ "quote",
1474
+ "unicode-ident",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "sync_wrapper"
1479
+ version = "1.0.2"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1482
+ dependencies = [
1483
+ "futures-core",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "synstructure"
1488
+ version = "0.13.2"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1491
+ dependencies = [
1492
+ "proc-macro2",
1493
+ "quote",
1494
+ "syn",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "target-lexicon"
1499
+ version = "0.13.5"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1502
+
1503
+ [[package]]
1504
+ name = "thiserror"
1505
+ version = "2.0.18"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1508
+ dependencies = [
1509
+ "thiserror-impl",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "thiserror-impl"
1514
+ version = "2.0.18"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1517
+ dependencies = [
1518
+ "proc-macro2",
1519
+ "quote",
1520
+ "syn",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "tinystr"
1525
+ version = "0.8.3"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1528
+ dependencies = [
1529
+ "displaydoc",
1530
+ "zerovec",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "tinyvec"
1535
+ version = "1.11.0"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1538
+ dependencies = [
1539
+ "tinyvec_macros",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "tinyvec_macros"
1544
+ version = "0.1.1"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1547
+
1548
+ [[package]]
1549
+ name = "tokio"
1550
+ version = "1.52.3"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1553
+ dependencies = [
1554
+ "bytes",
1555
+ "libc",
1556
+ "mio",
1557
+ "pin-project-lite",
1558
+ "signal-hook-registry",
1559
+ "socket2",
1560
+ "tokio-macros",
1561
+ "windows-sys 0.61.2",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "tokio-macros"
1566
+ version = "2.7.0"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1569
+ dependencies = [
1570
+ "proc-macro2",
1571
+ "quote",
1572
+ "syn",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "tokio-rustls"
1577
+ version = "0.26.4"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1580
+ dependencies = [
1581
+ "rustls",
1582
+ "tokio",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "tokio-util"
1587
+ version = "0.7.18"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1590
+ dependencies = [
1591
+ "bytes",
1592
+ "futures-core",
1593
+ "futures-sink",
1594
+ "pin-project-lite",
1595
+ "tokio",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "toml"
1600
+ version = "0.8.23"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1603
+ dependencies = [
1604
+ "serde",
1605
+ "serde_spanned",
1606
+ "toml_datetime",
1607
+ "toml_edit",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "toml_datetime"
1612
+ version = "0.6.11"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1615
+ dependencies = [
1616
+ "serde",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "toml_edit"
1621
+ version = "0.22.27"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1624
+ dependencies = [
1625
+ "indexmap",
1626
+ "serde",
1627
+ "serde_spanned",
1628
+ "toml_datetime",
1629
+ "toml_write",
1630
+ "winnow",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "toml_write"
1635
+ version = "0.1.2"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1638
+
1639
+ [[package]]
1640
+ name = "tower"
1641
+ version = "0.5.3"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1644
+ dependencies = [
1645
+ "futures-core",
1646
+ "futures-util",
1647
+ "pin-project-lite",
1648
+ "sync_wrapper",
1649
+ "tokio",
1650
+ "tower-layer",
1651
+ "tower-service",
1652
+ "tracing",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "tower-http"
1657
+ version = "0.6.11"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1660
+ dependencies = [
1661
+ "bitflags",
1662
+ "bytes",
1663
+ "futures-util",
1664
+ "http",
1665
+ "http-body",
1666
+ "pin-project-lite",
1667
+ "tower",
1668
+ "tower-layer",
1669
+ "tower-service",
1670
+ "url",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "tower-layer"
1675
+ version = "0.3.3"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1678
+
1679
+ [[package]]
1680
+ name = "tower-service"
1681
+ version = "0.3.3"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1684
+
1685
+ [[package]]
1686
+ name = "tracing"
1687
+ version = "0.1.44"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1690
+ dependencies = [
1691
+ "log",
1692
+ "pin-project-lite",
1693
+ "tracing-core",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "tracing-core"
1698
+ version = "0.1.36"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1701
+ dependencies = [
1702
+ "once_cell",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "try-lock"
1707
+ version = "0.2.5"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1710
+
1711
+ [[package]]
1712
+ name = "unicode-ident"
1713
+ version = "1.0.24"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1716
+
1717
+ [[package]]
1718
+ name = "untrusted"
1719
+ version = "0.9.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1722
+
1723
+ [[package]]
1724
+ name = "url"
1725
+ version = "2.5.8"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1728
+ dependencies = [
1729
+ "form_urlencoded",
1730
+ "idna",
1731
+ "percent-encoding",
1732
+ "serde",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "utf8_iter"
1737
+ version = "1.0.4"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1740
+
1741
+ [[package]]
1742
+ name = "utf8parse"
1743
+ version = "0.2.2"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1746
+
1747
+ [[package]]
1748
+ name = "want"
1749
+ version = "0.3.1"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1752
+ dependencies = [
1753
+ "try-lock",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "wasi"
1758
+ version = "0.11.1+wasi-snapshot-preview1"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1761
+
1762
+ [[package]]
1763
+ name = "wasip2"
1764
+ version = "1.0.3+wasi-0.2.9"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1767
+ dependencies = [
1768
+ "wit-bindgen",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "wasm-bindgen"
1773
+ version = "0.2.121"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1776
+ dependencies = [
1777
+ "cfg-if",
1778
+ "once_cell",
1779
+ "rustversion",
1780
+ "wasm-bindgen-macro",
1781
+ "wasm-bindgen-shared",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "wasm-bindgen-futures"
1786
+ version = "0.4.71"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
1789
+ dependencies = [
1790
+ "js-sys",
1791
+ "wasm-bindgen",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "wasm-bindgen-macro"
1796
+ version = "0.2.121"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1799
+ dependencies = [
1800
+ "quote",
1801
+ "wasm-bindgen-macro-support",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "wasm-bindgen-macro-support"
1806
+ version = "0.2.121"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1809
+ dependencies = [
1810
+ "bumpalo",
1811
+ "proc-macro2",
1812
+ "quote",
1813
+ "syn",
1814
+ "wasm-bindgen-shared",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "wasm-bindgen-shared"
1819
+ version = "0.2.121"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1822
+ dependencies = [
1823
+ "unicode-ident",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "wasm-streams"
1828
+ version = "0.4.2"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
1831
+ dependencies = [
1832
+ "futures-util",
1833
+ "js-sys",
1834
+ "wasm-bindgen",
1835
+ "wasm-bindgen-futures",
1836
+ "web-sys",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "web-sys"
1841
+ version = "0.3.98"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
1844
+ dependencies = [
1845
+ "js-sys",
1846
+ "wasm-bindgen",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "web-time"
1851
+ version = "1.1.0"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1854
+ dependencies = [
1855
+ "js-sys",
1856
+ "wasm-bindgen",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "windows-link"
1861
+ version = "0.2.1"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1864
+
1865
+ [[package]]
1866
+ name = "windows-sys"
1867
+ version = "0.52.0"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1870
+ dependencies = [
1871
+ "windows-targets 0.52.6",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "windows-sys"
1876
+ version = "0.60.2"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1879
+ dependencies = [
1880
+ "windows-targets 0.53.5",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "windows-sys"
1885
+ version = "0.61.2"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1888
+ dependencies = [
1889
+ "windows-link",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "windows-targets"
1894
+ version = "0.52.6"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1897
+ dependencies = [
1898
+ "windows_aarch64_gnullvm 0.52.6",
1899
+ "windows_aarch64_msvc 0.52.6",
1900
+ "windows_i686_gnu 0.52.6",
1901
+ "windows_i686_gnullvm 0.52.6",
1902
+ "windows_i686_msvc 0.52.6",
1903
+ "windows_x86_64_gnu 0.52.6",
1904
+ "windows_x86_64_gnullvm 0.52.6",
1905
+ "windows_x86_64_msvc 0.52.6",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "windows-targets"
1910
+ version = "0.53.5"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1913
+ dependencies = [
1914
+ "windows-link",
1915
+ "windows_aarch64_gnullvm 0.53.1",
1916
+ "windows_aarch64_msvc 0.53.1",
1917
+ "windows_i686_gnu 0.53.1",
1918
+ "windows_i686_gnullvm 0.53.1",
1919
+ "windows_i686_msvc 0.53.1",
1920
+ "windows_x86_64_gnu 0.53.1",
1921
+ "windows_x86_64_gnullvm 0.53.1",
1922
+ "windows_x86_64_msvc 0.53.1",
1923
+ ]
1924
+
1925
+ [[package]]
1926
+ name = "windows_aarch64_gnullvm"
1927
+ version = "0.52.6"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1930
+
1931
+ [[package]]
1932
+ name = "windows_aarch64_gnullvm"
1933
+ version = "0.53.1"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1936
+
1937
+ [[package]]
1938
+ name = "windows_aarch64_msvc"
1939
+ version = "0.52.6"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1942
+
1943
+ [[package]]
1944
+ name = "windows_aarch64_msvc"
1945
+ version = "0.53.1"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1948
+
1949
+ [[package]]
1950
+ name = "windows_i686_gnu"
1951
+ version = "0.52.6"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1954
+
1955
+ [[package]]
1956
+ name = "windows_i686_gnu"
1957
+ version = "0.53.1"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1960
+
1961
+ [[package]]
1962
+ name = "windows_i686_gnullvm"
1963
+ version = "0.52.6"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1966
+
1967
+ [[package]]
1968
+ name = "windows_i686_gnullvm"
1969
+ version = "0.53.1"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1972
+
1973
+ [[package]]
1974
+ name = "windows_i686_msvc"
1975
+ version = "0.52.6"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1978
+
1979
+ [[package]]
1980
+ name = "windows_i686_msvc"
1981
+ version = "0.53.1"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1984
+
1985
+ [[package]]
1986
+ name = "windows_x86_64_gnu"
1987
+ version = "0.52.6"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1990
+
1991
+ [[package]]
1992
+ name = "windows_x86_64_gnu"
1993
+ version = "0.53.1"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1996
+
1997
+ [[package]]
1998
+ name = "windows_x86_64_gnullvm"
1999
+ version = "0.52.6"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2002
+
2003
+ [[package]]
2004
+ name = "windows_x86_64_gnullvm"
2005
+ version = "0.53.1"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2008
+
2009
+ [[package]]
2010
+ name = "windows_x86_64_msvc"
2011
+ version = "0.52.6"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2014
+
2015
+ [[package]]
2016
+ name = "windows_x86_64_msvc"
2017
+ version = "0.53.1"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2020
+
2021
+ [[package]]
2022
+ name = "winnow"
2023
+ version = "0.7.15"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2026
+ dependencies = [
2027
+ "memchr",
2028
+ ]
2029
+
2030
+ [[package]]
2031
+ name = "wit-bindgen"
2032
+ version = "0.57.1"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2035
+
2036
+ [[package]]
2037
+ name = "writeable"
2038
+ version = "0.6.3"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2041
+
2042
+ [[package]]
2043
+ name = "yaml_serde"
2044
+ version = "0.10.4"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "08c7c1b1a6a7c8a6b2741a6c21a4f8918e51899b111cfa08d1288202656e3975"
2047
+ dependencies = [
2048
+ "indexmap",
2049
+ "itoa",
2050
+ "libyaml-rs",
2051
+ "ryu",
2052
+ "serde",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "yansi"
2057
+ version = "1.0.1"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
2060
+
2061
+ [[package]]
2062
+ name = "yoke"
2063
+ version = "0.8.2"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2066
+ dependencies = [
2067
+ "stable_deref_trait",
2068
+ "yoke-derive",
2069
+ "zerofrom",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "yoke-derive"
2074
+ version = "0.8.2"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2077
+ dependencies = [
2078
+ "proc-macro2",
2079
+ "quote",
2080
+ "syn",
2081
+ "synstructure",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "zerocopy"
2086
+ version = "0.8.48"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2089
+ dependencies = [
2090
+ "zerocopy-derive",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "zerocopy-derive"
2095
+ version = "0.8.48"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2098
+ dependencies = [
2099
+ "proc-macro2",
2100
+ "quote",
2101
+ "syn",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "zerofrom"
2106
+ version = "0.1.8"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2109
+ dependencies = [
2110
+ "zerofrom-derive",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "zerofrom-derive"
2115
+ version = "0.1.7"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2118
+ dependencies = [
2119
+ "proc-macro2",
2120
+ "quote",
2121
+ "syn",
2122
+ "synstructure",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "zeroize"
2127
+ version = "1.8.2"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2130
+
2131
+ [[package]]
2132
+ name = "zerotrie"
2133
+ version = "0.2.4"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2136
+ dependencies = [
2137
+ "displaydoc",
2138
+ "yoke",
2139
+ "zerofrom",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "zerovec"
2144
+ version = "0.11.6"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2147
+ dependencies = [
2148
+ "yoke",
2149
+ "zerofrom",
2150
+ "zerovec-derive",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "zerovec-derive"
2155
+ version = "0.11.3"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2158
+ dependencies = [
2159
+ "proc-macro2",
2160
+ "quote",
2161
+ "syn",
2162
+ ]
2163
+
2164
+ [[package]]
2165
+ name = "zmij"
2166
+ version = "1.0.21"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"