cocoindex 0.1.62__tar.gz → 0.1.64__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 (268) hide show
  1. {cocoindex-0.1.62 → cocoindex-0.1.64}/Cargo.lock +499 -510
  2. {cocoindex-0.1.62 → cocoindex-0.1.64}/Cargo.toml +3 -1
  3. {cocoindex-0.1.62 → cocoindex-0.1.64}/PKG-INFO +2 -1
  4. {cocoindex-0.1.62 → cocoindex-0.1.64}/README.md +1 -0
  5. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/flow_def.mdx +37 -0
  6. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/settings.mdx +13 -1
  7. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/amazon_s3_embedding/pyproject.toml +1 -1
  8. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/code_embedding/pyproject.toml +1 -1
  9. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/docs_to_knowledge_graph/pyproject.toml +1 -1
  10. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/requirements.txt +1 -1
  11. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/gdrive_text_embedding/pyproject.toml +1 -1
  12. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/README.md +11 -1
  13. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/main.py +41 -6
  14. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/pyproject.toml +1 -1
  15. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/pyproject.toml +1 -1
  16. cocoindex-0.1.64/examples/paper_metadata/.gitignore +1 -0
  17. cocoindex-0.1.64/examples/paper_metadata/README.md +60 -0
  18. cocoindex-0.1.64/examples/paper_metadata/main.py +184 -0
  19. cocoindex-0.1.64/examples/paper_metadata/papers/2502.06786v3.pdf +0 -0
  20. cocoindex-0.1.64/examples/paper_metadata/papers/2502.20346v1.pdf +0 -0
  21. cocoindex-0.1.64/examples/paper_metadata/pyproject.toml +13 -0
  22. cocoindex-0.1.64/examples/patient_intake_extraction/.env.example +4 -0
  23. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/pyproject.toml +1 -1
  24. cocoindex-0.1.64/examples/pdf_embedding/pdf_files/1706.03762v7.pdf +0 -0
  25. cocoindex-0.1.64/examples/pdf_embedding/pdf_files/1810.04805v2.pdf +0 -0
  26. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/pdf_embedding/pyproject.toml +1 -1
  27. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/pyproject.toml +1 -1
  28. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/pyproject.toml +1 -1
  29. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding_qdrant/pyproject.toml +1 -1
  30. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/cli.py +31 -11
  31. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/convert.py +10 -3
  32. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/flow.py +36 -7
  33. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/setting.py +39 -2
  34. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/tests/test_convert.py +135 -11
  35. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/typing.py +4 -4
  36. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/base/spec.rs +8 -1
  37. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/base/value.rs +339 -0
  38. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/builder/analyzer.rs +31 -4
  39. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/builder/flow_builder.rs +60 -46
  40. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/builder/plan.rs +3 -1
  41. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/dumper.rs +4 -0
  42. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/evaluator.rs +29 -0
  43. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/live_updater.rs +5 -0
  44. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/source_indexer.rs +70 -57
  45. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/lib_context.rs +5 -19
  46. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/anthropic.rs +26 -2
  47. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/gemini.rs +21 -3
  48. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/mod.rs +12 -0
  49. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/ollama.rs +5 -0
  50. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/openai.rs +31 -7
  51. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/functions/extract_by_llm.rs +43 -17
  52. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/prelude.rs +1 -1
  53. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/settings.rs +9 -1
  54. cocoindex-0.1.64/src/utils/concur_control.rs +109 -0
  55. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/utils/mod.rs +1 -3
  56. cocoindex-0.1.62/examples/image_search/requirements.txt +0 -5
  57. cocoindex-0.1.62/src/utils/concur_control.rs +0 -30
  58. {cocoindex-0.1.62 → cocoindex-0.1.64}/.cargo/config.toml +0 -0
  59. {cocoindex-0.1.62 → cocoindex-0.1.64}/.env.lib_debug +0 -0
  60. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/ISSUE_TEMPLATE//360/237/220/233-bug-report.md" +0 -0
  61. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/ISSUE_TEMPLATE//360/237/222/241-feature-request.md" +0 -0
  62. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/scripts/update_version.sh +0 -0
  63. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/workflows/CI.yml +0 -0
  64. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/workflows/_doc_release.yml +0 -0
  65. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/workflows/_test.yml +0 -0
  66. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/workflows/docs.yml +0 -0
  67. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/workflows/format.yml +0 -0
  68. {cocoindex-0.1.62 → cocoindex-0.1.64}/.github/workflows/release.yml +0 -0
  69. {cocoindex-0.1.62 → cocoindex-0.1.64}/.gitignore +0 -0
  70. {cocoindex-0.1.62 → cocoindex-0.1.64}/.pre-commit-config.yaml +0 -0
  71. {cocoindex-0.1.62 → cocoindex-0.1.64}/CODE_OF_CONDUCT.md +0 -0
  72. {cocoindex-0.1.62 → cocoindex-0.1.64}/CONTRIBUTING.md +0 -0
  73. {cocoindex-0.1.62 → cocoindex-0.1.64}/LICENSE +0 -0
  74. {cocoindex-0.1.62 → cocoindex-0.1.64}/dev/neo4j.yaml +0 -0
  75. {cocoindex-0.1.62 → cocoindex-0.1.64}/dev/postgres.yaml +0 -0
  76. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/.gitignore +0 -0
  77. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/README.md +0 -0
  78. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/about/community.md +0 -0
  79. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/about/contributing.md +0 -0
  80. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/ai/llm.mdx +0 -0
  81. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/basics.md +0 -0
  82. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/cli.mdx +0 -0
  83. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/custom_function.mdx +0 -0
  84. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/data_example.svg +0 -0
  85. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/data_types.mdx +0 -0
  86. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/flow_example.svg +0 -0
  87. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/core/flow_methods.mdx +0 -0
  88. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/getting_started/installation.md +0 -0
  89. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/getting_started/markdown_files.zip +0 -0
  90. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/getting_started/overview.md +0 -0
  91. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/getting_started/quickstart.md +0 -0
  92. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/ops/functions.md +0 -0
  93. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/ops/sources.md +0 -0
  94. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/ops/targets.md +0 -0
  95. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docs/query.mdx +0 -0
  96. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/docusaurus.config.ts +0 -0
  97. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/package.json +0 -0
  98. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/sidebars.ts +0 -0
  99. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/src/components/HomepageFeatures/index.tsx +0 -0
  100. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/src/components/HomepageFeatures/styles.module.css +0 -0
  101. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/src/css/custom.css +0 -0
  102. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/src/theme/Root.js +0 -0
  103. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/static/.nojekyll +0 -0
  104. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/static/img/docusaurus.png +0 -0
  105. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/static/img/favicon.ico +0 -0
  106. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/static/img/icon.svg +0 -0
  107. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/static/img/incremental-etl.gif +0 -0
  108. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/static/robots.txt +0 -0
  109. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/tsconfig.json +0 -0
  110. {cocoindex-0.1.62 → cocoindex-0.1.64}/docs/yarn.lock +0 -0
  111. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/amazon_s3_embedding/.env.example +0 -0
  112. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/amazon_s3_embedding/.gitignore +0 -0
  113. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/amazon_s3_embedding/README.md +0 -0
  114. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/amazon_s3_embedding/main.py +0 -0
  115. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/code_embedding/.env +0 -0
  116. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/code_embedding/README.md +0 -0
  117. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/code_embedding/main.py +0 -0
  118. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/docs_to_knowledge_graph/.env +0 -0
  119. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/docs_to_knowledge_graph/README.md +0 -0
  120. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/docs_to_knowledge_graph/main.py +0 -0
  121. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/.dockerignore +0 -0
  122. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/.env +0 -0
  123. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/README.md +0 -0
  124. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/compose.yaml +0 -0
  125. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/dockerfile +0 -0
  126. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/files/1810.04805v2.md +0 -0
  127. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/fastapi_server_docker/main.py +0 -0
  128. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/gdrive_text_embedding/.env.example +0 -0
  129. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/gdrive_text_embedding/.gitignore +0 -0
  130. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/gdrive_text_embedding/README.md +0 -0
  131. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/gdrive_text_embedding/main.py +0 -0
  132. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/.env +0 -0
  133. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/.gitignore +0 -0
  134. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/index.html +0 -0
  135. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/package-lock.json +0 -0
  136. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/package.json +0 -0
  137. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/src/App.jsx +0 -0
  138. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/src/main.jsx +0 -0
  139. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/src/style.css +0 -0
  140. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/frontend/vite.config.js +0 -0
  141. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/img/cat1.jpeg +0 -0
  142. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/img/dog1.jpeg +0 -0
  143. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/img/elephant1.jpg +0 -0
  144. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/image_search/img/giraffe.jpg +0 -0
  145. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/.env +0 -0
  146. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/README.md +0 -0
  147. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/main.py +0 -0
  148. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/manuals/array.pdf +0 -0
  149. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/manuals/base64.pdf +0 -0
  150. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/manuals/copy.pdf +0 -0
  151. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/manuals_llm_extraction/manuals/glob.pdf +0 -0
  152. {cocoindex-0.1.62/examples/patient_intake_extraction → cocoindex-0.1.64/examples/paper_metadata}/.env.example +0 -0
  153. {cocoindex-0.1.62/examples/pdf_embedding/pdf_files → cocoindex-0.1.64/examples/paper_metadata/papers}/1706.03762v7.pdf +0 -0
  154. {cocoindex-0.1.62/examples/pdf_embedding/pdf_files → cocoindex-0.1.64/examples/paper_metadata/papers}/1810.04805v2.pdf +0 -0
  155. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/README.md +0 -0
  156. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/data/README.md +0 -0
  157. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_David_Artificial.docx +0 -0
  158. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Emily_Artificial.pdf +0 -0
  159. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Joe_Artificial.pdf +0 -0
  160. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_From_Jane_Artificial.docx +0 -0
  161. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/patient_intake_extraction/main.py +0 -0
  162. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/pdf_embedding/.env +0 -0
  163. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/pdf_embedding/README.md +0 -0
  164. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/pdf_embedding/main.py +0 -0
  165. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/pdf_embedding/pdf_files/rfc8259.pdf +0 -0
  166. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/.env +0 -0
  167. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/README.md +0 -0
  168. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/img/cocoinsight.png +0 -0
  169. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/img/neo4j.png +0 -0
  170. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/main.py +0 -0
  171. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p1.json +0 -0
  172. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p2.json +0 -0
  173. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p3.json +0 -0
  174. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p4.json +0 -0
  175. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p5.json +0 -0
  176. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p6.json +0 -0
  177. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p7.json +0 -0
  178. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p8.json +0 -0
  179. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/product_recommendation/products/p9.json +0 -0
  180. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/.env +0 -0
  181. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/README.md +0 -0
  182. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/Text_Embedding.ipynb +0 -0
  183. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/main.py +0 -0
  184. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/markdown_files/1706.03762v7.md +0 -0
  185. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/markdown_files/1810.04805v2.md +0 -0
  186. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding/markdown_files/rfc8259.md +0 -0
  187. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding_qdrant/.env +0 -0
  188. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding_qdrant/README.md +0 -0
  189. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding_qdrant/main.py +0 -0
  190. {cocoindex-0.1.62 → cocoindex-0.1.64}/examples/text_embedding_qdrant/markdown_files/rfc8259.md +0 -0
  191. {cocoindex-0.1.62 → cocoindex-0.1.64}/pyproject.toml +0 -0
  192. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/__init__.py +0 -0
  193. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/auth_registry.py +0 -0
  194. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/functions.py +0 -0
  195. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/index.py +0 -0
  196. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/lib.py +0 -0
  197. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/llm.py +0 -0
  198. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/op.py +0 -0
  199. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/py.typed +0 -0
  200. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/runtime.py +0 -0
  201. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/setup.py +0 -0
  202. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/sources.py +0 -0
  203. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/targets.py +0 -0
  204. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/tests/__init__.py +0 -0
  205. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/tests/test_optional_database.py +0 -0
  206. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/tests/test_typing.py +0 -0
  207. {cocoindex-0.1.62 → cocoindex-0.1.64}/python/cocoindex/utils.py +0 -0
  208. {cocoindex-0.1.62 → cocoindex-0.1.64}/ruff.toml +0 -0
  209. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/base/duration.rs +0 -0
  210. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/base/field_attrs.rs +0 -0
  211. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/base/json_schema.rs +0 -0
  212. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/base/mod.rs +0 -0
  213. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/base/schema.rs +0 -0
  214. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/builder/analyzed_flow.rs +0 -0
  215. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/builder/exec_ctx.rs +0 -0
  216. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/builder/mod.rs +0 -0
  217. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/db_tracking.rs +0 -0
  218. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/db_tracking_setup.rs +0 -0
  219. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/indexing_status.rs +0 -0
  220. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/memoization.rs +0 -0
  221. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/mod.rs +0 -0
  222. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/row_indexer.rs +0 -0
  223. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/execution/stats.rs +0 -0
  224. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/lib.rs +0 -0
  225. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/litellm.rs +0 -0
  226. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/openrouter.rs +0 -0
  227. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/vllm.rs +0 -0
  228. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/llm/voyage.rs +0 -0
  229. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/factory_bases.rs +0 -0
  230. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/functions/embed_text.rs +0 -0
  231. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/functions/mod.rs +0 -0
  232. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/functions/parse_json.rs +0 -0
  233. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/functions/split_recursively.rs +0 -0
  234. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/interface.rs +0 -0
  235. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/mod.rs +0 -0
  236. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/py_factory.rs +0 -0
  237. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/registration.rs +0 -0
  238. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/registry.rs +0 -0
  239. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/sdk.rs +0 -0
  240. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/sources/amazon_s3.rs +0 -0
  241. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/sources/google_drive.rs +0 -0
  242. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/sources/local_file.rs +0 -0
  243. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/sources/mod.rs +0 -0
  244. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/kuzu.rs +0 -0
  245. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/mod.rs +0 -0
  246. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/neo4j.rs +0 -0
  247. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/postgres.rs +0 -0
  248. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/qdrant.rs +0 -0
  249. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/shared/mod.rs +0 -0
  250. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/shared/property_graph.rs +0 -0
  251. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/ops/targets/shared/table_columns.rs +0 -0
  252. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/py/convert.rs +0 -0
  253. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/py/mod.rs +0 -0
  254. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/server.rs +0 -0
  255. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/service/error.rs +0 -0
  256. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/service/flows.rs +0 -0
  257. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/service/mod.rs +0 -0
  258. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/setup/auth_registry.rs +0 -0
  259. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/setup/components.rs +0 -0
  260. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/setup/db_metadata.rs +0 -0
  261. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/setup/driver.rs +0 -0
  262. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/setup/mod.rs +0 -0
  263. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/setup/states.rs +0 -0
  264. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/utils/db.rs +0 -0
  265. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/utils/fingerprint.rs +0 -0
  266. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/utils/immutable.rs +0 -0
  267. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/utils/retryable.rs +0 -0
  268. {cocoindex-0.1.62 → cocoindex-0.1.64}/src/utils/yaml_ser.rs +0 -0
@@ -13,20 +13,20 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "adler2"
16
- version = "2.0.0"
16
+ version = "2.0.1"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
19
 
20
20
  [[package]]
21
21
  name = "ahash"
22
- version = "0.8.11"
22
+ version = "0.8.12"
23
23
  source = "registry+https://github.com/rust-lang/crates.io-index"
24
- checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
25
  dependencies = [
26
26
  "cfg-if",
27
27
  "once_cell",
28
28
  "version_check",
29
- "zerocopy 0.7.35",
29
+ "zerocopy",
30
30
  ]
31
31
 
32
32
  [[package]]
@@ -61,9 +61,9 @@ dependencies = [
61
61
 
62
62
  [[package]]
63
63
  name = "anstream"
64
- version = "0.6.18"
64
+ version = "0.6.19"
65
65
  source = "registry+https://github.com/rust-lang/crates.io-index"
66
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
66
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
67
67
  dependencies = [
68
68
  "anstyle",
69
69
  "anstyle-parse",
@@ -76,36 +76,36 @@ dependencies = [
76
76
 
77
77
  [[package]]
78
78
  name = "anstyle"
79
- version = "1.0.10"
79
+ version = "1.0.11"
80
80
  source = "registry+https://github.com/rust-lang/crates.io-index"
81
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
81
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
82
82
 
83
83
  [[package]]
84
84
  name = "anstyle-parse"
85
- version = "0.2.6"
85
+ version = "0.2.7"
86
86
  source = "registry+https://github.com/rust-lang/crates.io-index"
87
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
87
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
88
88
  dependencies = [
89
89
  "utf8parse",
90
90
  ]
91
91
 
92
92
  [[package]]
93
93
  name = "anstyle-query"
94
- version = "1.1.2"
94
+ version = "1.1.3"
95
95
  source = "registry+https://github.com/rust-lang/crates.io-index"
96
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
96
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
97
97
  dependencies = [
98
98
  "windows-sys 0.59.0",
99
99
  ]
100
100
 
101
101
  [[package]]
102
102
  name = "anstyle-wincon"
103
- version = "3.0.7"
103
+ version = "3.0.9"
104
104
  source = "registry+https://github.com/rust-lang/crates.io-index"
105
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
105
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
106
106
  dependencies = [
107
107
  "anstyle",
108
- "once_cell",
108
+ "once_cell_polyfill",
109
109
  "windows-sys 0.59.0",
110
110
  ]
111
111
 
@@ -123,9 +123,9 @@ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
123
123
 
124
124
  [[package]]
125
125
  name = "async-openai"
126
- version = "0.28.1"
126
+ version = "0.28.3"
127
127
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
- checksum = "14d76e2f5af19477d6254415acc95ba97c6cc6f3b1e3cb4676b7f0fab8194298"
128
+ checksum = "4df839a6643e1e3248733b01f229dc4f462d7256f808bbaf04cac40739b345c2"
129
129
  dependencies = [
130
130
  "async-openai-macros",
131
131
  "backoff",
@@ -155,7 +155,7 @@ checksum = "0289cba6d5143bfe8251d57b4a8cac036adf158525a76533a7082ba65ec76398"
155
155
  dependencies = [
156
156
  "proc-macro2",
157
157
  "quote",
158
- "syn 2.0.101",
158
+ "syn 2.0.104",
159
159
  ]
160
160
 
161
161
  [[package]]
@@ -177,7 +177,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
177
177
  dependencies = [
178
178
  "proc-macro2",
179
179
  "quote",
180
- "syn 2.0.101",
180
+ "syn 2.0.104",
181
181
  ]
182
182
 
183
183
  [[package]]
@@ -188,7 +188,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
188
188
  dependencies = [
189
189
  "proc-macro2",
190
190
  "quote",
191
- "syn 2.0.101",
191
+ "syn 2.0.104",
192
192
  ]
193
193
 
194
194
  [[package]]
@@ -208,15 +208,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
208
208
 
209
209
  [[package]]
210
210
  name = "autocfg"
211
- version = "1.4.0"
211
+ version = "1.5.0"
212
212
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
213
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
214
214
 
215
215
  [[package]]
216
216
  name = "aws-config"
217
- version = "1.6.2"
217
+ version = "1.8.0"
218
218
  source = "registry+https://github.com/rust-lang/crates.io-index"
219
- checksum = "b6fcc63c9860579e4cb396239570e979376e70aab79e496621748a09913f8b36"
219
+ checksum = "455e9fb7743c6f6267eb2830ccc08686fbb3d13c9a689369562fd4d4ef9ea462"
220
220
  dependencies = [
221
221
  "aws-credential-types",
222
222
  "aws-runtime",
@@ -256,9 +256,9 @@ dependencies = [
256
256
 
257
257
  [[package]]
258
258
  name = "aws-lc-rs"
259
- version = "1.13.0"
259
+ version = "1.13.1"
260
260
  source = "registry+https://github.com/rust-lang/crates.io-index"
261
- checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
261
+ checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7"
262
262
  dependencies = [
263
263
  "aws-lc-sys",
264
264
  "zeroize",
@@ -266,9 +266,9 @@ dependencies = [
266
266
 
267
267
  [[package]]
268
268
  name = "aws-lc-sys"
269
- version = "0.28.2"
269
+ version = "0.29.0"
270
270
  source = "registry+https://github.com/rust-lang/crates.io-index"
271
- checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
271
+ checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079"
272
272
  dependencies = [
273
273
  "bindgen",
274
274
  "cc",
@@ -279,9 +279,9 @@ dependencies = [
279
279
 
280
280
  [[package]]
281
281
  name = "aws-runtime"
282
- version = "1.5.7"
282
+ version = "1.5.8"
283
283
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
- checksum = "6c4063282c69991e57faab9e5cb21ae557e59f5b0fb285c196335243df8dc25c"
284
+ checksum = "4f6c68419d8ba16d9a7463671593c54f81ba58cab466e9b759418da606dcc2e2"
285
285
  dependencies = [
286
286
  "aws-credential-types",
287
287
  "aws-sigv4",
@@ -304,9 +304,9 @@ dependencies = [
304
304
 
305
305
  [[package]]
306
306
  name = "aws-sdk-s3"
307
- version = "1.85.0"
307
+ version = "1.93.0"
308
308
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "d5c82dae9304e7ced2ff6cca43dceb2d6de534c95a506ff0f168a7463c9a885d"
309
+ checksum = "16b9734dc8145b417a3c22eae8769a2879851690982dba718bdc52bd28ad04ce"
310
310
  dependencies = [
311
311
  "aws-credential-types",
312
312
  "aws-runtime",
@@ -329,7 +329,6 @@ dependencies = [
329
329
  "http 1.3.1",
330
330
  "http-body 0.4.6",
331
331
  "lru",
332
- "once_cell",
333
332
  "percent-encoding",
334
333
  "regex-lite",
335
334
  "sha2",
@@ -339,9 +338,9 @@ dependencies = [
339
338
 
340
339
  [[package]]
341
340
  name = "aws-sdk-sqs"
342
- version = "1.67.0"
341
+ version = "1.73.0"
343
342
  source = "registry+https://github.com/rust-lang/crates.io-index"
344
- checksum = "c6f15bedfb1c4385fccc474f0fe46dffb0335d0b3d6b4413df06fb30d90caba8"
343
+ checksum = "8f3d3cf0d52a50e0ac3fada7e0db27a2172b986f833d061def1df78c7dbe80ae"
345
344
  dependencies = [
346
345
  "aws-credential-types",
347
346
  "aws-runtime",
@@ -355,16 +354,15 @@ dependencies = [
355
354
  "bytes",
356
355
  "fastrand",
357
356
  "http 0.2.12",
358
- "once_cell",
359
357
  "regex-lite",
360
358
  "tracing",
361
359
  ]
362
360
 
363
361
  [[package]]
364
362
  name = "aws-sdk-sso"
365
- version = "1.67.0"
363
+ version = "1.73.0"
366
364
  source = "registry+https://github.com/rust-lang/crates.io-index"
367
- checksum = "0d4863da26489d1e6da91d7e12b10c17e86c14f94c53f416bd10e0a9c34057ba"
365
+ checksum = "b2ac1674cba7872061a29baaf02209fefe499ff034dfd91bd4cc59e4d7741489"
368
366
  dependencies = [
369
367
  "aws-credential-types",
370
368
  "aws-runtime",
@@ -378,16 +376,15 @@ dependencies = [
378
376
  "bytes",
379
377
  "fastrand",
380
378
  "http 0.2.12",
381
- "once_cell",
382
379
  "regex-lite",
383
380
  "tracing",
384
381
  ]
385
382
 
386
383
  [[package]]
387
384
  name = "aws-sdk-ssooidc"
388
- version = "1.68.0"
385
+ version = "1.74.0"
389
386
  source = "registry+https://github.com/rust-lang/crates.io-index"
390
- checksum = "95caa3998d7237789b57b95a8e031f60537adab21fa84c91e35bef9455c652e4"
387
+ checksum = "3a6a22f077f5fd3e3c0270d4e1a110346cddf6769e9433eb9e6daceb4ca3b149"
391
388
  dependencies = [
392
389
  "aws-credential-types",
393
390
  "aws-runtime",
@@ -401,16 +398,15 @@ dependencies = [
401
398
  "bytes",
402
399
  "fastrand",
403
400
  "http 0.2.12",
404
- "once_cell",
405
401
  "regex-lite",
406
402
  "tracing",
407
403
  ]
408
404
 
409
405
  [[package]]
410
406
  name = "aws-sdk-sts"
411
- version = "1.68.0"
407
+ version = "1.75.0"
412
408
  source = "registry+https://github.com/rust-lang/crates.io-index"
413
- checksum = "4939f6f449a37308a78c5a910fd91265479bd2bb11d186f0b8fc114d89ec828d"
409
+ checksum = "e3258fa707f2f585ee3049d9550954b959002abd59176975150a01d5cf38ae3f"
414
410
  dependencies = [
415
411
  "aws-credential-types",
416
412
  "aws-runtime",
@@ -425,16 +421,15 @@ dependencies = [
425
421
  "aws-types",
426
422
  "fastrand",
427
423
  "http 0.2.12",
428
- "once_cell",
429
424
  "regex-lite",
430
425
  "tracing",
431
426
  ]
432
427
 
433
428
  [[package]]
434
429
  name = "aws-sigv4"
435
- version = "1.3.1"
430
+ version = "1.3.3"
436
431
  source = "registry+https://github.com/rust-lang/crates.io-index"
437
- checksum = "3503af839bd8751d0bdc5a46b9cac93a003a353e635b0c12cf2376b5b53e41ea"
432
+ checksum = "ddfb9021f581b71870a17eac25b52335b82211cdc092e02b6876b2bcefa61666"
438
433
  dependencies = [
439
434
  "aws-credential-types",
440
435
  "aws-smithy-eventstream",
@@ -471,16 +466,14 @@ dependencies = [
471
466
 
472
467
  [[package]]
473
468
  name = "aws-smithy-checksums"
474
- version = "0.63.1"
469
+ version = "0.63.3"
475
470
  source = "registry+https://github.com/rust-lang/crates.io-index"
476
- checksum = "b65d21e1ba6f2cdec92044f904356a19f5ad86961acf015741106cdfafd747c0"
471
+ checksum = "d2f77a921dbd2c78ebe70726799787c1d110a2245dd65e39b20923dfdfb2deee"
477
472
  dependencies = [
478
473
  "aws-smithy-http",
479
474
  "aws-smithy-types",
480
475
  "bytes",
481
- "crc32c",
482
- "crc32fast",
483
- "crc64fast-nvme",
476
+ "crc-fast",
484
477
  "hex",
485
478
  "http 0.2.12",
486
479
  "http-body 0.4.6",
@@ -493,9 +486,9 @@ dependencies = [
493
486
 
494
487
  [[package]]
495
488
  name = "aws-smithy-eventstream"
496
- version = "0.60.8"
489
+ version = "0.60.9"
497
490
  source = "registry+https://github.com/rust-lang/crates.io-index"
498
- checksum = "7c45d3dddac16c5c59d553ece225a88870cf81b7b813c9cc17b78cf4685eac7a"
491
+ checksum = "338a3642c399c0a5d157648426110e199ca7fd1c689cc395676b81aa563700c4"
499
492
  dependencies = [
500
493
  "aws-smithy-types",
501
494
  "bytes",
@@ -525,25 +518,26 @@ dependencies = [
525
518
 
526
519
  [[package]]
527
520
  name = "aws-smithy-http-client"
528
- version = "1.0.2"
521
+ version = "1.0.5"
529
522
  source = "registry+https://github.com/rust-lang/crates.io-index"
530
- checksum = "7e44697a9bded898dcd0b1cb997430d949b87f4f8940d91023ae9062bf218250"
523
+ checksum = "7f491388e741b7ca73b24130ff464c1478acc34d5b331b7dd0a2ee4643595a15"
531
524
  dependencies = [
532
525
  "aws-smithy-async",
533
526
  "aws-smithy-runtime-api",
534
527
  "aws-smithy-types",
535
- "h2 0.4.9",
528
+ "h2 0.3.26",
529
+ "h2 0.4.10",
536
530
  "http 0.2.12",
537
531
  "http 1.3.1",
538
532
  "http-body 0.4.6",
539
533
  "hyper 0.14.32",
540
534
  "hyper 1.6.0",
541
535
  "hyper-rustls 0.24.2",
542
- "hyper-rustls 0.27.5",
536
+ "hyper-rustls 0.27.7",
543
537
  "hyper-util",
544
538
  "pin-project-lite",
545
539
  "rustls 0.21.12",
546
- "rustls 0.23.26",
540
+ "rustls 0.23.28",
547
541
  "rustls-native-certs 0.8.1",
548
542
  "rustls-pki-types",
549
543
  "tokio",
@@ -553,9 +547,9 @@ dependencies = [
553
547
 
554
548
  [[package]]
555
549
  name = "aws-smithy-json"
556
- version = "0.61.3"
550
+ version = "0.61.4"
557
551
  source = "registry+https://github.com/rust-lang/crates.io-index"
558
- checksum = "92144e45819cae7dc62af23eac5a038a58aa544432d2102609654376a900bd07"
552
+ checksum = "a16e040799d29c17412943bdbf488fd75db04112d0c0d4b9290bacf5ae0014b9"
559
553
  dependencies = [
560
554
  "aws-smithy-types",
561
555
  ]
@@ -605,9 +599,9 @@ dependencies = [
605
599
 
606
600
  [[package]]
607
601
  name = "aws-smithy-runtime-api"
608
- version = "1.8.0"
602
+ version = "1.8.1"
609
603
  source = "registry+https://github.com/rust-lang/crates.io-index"
610
- checksum = "a1e5d9e3a80a18afa109391fb5ad09c3daf887b516c6fd805a157c6ea7994a57"
604
+ checksum = "bd8531b6d8882fd8f48f82a9754e682e29dd44cff27154af51fa3eb730f59efb"
611
605
  dependencies = [
612
606
  "aws-smithy-async",
613
607
  "aws-smithy-types",
@@ -622,9 +616,9 @@ dependencies = [
622
616
 
623
617
  [[package]]
624
618
  name = "aws-smithy-types"
625
- version = "1.3.1"
619
+ version = "1.3.2"
626
620
  source = "registry+https://github.com/rust-lang/crates.io-index"
627
- checksum = "40076bd09fadbc12d5e026ae080d0930defa606856186e31d83ccc6a255eeaf3"
621
+ checksum = "d498595448e43de7f4296b7b7a18a8a02c61ec9349128c80a368f7c3b4ab11a8"
628
622
  dependencies = [
629
623
  "base64-simd",
630
624
  "bytes",
@@ -648,9 +642,9 @@ dependencies = [
648
642
 
649
643
  [[package]]
650
644
  name = "aws-smithy-xml"
651
- version = "0.60.9"
645
+ version = "0.60.10"
652
646
  source = "registry+https://github.com/rust-lang/crates.io-index"
653
- checksum = "ab0b0166827aa700d3dc519f72f8b3a91c35d0b8d042dc5d643a91e6f80648fc"
647
+ checksum = "3db87b96cb1b16c024980f133968d52882ca0daaee3a086c6decc500f6c99728"
654
648
  dependencies = [
655
649
  "xmlparser",
656
650
  ]
@@ -811,9 +805,9 @@ dependencies = [
811
805
 
812
806
  [[package]]
813
807
  name = "backtrace"
814
- version = "0.3.74"
808
+ version = "0.3.75"
815
809
  source = "registry+https://github.com/rust-lang/crates.io-index"
816
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
810
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
817
811
  dependencies = [
818
812
  "addr2line",
819
813
  "cfg-if",
@@ -854,9 +848,9 @@ dependencies = [
854
848
 
855
849
  [[package]]
856
850
  name = "base64ct"
857
- version = "1.7.3"
851
+ version = "1.8.0"
858
852
  source = "registry+https://github.com/rust-lang/crates.io-index"
859
- checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
853
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
860
854
 
861
855
  [[package]]
862
856
  name = "bindgen"
@@ -877,15 +871,15 @@ dependencies = [
877
871
  "regex",
878
872
  "rustc-hash 1.1.0",
879
873
  "shlex",
880
- "syn 2.0.101",
874
+ "syn 2.0.104",
881
875
  "which",
882
876
  ]
883
877
 
884
878
  [[package]]
885
879
  name = "bitflags"
886
- version = "2.9.0"
880
+ version = "2.9.1"
887
881
  source = "registry+https://github.com/rust-lang/crates.io-index"
888
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
882
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
889
883
  dependencies = [
890
884
  "serde",
891
885
  ]
@@ -920,9 +914,9 @@ dependencies = [
920
914
 
921
915
  [[package]]
922
916
  name = "bumpalo"
923
- version = "3.17.0"
917
+ version = "3.18.1"
924
918
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
919
+ checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
926
920
 
927
921
  [[package]]
928
922
  name = "byteorder"
@@ -951,9 +945,9 @@ dependencies = [
951
945
 
952
946
  [[package]]
953
947
  name = "cc"
954
- version = "1.2.20"
948
+ version = "1.2.27"
955
949
  source = "registry+https://github.com/rust-lang/crates.io-index"
956
- checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
950
+ checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
957
951
  dependencies = [
958
952
  "jobserver",
959
953
  "libc",
@@ -969,11 +963,22 @@ dependencies = [
969
963
  "nom",
970
964
  ]
971
965
 
966
+ [[package]]
967
+ name = "cfb"
968
+ version = "0.7.3"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
971
+ dependencies = [
972
+ "byteorder",
973
+ "fnv",
974
+ "uuid",
975
+ ]
976
+
972
977
  [[package]]
973
978
  name = "cfg-if"
974
- version = "1.0.0"
979
+ version = "1.0.1"
975
980
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
981
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
977
982
 
978
983
  [[package]]
979
984
  name = "cfg_aliases"
@@ -983,9 +988,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
983
988
 
984
989
  [[package]]
985
990
  name = "chrono"
986
- version = "0.4.40"
991
+ version = "0.4.41"
987
992
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
- checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
993
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
989
994
  dependencies = [
990
995
  "android-tzdata",
991
996
  "iana-time-zone",
@@ -1040,7 +1045,7 @@ dependencies = [
1040
1045
 
1041
1046
  [[package]]
1042
1047
  name = "cocoindex"
1043
- version = "0.1.62"
1048
+ version = "0.1.64"
1044
1049
  dependencies = [
1045
1050
  "anyhow",
1046
1051
  "async-openai",
@@ -1064,11 +1069,12 @@ dependencies = [
1064
1069
  "google-drive3",
1065
1070
  "hex",
1066
1071
  "http-body-util",
1067
- "hyper-rustls 0.27.5",
1072
+ "hyper-rustls 0.27.7",
1068
1073
  "hyper-util",
1069
1074
  "indenter",
1070
1075
  "indexmap 2.9.0",
1071
1076
  "indoc",
1077
+ "infer",
1072
1078
  "itertools 0.14.0",
1073
1079
  "json5",
1074
1080
  "log",
@@ -1084,10 +1090,11 @@ dependencies = [
1084
1090
  "rand 0.9.1",
1085
1091
  "regex",
1086
1092
  "reqwest",
1087
- "rustls 0.23.26",
1088
- "schemars",
1093
+ "rustls 0.23.28",
1094
+ "schemars 0.8.22",
1089
1095
  "serde",
1090
1096
  "serde_json",
1097
+ "serde_with",
1091
1098
  "sqlx",
1092
1099
  "tokio",
1093
1100
  "tokio-stream",
@@ -1122,15 +1129,15 @@ dependencies = [
1122
1129
  "unicase",
1123
1130
  "urlencoding",
1124
1131
  "uuid",
1125
- "yaml-rust2 0.10.1",
1132
+ "yaml-rust2 0.10.3",
1126
1133
  "yup-oauth2 12.1.0",
1127
1134
  ]
1128
1135
 
1129
1136
  [[package]]
1130
1137
  name = "colorchoice"
1131
- version = "1.0.3"
1138
+ version = "1.0.4"
1132
1139
  source = "registry+https://github.com/rust-lang/crates.io-index"
1133
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
1140
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
1134
1141
 
1135
1142
  [[package]]
1136
1143
  name = "concurrent-queue"
@@ -1227,9 +1234,9 @@ dependencies = [
1227
1234
 
1228
1235
  [[package]]
1229
1236
  name = "core-foundation"
1230
- version = "0.10.0"
1237
+ version = "0.10.1"
1231
1238
  source = "registry+https://github.com/rust-lang/crates.io-index"
1232
- checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
1239
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
1233
1240
  dependencies = [
1234
1241
  "core-foundation-sys",
1235
1242
  "libc",
@@ -1252,9 +1259,9 @@ dependencies = [
1252
1259
 
1253
1260
  [[package]]
1254
1261
  name = "crc"
1255
- version = "3.2.1"
1262
+ version = "3.3.0"
1256
1263
  source = "registry+https://github.com/rust-lang/crates.io-index"
1257
- checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
1264
+ checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
1258
1265
  dependencies = [
1259
1266
  "crc-catalog",
1260
1267
  ]
@@ -1266,12 +1273,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
1273
  checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
1267
1274
 
1268
1275
  [[package]]
1269
- name = "crc32c"
1270
- version = "0.6.8"
1276
+ name = "crc-fast"
1277
+ version = "1.3.0"
1271
1278
  source = "registry+https://github.com/rust-lang/crates.io-index"
1272
- checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
1279
+ checksum = "6bf62af4cc77d8fe1c22dde4e721d87f2f54056139d8c412e1366b740305f56f"
1273
1280
  dependencies = [
1274
- "rustc_version",
1281
+ "crc",
1282
+ "digest",
1283
+ "libc",
1284
+ "rand 0.9.1",
1285
+ "regex",
1275
1286
  ]
1276
1287
 
1277
1288
  [[package]]
@@ -1283,15 +1294,6 @@ dependencies = [
1283
1294
  "cfg-if",
1284
1295
  ]
1285
1296
 
1286
- [[package]]
1287
- name = "crc64fast-nvme"
1288
- version = "1.2.0"
1289
- source = "registry+https://github.com/rust-lang/crates.io-index"
1290
- checksum = "4955638f00a809894c947f85a024020a20815b65a5eea633798ea7924edab2b3"
1291
- dependencies = [
1292
- "crc",
1293
- ]
1294
-
1295
1297
  [[package]]
1296
1298
  name = "crossbeam-queue"
1297
1299
  version = "0.3.12"
@@ -1366,7 +1368,7 @@ dependencies = [
1366
1368
  "proc-macro2",
1367
1369
  "quote",
1368
1370
  "strsim",
1369
- "syn 2.0.101",
1371
+ "syn 2.0.104",
1370
1372
  ]
1371
1373
 
1372
1374
  [[package]]
@@ -1377,7 +1379,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1377
1379
  dependencies = [
1378
1380
  "darling_core",
1379
1381
  "quote",
1380
- "syn 2.0.101",
1382
+ "syn 2.0.104",
1381
1383
  ]
1382
1384
 
1383
1385
  [[package]]
@@ -1470,7 +1472,7 @@ dependencies = [
1470
1472
  "darling",
1471
1473
  "proc-macro2",
1472
1474
  "quote",
1473
- "syn 2.0.101",
1475
+ "syn 2.0.104",
1474
1476
  ]
1475
1477
 
1476
1478
  [[package]]
@@ -1480,7 +1482,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
1482
  checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
1481
1483
  dependencies = [
1482
1484
  "derive_builder_core",
1483
- "syn 2.0.101",
1485
+ "syn 2.0.104",
1484
1486
  ]
1485
1487
 
1486
1488
  [[package]]
@@ -1503,7 +1505,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1503
1505
  dependencies = [
1504
1506
  "proc-macro2",
1505
1507
  "quote",
1506
- "syn 2.0.101",
1508
+ "syn 2.0.104",
1507
1509
  ]
1508
1510
 
1509
1511
  [[package]]
@@ -1614,12 +1616,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1614
1616
 
1615
1617
  [[package]]
1616
1618
  name = "errno"
1617
- version = "0.3.11"
1619
+ version = "0.3.13"
1618
1620
  source = "registry+https://github.com/rust-lang/crates.io-index"
1619
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
1621
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
1620
1622
  dependencies = [
1621
1623
  "libc",
1622
- "windows-sys 0.59.0",
1624
+ "windows-sys 0.60.2",
1623
1625
  ]
1624
1626
 
1625
1627
  [[package]]
@@ -1673,9 +1675,9 @@ dependencies = [
1673
1675
 
1674
1676
  [[package]]
1675
1677
  name = "flate2"
1676
- version = "1.1.1"
1678
+ version = "1.1.2"
1677
1679
  source = "registry+https://github.com/rust-lang/crates.io-index"
1678
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
1680
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
1679
1681
  dependencies = [
1680
1682
  "crc32fast",
1681
1683
  "miniz_oxide",
@@ -1786,7 +1788,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1786
1788
  dependencies = [
1787
1789
  "proc-macro2",
1788
1790
  "quote",
1789
- "syn 2.0.101",
1791
+ "syn 2.0.104",
1790
1792
  ]
1791
1793
 
1792
1794
  [[package]]
@@ -1844,15 +1846,15 @@ dependencies = [
1844
1846
  "cfg-if",
1845
1847
  "js-sys",
1846
1848
  "libc",
1847
- "wasi 0.11.0+wasi-snapshot-preview1",
1849
+ "wasi 0.11.1+wasi-snapshot-preview1",
1848
1850
  "wasm-bindgen",
1849
1851
  ]
1850
1852
 
1851
1853
  [[package]]
1852
1854
  name = "getrandom"
1853
- version = "0.3.2"
1855
+ version = "0.3.3"
1854
1856
  source = "registry+https://github.com/rust-lang/crates.io-index"
1855
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1857
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1856
1858
  dependencies = [
1857
1859
  "cfg-if",
1858
1860
  "js-sys",
@@ -1919,7 +1921,7 @@ dependencies = [
1919
1921
  "chrono",
1920
1922
  "google-apis-common",
1921
1923
  "hyper 1.6.0",
1922
- "hyper-rustls 0.27.5",
1924
+ "hyper-rustls 0.27.7",
1923
1925
  "hyper-util",
1924
1926
  "mime",
1925
1927
  "serde",
@@ -1962,9 +1964,9 @@ dependencies = [
1962
1964
 
1963
1965
  [[package]]
1964
1966
  name = "h2"
1965
- version = "0.4.9"
1967
+ version = "0.4.10"
1966
1968
  source = "registry+https://github.com/rust-lang/crates.io-index"
1967
- checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1969
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
1968
1970
  dependencies = [
1969
1971
  "atomic-waker",
1970
1972
  "bytes",
@@ -1997,9 +1999,9 @@ dependencies = [
1997
1999
 
1998
2000
  [[package]]
1999
2001
  name = "hashbrown"
2000
- version = "0.15.2"
2002
+ version = "0.15.4"
2001
2003
  source = "registry+https://github.com/rust-lang/crates.io-index"
2002
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
2004
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
2003
2005
  dependencies = [
2004
2006
  "allocator-api2",
2005
2007
  "equivalent",
@@ -2021,7 +2023,7 @@ version = "0.10.0"
2021
2023
  source = "registry+https://github.com/rust-lang/crates.io-index"
2022
2024
  checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
2023
2025
  dependencies = [
2024
- "hashbrown 0.15.2",
2026
+ "hashbrown 0.15.4",
2025
2027
  ]
2026
2028
 
2027
2029
  [[package]]
@@ -2032,9 +2034,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2032
2034
 
2033
2035
  [[package]]
2034
2036
  name = "hermit-abi"
2035
- version = "0.3.9"
2037
+ version = "0.5.2"
2036
2038
  source = "registry+https://github.com/rust-lang/crates.io-index"
2037
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2039
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
2038
2040
 
2039
2041
  [[package]]
2040
2042
  name = "hex"
@@ -2170,7 +2172,7 @@ dependencies = [
2170
2172
  "bytes",
2171
2173
  "futures-channel",
2172
2174
  "futures-util",
2173
- "h2 0.4.9",
2175
+ "h2 0.4.10",
2174
2176
  "http 1.3.1",
2175
2177
  "http-body 1.0.1",
2176
2178
  "httparse",
@@ -2200,22 +2202,21 @@ dependencies = [
2200
2202
 
2201
2203
  [[package]]
2202
2204
  name = "hyper-rustls"
2203
- version = "0.27.5"
2205
+ version = "0.27.7"
2204
2206
  source = "registry+https://github.com/rust-lang/crates.io-index"
2205
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
2207
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
2206
2208
  dependencies = [
2207
- "futures-util",
2208
2209
  "http 1.3.1",
2209
2210
  "hyper 1.6.0",
2210
2211
  "hyper-util",
2211
2212
  "log",
2212
- "rustls 0.23.26",
2213
+ "rustls 0.23.28",
2213
2214
  "rustls-native-certs 0.8.1",
2214
2215
  "rustls-pki-types",
2215
2216
  "tokio",
2216
2217
  "tokio-rustls 0.26.2",
2217
2218
  "tower-service",
2218
- "webpki-roots",
2219
+ "webpki-roots 1.0.1",
2219
2220
  ]
2220
2221
 
2221
2222
  [[package]]
@@ -2233,17 +2234,21 @@ dependencies = [
2233
2234
 
2234
2235
  [[package]]
2235
2236
  name = "hyper-util"
2236
- version = "0.1.11"
2237
+ version = "0.1.14"
2237
2238
  source = "registry+https://github.com/rust-lang/crates.io-index"
2238
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
2239
+ checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
2239
2240
  dependencies = [
2241
+ "base64 0.22.1",
2240
2242
  "bytes",
2241
2243
  "futures-channel",
2244
+ "futures-core",
2242
2245
  "futures-util",
2243
2246
  "http 1.3.1",
2244
2247
  "http-body 1.0.1",
2245
2248
  "hyper 1.6.0",
2249
+ "ipnet",
2246
2250
  "libc",
2251
+ "percent-encoding",
2247
2252
  "pin-project-lite",
2248
2253
  "socket2",
2249
2254
  "tokio",
@@ -2277,21 +2282,22 @@ dependencies = [
2277
2282
 
2278
2283
  [[package]]
2279
2284
  name = "icu_collections"
2280
- version = "1.5.0"
2285
+ version = "2.0.0"
2281
2286
  source = "registry+https://github.com/rust-lang/crates.io-index"
2282
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
2287
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
2283
2288
  dependencies = [
2284
2289
  "displaydoc",
2290
+ "potential_utf",
2285
2291
  "yoke",
2286
2292
  "zerofrom",
2287
2293
  "zerovec",
2288
2294
  ]
2289
2295
 
2290
2296
  [[package]]
2291
- name = "icu_locid"
2292
- version = "1.5.0"
2297
+ name = "icu_locale_core"
2298
+ version = "2.0.0"
2293
2299
  source = "registry+https://github.com/rust-lang/crates.io-index"
2294
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
2300
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
2295
2301
  dependencies = [
2296
2302
  "displaydoc",
2297
2303
  "litemap",
@@ -2300,31 +2306,11 @@ dependencies = [
2300
2306
  "zerovec",
2301
2307
  ]
2302
2308
 
2303
- [[package]]
2304
- name = "icu_locid_transform"
2305
- version = "1.5.0"
2306
- source = "registry+https://github.com/rust-lang/crates.io-index"
2307
- checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
2308
- dependencies = [
2309
- "displaydoc",
2310
- "icu_locid",
2311
- "icu_locid_transform_data",
2312
- "icu_provider",
2313
- "tinystr",
2314
- "zerovec",
2315
- ]
2316
-
2317
- [[package]]
2318
- name = "icu_locid_transform_data"
2319
- version = "1.5.1"
2320
- source = "registry+https://github.com/rust-lang/crates.io-index"
2321
- checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
2322
-
2323
2309
  [[package]]
2324
2310
  name = "icu_normalizer"
2325
- version = "1.5.0"
2311
+ version = "2.0.0"
2326
2312
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
2313
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
2328
2314
  dependencies = [
2329
2315
  "displaydoc",
2330
2316
  "icu_collections",
@@ -2332,67 +2318,54 @@ dependencies = [
2332
2318
  "icu_properties",
2333
2319
  "icu_provider",
2334
2320
  "smallvec",
2335
- "utf16_iter",
2336
- "utf8_iter",
2337
- "write16",
2338
2321
  "zerovec",
2339
2322
  ]
2340
2323
 
2341
2324
  [[package]]
2342
2325
  name = "icu_normalizer_data"
2343
- version = "1.5.1"
2326
+ version = "2.0.0"
2344
2327
  source = "registry+https://github.com/rust-lang/crates.io-index"
2345
- checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
2328
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
2346
2329
 
2347
2330
  [[package]]
2348
2331
  name = "icu_properties"
2349
- version = "1.5.1"
2332
+ version = "2.0.1"
2350
2333
  source = "registry+https://github.com/rust-lang/crates.io-index"
2351
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
2334
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
2352
2335
  dependencies = [
2353
2336
  "displaydoc",
2354
2337
  "icu_collections",
2355
- "icu_locid_transform",
2338
+ "icu_locale_core",
2356
2339
  "icu_properties_data",
2357
2340
  "icu_provider",
2358
- "tinystr",
2341
+ "potential_utf",
2342
+ "zerotrie",
2359
2343
  "zerovec",
2360
2344
  ]
2361
2345
 
2362
2346
  [[package]]
2363
2347
  name = "icu_properties_data"
2364
- version = "1.5.1"
2348
+ version = "2.0.1"
2365
2349
  source = "registry+https://github.com/rust-lang/crates.io-index"
2366
- checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
2350
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
2367
2351
 
2368
2352
  [[package]]
2369
2353
  name = "icu_provider"
2370
- version = "1.5.0"
2354
+ version = "2.0.0"
2371
2355
  source = "registry+https://github.com/rust-lang/crates.io-index"
2372
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
2356
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
2373
2357
  dependencies = [
2374
2358
  "displaydoc",
2375
- "icu_locid",
2376
- "icu_provider_macros",
2359
+ "icu_locale_core",
2377
2360
  "stable_deref_trait",
2378
2361
  "tinystr",
2379
2362
  "writeable",
2380
2363
  "yoke",
2381
2364
  "zerofrom",
2365
+ "zerotrie",
2382
2366
  "zerovec",
2383
2367
  ]
2384
2368
 
2385
- [[package]]
2386
- name = "icu_provider_macros"
2387
- version = "1.5.0"
2388
- source = "registry+https://github.com/rust-lang/crates.io-index"
2389
- checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
2390
- dependencies = [
2391
- "proc-macro2",
2392
- "quote",
2393
- "syn 2.0.101",
2394
- ]
2395
-
2396
2369
  [[package]]
2397
2370
  name = "ident_case"
2398
2371
  version = "1.0.1"
@@ -2412,9 +2385,9 @@ dependencies = [
2412
2385
 
2413
2386
  [[package]]
2414
2387
  name = "idna_adapter"
2415
- version = "1.2.0"
2388
+ version = "1.2.1"
2416
2389
  source = "registry+https://github.com/rust-lang/crates.io-index"
2417
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
2390
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2418
2391
  dependencies = [
2419
2392
  "icu_normalizer",
2420
2393
  "icu_properties",
@@ -2444,7 +2417,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
2417
  checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
2445
2418
  dependencies = [
2446
2419
  "equivalent",
2447
- "hashbrown 0.15.2",
2420
+ "hashbrown 0.15.4",
2448
2421
  "serde",
2449
2422
  ]
2450
2423
 
@@ -2454,6 +2427,15 @@ version = "2.0.6"
2454
2427
  source = "registry+https://github.com/rust-lang/crates.io-index"
2455
2428
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
2456
2429
 
2430
+ [[package]]
2431
+ name = "infer"
2432
+ version = "0.19.0"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
2435
+ dependencies = [
2436
+ "cfb",
2437
+ ]
2438
+
2457
2439
  [[package]]
2458
2440
  name = "instant"
2459
2441
  version = "0.1.13"
@@ -2469,6 +2451,16 @@ version = "2.11.0"
2469
2451
  source = "registry+https://github.com/rust-lang/crates.io-index"
2470
2452
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2471
2453
 
2454
+ [[package]]
2455
+ name = "iri-string"
2456
+ version = "0.7.8"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
2459
+ dependencies = [
2460
+ "memchr",
2461
+ "serde",
2462
+ ]
2463
+
2472
2464
  [[package]]
2473
2465
  name = "is_terminal_polyfill"
2474
2466
  version = "1.70.1"
@@ -2510,9 +2502,9 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
2510
2502
 
2511
2503
  [[package]]
2512
2504
  name = "jiff"
2513
- version = "0.2.10"
2505
+ version = "0.2.15"
2514
2506
  source = "registry+https://github.com/rust-lang/crates.io-index"
2515
- checksum = "5a064218214dc6a10fbae5ec5fa888d80c45d611aba169222fc272072bf7aef6"
2507
+ checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
2516
2508
  dependencies = [
2517
2509
  "jiff-static",
2518
2510
  "log",
@@ -2523,13 +2515,13 @@ dependencies = [
2523
2515
 
2524
2516
  [[package]]
2525
2517
  name = "jiff-static"
2526
- version = "0.2.10"
2518
+ version = "0.2.15"
2527
2519
  source = "registry+https://github.com/rust-lang/crates.io-index"
2528
- checksum = "199b7932d97e325aff3a7030e141eafe7f2c6268e1d1b24859b753a627f45254"
2520
+ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
2529
2521
  dependencies = [
2530
2522
  "proc-macro2",
2531
2523
  "quote",
2532
- "syn 2.0.101",
2524
+ "syn 2.0.104",
2533
2525
  ]
2534
2526
 
2535
2527
  [[package]]
@@ -2538,7 +2530,7 @@ version = "0.1.33"
2538
2530
  source = "registry+https://github.com/rust-lang/crates.io-index"
2539
2531
  checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
2540
2532
  dependencies = [
2541
- "getrandom 0.3.2",
2533
+ "getrandom 0.3.3",
2542
2534
  "libc",
2543
2535
  ]
2544
2536
 
@@ -2580,25 +2572,25 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2580
2572
 
2581
2573
  [[package]]
2582
2574
  name = "libc"
2583
- version = "0.2.172"
2575
+ version = "0.2.174"
2584
2576
  source = "registry+https://github.com/rust-lang/crates.io-index"
2585
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2577
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2586
2578
 
2587
2579
  [[package]]
2588
2580
  name = "libloading"
2589
- version = "0.8.6"
2581
+ version = "0.8.8"
2590
2582
  source = "registry+https://github.com/rust-lang/crates.io-index"
2591
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
2583
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
2592
2584
  dependencies = [
2593
2585
  "cfg-if",
2594
- "windows-targets 0.52.6",
2586
+ "windows-targets 0.53.2",
2595
2587
  ]
2596
2588
 
2597
2589
  [[package]]
2598
2590
  name = "libm"
2599
- version = "0.2.13"
2591
+ version = "0.2.15"
2600
2592
  source = "registry+https://github.com/rust-lang/crates.io-index"
2601
- checksum = "c9627da5196e5d8ed0b0495e61e518847578da83483c37288316d9b2e03a7f72"
2593
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2602
2594
 
2603
2595
  [[package]]
2604
2596
  name = "libsqlite3-sys"
@@ -2616,23 +2608,17 @@ version = "0.4.15"
2616
2608
  source = "registry+https://github.com/rust-lang/crates.io-index"
2617
2609
  checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2618
2610
 
2619
- [[package]]
2620
- name = "linux-raw-sys"
2621
- version = "0.9.4"
2622
- source = "registry+https://github.com/rust-lang/crates.io-index"
2623
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2624
-
2625
2611
  [[package]]
2626
2612
  name = "litemap"
2627
- version = "0.7.5"
2613
+ version = "0.8.0"
2628
2614
  source = "registry+https://github.com/rust-lang/crates.io-index"
2629
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
2615
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
2630
2616
 
2631
2617
  [[package]]
2632
2618
  name = "lock_api"
2633
- version = "0.4.12"
2619
+ version = "0.4.13"
2634
2620
  source = "registry+https://github.com/rust-lang/crates.io-index"
2635
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2621
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
2636
2622
  dependencies = [
2637
2623
  "autocfg",
2638
2624
  "scopeguard",
@@ -2650,9 +2636,15 @@ version = "0.12.5"
2650
2636
  source = "registry+https://github.com/rust-lang/crates.io-index"
2651
2637
  checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
2652
2638
  dependencies = [
2653
- "hashbrown 0.15.2",
2639
+ "hashbrown 0.15.4",
2654
2640
  ]
2655
2641
 
2642
+ [[package]]
2643
+ name = "lru-slab"
2644
+ version = "0.1.2"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2647
+
2656
2648
  [[package]]
2657
2649
  name = "matchit"
2658
2650
  version = "0.7.3"
@@ -2687,9 +2679,9 @@ dependencies = [
2687
2679
 
2688
2680
  [[package]]
2689
2681
  name = "memchr"
2690
- version = "2.7.4"
2682
+ version = "2.7.5"
2691
2683
  source = "registry+https://github.com/rust-lang/crates.io-index"
2692
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2684
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2693
2685
 
2694
2686
  [[package]]
2695
2687
  name = "memoffset"
@@ -2724,22 +2716,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2724
2716
 
2725
2717
  [[package]]
2726
2718
  name = "miniz_oxide"
2727
- version = "0.8.8"
2719
+ version = "0.8.9"
2728
2720
  source = "registry+https://github.com/rust-lang/crates.io-index"
2729
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2721
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2730
2722
  dependencies = [
2731
2723
  "adler2",
2732
2724
  ]
2733
2725
 
2734
2726
  [[package]]
2735
2727
  name = "mio"
2736
- version = "1.0.3"
2728
+ version = "1.0.4"
2737
2729
  source = "registry+https://github.com/rust-lang/crates.io-index"
2738
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2730
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
2739
2731
  dependencies = [
2740
2732
  "libc",
2741
- "wasi 0.11.0+wasi-snapshot-preview1",
2742
- "windows-sys 0.52.0",
2733
+ "wasi 0.11.1+wasi-snapshot-preview1",
2734
+ "windows-sys 0.59.0",
2743
2735
  ]
2744
2736
 
2745
2737
  [[package]]
@@ -2782,7 +2774,7 @@ dependencies = [
2782
2774
  "tokio",
2783
2775
  "tokio-rustls 0.26.2",
2784
2776
  "url",
2785
- "webpki-roots",
2777
+ "webpki-roots 0.26.11",
2786
2778
  ]
2787
2779
 
2788
2780
  [[package]]
@@ -2792,7 +2784,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
2784
  checksum = "53a0d57c55d2d1dc62a2b1d16a0a1079eb78d67c36bdf468d582ab4482ec7002"
2793
2785
  dependencies = [
2794
2786
  "quote",
2795
- "syn 2.0.101",
2787
+ "syn 2.0.104",
2796
2788
  ]
2797
2789
 
2798
2790
  [[package]]
@@ -2869,9 +2861,9 @@ dependencies = [
2869
2861
 
2870
2862
  [[package]]
2871
2863
  name = "num_cpus"
2872
- version = "1.16.0"
2864
+ version = "1.17.0"
2873
2865
  source = "registry+https://github.com/rust-lang/crates.io-index"
2874
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2866
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2875
2867
  dependencies = [
2876
2868
  "hermit-abi",
2877
2869
  "libc",
@@ -2917,6 +2909,12 @@ version = "1.21.3"
2917
2909
  source = "registry+https://github.com/rust-lang/crates.io-index"
2918
2910
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2919
2911
 
2912
+ [[package]]
2913
+ name = "once_cell_polyfill"
2914
+ version = "1.70.1"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
2917
+
2920
2918
  [[package]]
2921
2919
  name = "openssl-probe"
2922
2920
  version = "0.1.6"
@@ -2941,9 +2939,9 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
2941
2939
 
2942
2940
  [[package]]
2943
2941
  name = "owo-colors"
2944
- version = "4.2.0"
2942
+ version = "4.2.2"
2945
2943
  source = "registry+https://github.com/rust-lang/crates.io-index"
2946
- checksum = "1036865bb9422d3300cf723f657c2851d0e9ab12567854b1f4eba3d77decf564"
2944
+ checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
2947
2945
 
2948
2946
  [[package]]
2949
2947
  name = "p256"
@@ -2964,9 +2962,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2964
2962
 
2965
2963
  [[package]]
2966
2964
  name = "parking_lot"
2967
- version = "0.12.3"
2965
+ version = "0.12.4"
2968
2966
  source = "registry+https://github.com/rust-lang/crates.io-index"
2969
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2967
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2970
2968
  dependencies = [
2971
2969
  "lock_api",
2972
2970
  "parking_lot_core",
@@ -2974,9 +2972,9 @@ dependencies = [
2974
2972
 
2975
2973
  [[package]]
2976
2974
  name = "parking_lot_core"
2977
- version = "0.9.10"
2975
+ version = "0.9.11"
2978
2976
  source = "registry+https://github.com/rust-lang/crates.io-index"
2979
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2977
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2980
2978
  dependencies = [
2981
2979
  "cfg-if",
2982
2980
  "libc",
@@ -3023,9 +3021,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
3023
3021
 
3024
3022
  [[package]]
3025
3023
  name = "pest"
3026
- version = "2.8.0"
3024
+ version = "2.8.1"
3027
3025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3028
- checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
3026
+ checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
3029
3027
  dependencies = [
3030
3028
  "memchr",
3031
3029
  "thiserror 2.0.12",
@@ -3034,9 +3032,9 @@ dependencies = [
3034
3032
 
3035
3033
  [[package]]
3036
3034
  name = "pest_derive"
3037
- version = "2.8.0"
3035
+ version = "2.8.1"
3038
3036
  source = "registry+https://github.com/rust-lang/crates.io-index"
3039
- checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
3037
+ checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
3040
3038
  dependencies = [
3041
3039
  "pest",
3042
3040
  "pest_generator",
@@ -3044,33 +3042,32 @@ dependencies = [
3044
3042
 
3045
3043
  [[package]]
3046
3044
  name = "pest_generator"
3047
- version = "2.8.0"
3045
+ version = "2.8.1"
3048
3046
  source = "registry+https://github.com/rust-lang/crates.io-index"
3049
- checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
3047
+ checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
3050
3048
  dependencies = [
3051
3049
  "pest",
3052
3050
  "pest_meta",
3053
3051
  "proc-macro2",
3054
3052
  "quote",
3055
- "syn 2.0.101",
3053
+ "syn 2.0.104",
3056
3054
  ]
3057
3055
 
3058
3056
  [[package]]
3059
3057
  name = "pest_meta"
3060
- version = "2.8.0"
3058
+ version = "2.8.1"
3061
3059
  source = "registry+https://github.com/rust-lang/crates.io-index"
3062
- checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
3060
+ checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
3063
3061
  dependencies = [
3064
- "once_cell",
3065
3062
  "pest",
3066
3063
  "sha2",
3067
3064
  ]
3068
3065
 
3069
3066
  [[package]]
3070
3067
  name = "pgvector"
3071
- version = "0.4.0"
3068
+ version = "0.4.1"
3072
3069
  source = "registry+https://github.com/rust-lang/crates.io-index"
3073
- checksum = "e0e8871b6d7ca78348c6cd29b911b94851f3429f0cd403130ca17f26c1fb91a6"
3070
+ checksum = "fc58e2d255979a31caa7cabfa7aac654af0354220719ab7a68520ae7a91e8c0b"
3074
3071
  dependencies = [
3075
3072
  "sqlx",
3076
3073
  ]
@@ -3115,7 +3112,7 @@ dependencies = [
3115
3112
  "phf_shared",
3116
3113
  "proc-macro2",
3117
3114
  "quote",
3118
- "syn 2.0.101",
3115
+ "syn 2.0.104",
3119
3116
  ]
3120
3117
 
3121
3118
  [[package]]
@@ -3144,7 +3141,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
3144
3141
  dependencies = [
3145
3142
  "proc-macro2",
3146
3143
  "quote",
3147
- "syn 2.0.101",
3144
+ "syn 2.0.104",
3148
3145
  ]
3149
3146
 
3150
3147
  [[package]]
@@ -3198,9 +3195,9 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
3198
3195
 
3199
3196
  [[package]]
3200
3197
  name = "portable-atomic"
3201
- version = "1.11.0"
3198
+ version = "1.11.1"
3202
3199
  source = "registry+https://github.com/rust-lang/crates.io-index"
3203
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
3200
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
3204
3201
 
3205
3202
  [[package]]
3206
3203
  name = "portable-atomic-util"
@@ -3211,6 +3208,15 @@ dependencies = [
3211
3208
  "portable-atomic",
3212
3209
  ]
3213
3210
 
3211
+ [[package]]
3212
+ name = "potential_utf"
3213
+ version = "0.1.2"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
3216
+ dependencies = [
3217
+ "zerovec",
3218
+ ]
3219
+
3214
3220
  [[package]]
3215
3221
  name = "powerfmt"
3216
3222
  version = "0.2.0"
@@ -3223,17 +3229,17 @@ version = "0.2.21"
3223
3229
  source = "registry+https://github.com/rust-lang/crates.io-index"
3224
3230
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
3225
3231
  dependencies = [
3226
- "zerocopy 0.8.25",
3232
+ "zerocopy",
3227
3233
  ]
3228
3234
 
3229
3235
  [[package]]
3230
3236
  name = "prettyplease"
3231
- version = "0.2.32"
3237
+ version = "0.2.35"
3232
3238
  source = "registry+https://github.com/rust-lang/crates.io-index"
3233
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
3239
+ checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a"
3234
3240
  dependencies = [
3235
3241
  "proc-macro2",
3236
- "syn 2.0.101",
3242
+ "syn 2.0.104",
3237
3243
  ]
3238
3244
 
3239
3245
  [[package]]
@@ -3265,7 +3271,7 @@ dependencies = [
3265
3271
  "itertools 0.14.0",
3266
3272
  "proc-macro2",
3267
3273
  "quote",
3268
- "syn 2.0.101",
3274
+ "syn 2.0.104",
3269
3275
  ]
3270
3276
 
3271
3277
  [[package]]
@@ -3279,9 +3285,9 @@ dependencies = [
3279
3285
 
3280
3286
  [[package]]
3281
3287
  name = "pyo3"
3282
- version = "0.25.0"
3288
+ version = "0.25.1"
3283
3289
  source = "registry+https://github.com/rust-lang/crates.io-index"
3284
- checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
3290
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
3285
3291
  dependencies = [
3286
3292
  "chrono",
3287
3293
  "indoc",
@@ -3311,9 +3317,9 @@ dependencies = [
3311
3317
 
3312
3318
  [[package]]
3313
3319
  name = "pyo3-build-config"
3314
- version = "0.25.0"
3320
+ version = "0.25.1"
3315
3321
  source = "registry+https://github.com/rust-lang/crates.io-index"
3316
- checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
3322
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
3317
3323
  dependencies = [
3318
3324
  "once_cell",
3319
3325
  "target-lexicon",
@@ -3321,9 +3327,9 @@ dependencies = [
3321
3327
 
3322
3328
  [[package]]
3323
3329
  name = "pyo3-ffi"
3324
- version = "0.25.0"
3330
+ version = "0.25.1"
3325
3331
  source = "registry+https://github.com/rust-lang/crates.io-index"
3326
- checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
3332
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
3327
3333
  dependencies = [
3328
3334
  "libc",
3329
3335
  "pyo3-build-config",
@@ -3331,27 +3337,27 @@ dependencies = [
3331
3337
 
3332
3338
  [[package]]
3333
3339
  name = "pyo3-macros"
3334
- version = "0.25.0"
3340
+ version = "0.25.1"
3335
3341
  source = "registry+https://github.com/rust-lang/crates.io-index"
3336
- checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
3342
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
3337
3343
  dependencies = [
3338
3344
  "proc-macro2",
3339
3345
  "pyo3-macros-backend",
3340
3346
  "quote",
3341
- "syn 2.0.101",
3347
+ "syn 2.0.104",
3342
3348
  ]
3343
3349
 
3344
3350
  [[package]]
3345
3351
  name = "pyo3-macros-backend"
3346
- version = "0.25.0"
3352
+ version = "0.25.1"
3347
3353
  source = "registry+https://github.com/rust-lang/crates.io-index"
3348
- checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
3354
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
3349
3355
  dependencies = [
3350
3356
  "heck",
3351
3357
  "proc-macro2",
3352
3358
  "pyo3-build-config",
3353
3359
  "quote",
3354
- "syn 2.0.101",
3360
+ "syn 2.0.104",
3355
3361
  ]
3356
3362
 
3357
3363
  [[package]]
@@ -3387,9 +3393,9 @@ dependencies = [
3387
3393
 
3388
3394
  [[package]]
3389
3395
  name = "quinn"
3390
- version = "0.11.7"
3396
+ version = "0.11.8"
3391
3397
  source = "registry+https://github.com/rust-lang/crates.io-index"
3392
- checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
3398
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
3393
3399
  dependencies = [
3394
3400
  "bytes",
3395
3401
  "cfg_aliases",
@@ -3397,7 +3403,7 @@ dependencies = [
3397
3403
  "quinn-proto",
3398
3404
  "quinn-udp",
3399
3405
  "rustc-hash 2.1.1",
3400
- "rustls 0.23.26",
3406
+ "rustls 0.23.28",
3401
3407
  "socket2",
3402
3408
  "thiserror 2.0.12",
3403
3409
  "tokio",
@@ -3407,16 +3413,17 @@ dependencies = [
3407
3413
 
3408
3414
  [[package]]
3409
3415
  name = "quinn-proto"
3410
- version = "0.11.11"
3416
+ version = "0.11.12"
3411
3417
  source = "registry+https://github.com/rust-lang/crates.io-index"
3412
- checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
3418
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
3413
3419
  dependencies = [
3414
3420
  "bytes",
3415
- "getrandom 0.3.2",
3421
+ "getrandom 0.3.3",
3422
+ "lru-slab",
3416
3423
  "rand 0.9.1",
3417
3424
  "ring",
3418
3425
  "rustc-hash 2.1.1",
3419
- "rustls 0.23.26",
3426
+ "rustls 0.23.28",
3420
3427
  "rustls-pki-types",
3421
3428
  "slab",
3422
3429
  "thiserror 2.0.12",
@@ -3427,9 +3434,9 @@ dependencies = [
3427
3434
 
3428
3435
  [[package]]
3429
3436
  name = "quinn-udp"
3430
- version = "0.5.11"
3437
+ version = "0.5.13"
3431
3438
  source = "registry+https://github.com/rust-lang/crates.io-index"
3432
- checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
3439
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
3433
3440
  dependencies = [
3434
3441
  "cfg_aliases",
3435
3442
  "libc",
@@ -3450,9 +3457,9 @@ dependencies = [
3450
3457
 
3451
3458
  [[package]]
3452
3459
  name = "r-efi"
3453
- version = "5.2.0"
3460
+ version = "5.3.0"
3454
3461
  source = "registry+https://github.com/rust-lang/crates.io-index"
3455
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3462
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3456
3463
 
3457
3464
  [[package]]
3458
3465
  name = "rand"
@@ -3510,7 +3517,7 @@ version = "0.9.3"
3510
3517
  source = "registry+https://github.com/rust-lang/crates.io-index"
3511
3518
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3512
3519
  dependencies = [
3513
- "getrandom 0.3.2",
3520
+ "getrandom 0.3.3",
3514
3521
  ]
3515
3522
 
3516
3523
  [[package]]
@@ -3521,13 +3528,33 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
3521
3528
 
3522
3529
  [[package]]
3523
3530
  name = "redox_syscall"
3524
- version = "0.5.11"
3531
+ version = "0.5.13"
3525
3532
  source = "registry+https://github.com/rust-lang/crates.io-index"
3526
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
3533
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
3527
3534
  dependencies = [
3528
3535
  "bitflags",
3529
3536
  ]
3530
3537
 
3538
+ [[package]]
3539
+ name = "ref-cast"
3540
+ version = "1.0.24"
3541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3542
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
3543
+ dependencies = [
3544
+ "ref-cast-impl",
3545
+ ]
3546
+
3547
+ [[package]]
3548
+ name = "ref-cast-impl"
3549
+ version = "1.0.24"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
3552
+ dependencies = [
3553
+ "proc-macro2",
3554
+ "quote",
3555
+ "syn 2.0.104",
3556
+ ]
3557
+
3531
3558
  [[package]]
3532
3559
  name = "regex"
3533
3560
  version = "1.11.1"
@@ -3565,33 +3592,29 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
3565
3592
 
3566
3593
  [[package]]
3567
3594
  name = "reqwest"
3568
- version = "0.12.15"
3595
+ version = "0.12.20"
3569
3596
  source = "registry+https://github.com/rust-lang/crates.io-index"
3570
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
3597
+ checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
3571
3598
  dependencies = [
3572
3599
  "base64 0.22.1",
3573
3600
  "bytes",
3574
3601
  "futures-core",
3575
3602
  "futures-util",
3576
- "h2 0.4.9",
3603
+ "h2 0.4.10",
3577
3604
  "http 1.3.1",
3578
3605
  "http-body 1.0.1",
3579
3606
  "http-body-util",
3580
3607
  "hyper 1.6.0",
3581
- "hyper-rustls 0.27.5",
3608
+ "hyper-rustls 0.27.7",
3582
3609
  "hyper-util",
3583
- "ipnet",
3584
3610
  "js-sys",
3585
3611
  "log",
3586
- "mime",
3587
3612
  "mime_guess",
3588
- "once_cell",
3589
3613
  "percent-encoding",
3590
3614
  "pin-project-lite",
3591
3615
  "quinn",
3592
- "rustls 0.23.26",
3616
+ "rustls 0.23.28",
3593
3617
  "rustls-native-certs 0.8.1",
3594
- "rustls-pemfile 2.2.0",
3595
3618
  "rustls-pki-types",
3596
3619
  "serde",
3597
3620
  "serde_json",
@@ -3601,14 +3624,14 @@ dependencies = [
3601
3624
  "tokio-rustls 0.26.2",
3602
3625
  "tokio-util",
3603
3626
  "tower 0.5.2",
3627
+ "tower-http",
3604
3628
  "tower-service",
3605
3629
  "url",
3606
3630
  "wasm-bindgen",
3607
3631
  "wasm-bindgen-futures",
3608
3632
  "wasm-streams",
3609
3633
  "web-sys",
3610
- "webpki-roots",
3611
- "windows-registry",
3634
+ "webpki-roots 1.0.1",
3612
3635
  ]
3613
3636
 
3614
3637
  [[package]]
@@ -3702,9 +3725,9 @@ dependencies = [
3702
3725
 
3703
3726
  [[package]]
3704
3727
  name = "rustc-demangle"
3705
- version = "0.1.24"
3728
+ version = "0.1.25"
3706
3729
  source = "registry+https://github.com/rust-lang/crates.io-index"
3707
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3730
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
3708
3731
 
3709
3732
  [[package]]
3710
3733
  name = "rustc-hash"
@@ -3736,20 +3759,7 @@ dependencies = [
3736
3759
  "bitflags",
3737
3760
  "errno",
3738
3761
  "libc",
3739
- "linux-raw-sys 0.4.15",
3740
- "windows-sys 0.59.0",
3741
- ]
3742
-
3743
- [[package]]
3744
- name = "rustix"
3745
- version = "1.0.5"
3746
- source = "registry+https://github.com/rust-lang/crates.io-index"
3747
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
3748
- dependencies = [
3749
- "bitflags",
3750
- "errno",
3751
- "libc",
3752
- "linux-raw-sys 0.9.4",
3762
+ "linux-raw-sys",
3753
3763
  "windows-sys 0.59.0",
3754
3764
  ]
3755
3765
 
@@ -3767,16 +3777,16 @@ dependencies = [
3767
3777
 
3768
3778
  [[package]]
3769
3779
  name = "rustls"
3770
- version = "0.23.26"
3780
+ version = "0.23.28"
3771
3781
  source = "registry+https://github.com/rust-lang/crates.io-index"
3772
- checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
3782
+ checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
3773
3783
  dependencies = [
3774
3784
  "aws-lc-rs",
3775
3785
  "log",
3776
3786
  "once_cell",
3777
3787
  "ring",
3778
3788
  "rustls-pki-types",
3779
- "rustls-webpki 0.103.1",
3789
+ "rustls-webpki 0.103.3",
3780
3790
  "subtle",
3781
3791
  "zeroize",
3782
3792
  ]
@@ -3838,11 +3848,12 @@ dependencies = [
3838
3848
 
3839
3849
  [[package]]
3840
3850
  name = "rustls-pki-types"
3841
- version = "1.11.0"
3851
+ version = "1.12.0"
3842
3852
  source = "registry+https://github.com/rust-lang/crates.io-index"
3843
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3853
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3844
3854
  dependencies = [
3845
3855
  "web-time",
3856
+ "zeroize",
3846
3857
  ]
3847
3858
 
3848
3859
  [[package]]
@@ -3857,9 +3868,9 @@ dependencies = [
3857
3868
 
3858
3869
  [[package]]
3859
3870
  name = "rustls-webpki"
3860
- version = "0.103.1"
3871
+ version = "0.103.3"
3861
3872
  source = "registry+https://github.com/rust-lang/crates.io-index"
3862
- checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
3873
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
3863
3874
  dependencies = [
3864
3875
  "aws-lc-rs",
3865
3876
  "ring",
@@ -3869,9 +3880,9 @@ dependencies = [
3869
3880
 
3870
3881
  [[package]]
3871
3882
  name = "rustversion"
3872
- version = "1.0.20"
3883
+ version = "1.0.21"
3873
3884
  source = "registry+https://github.com/rust-lang/crates.io-index"
3874
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3885
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
3875
3886
 
3876
3887
  [[package]]
3877
3888
  name = "ryu"
@@ -3900,6 +3911,18 @@ dependencies = [
3900
3911
  "serde_json",
3901
3912
  ]
3902
3913
 
3914
+ [[package]]
3915
+ name = "schemars"
3916
+ version = "0.9.0"
3917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3918
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
3919
+ dependencies = [
3920
+ "dyn-clone",
3921
+ "ref-cast",
3922
+ "serde",
3923
+ "serde_json",
3924
+ ]
3925
+
3903
3926
  [[package]]
3904
3927
  name = "schemars_derive"
3905
3928
  version = "0.8.22"
@@ -3909,7 +3932,7 @@ dependencies = [
3909
3932
  "proc-macro2",
3910
3933
  "quote",
3911
3934
  "serde_derive_internals",
3912
- "syn 2.0.101",
3935
+ "syn 2.0.104",
3913
3936
  ]
3914
3937
 
3915
3938
  [[package]]
@@ -3978,7 +4001,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3978
4001
  checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
3979
4002
  dependencies = [
3980
4003
  "bitflags",
3981
- "core-foundation 0.10.0",
4004
+ "core-foundation 0.10.1",
3982
4005
  "core-foundation-sys",
3983
4006
  "libc",
3984
4007
  "security-framework-sys",
@@ -4017,7 +4040,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
4017
4040
  dependencies = [
4018
4041
  "proc-macro2",
4019
4042
  "quote",
4020
- "syn 2.0.101",
4043
+ "syn 2.0.104",
4021
4044
  ]
4022
4045
 
4023
4046
  [[package]]
@@ -4028,7 +4051,7 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
4028
4051
  dependencies = [
4029
4052
  "proc-macro2",
4030
4053
  "quote",
4031
- "syn 2.0.101",
4054
+ "syn 2.0.104",
4032
4055
  ]
4033
4056
 
4034
4057
  [[package]]
@@ -4069,9 +4092,9 @@ dependencies = [
4069
4092
 
4070
4093
  [[package]]
4071
4094
  name = "serde_spanned"
4072
- version = "0.6.8"
4095
+ version = "0.6.9"
4073
4096
  source = "registry+https://github.com/rust-lang/crates.io-index"
4074
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
4097
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
4075
4098
  dependencies = [
4076
4099
  "serde",
4077
4100
  ]
@@ -4090,15 +4113,16 @@ dependencies = [
4090
4113
 
4091
4114
  [[package]]
4092
4115
  name = "serde_with"
4093
- version = "3.12.0"
4116
+ version = "3.13.0"
4094
4117
  source = "registry+https://github.com/rust-lang/crates.io-index"
4095
- checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
4118
+ checksum = "bf65a400f8f66fb7b0552869ad70157166676db75ed8181f8104ea91cf9d0b42"
4096
4119
  dependencies = [
4097
4120
  "base64 0.22.1",
4098
4121
  "chrono",
4099
4122
  "hex",
4100
4123
  "indexmap 1.9.3",
4101
4124
  "indexmap 2.9.0",
4125
+ "schemars 0.9.0",
4102
4126
  "serde",
4103
4127
  "serde_derive",
4104
4128
  "serde_json",
@@ -4108,14 +4132,14 @@ dependencies = [
4108
4132
 
4109
4133
  [[package]]
4110
4134
  name = "serde_with_macros"
4111
- version = "3.12.0"
4135
+ version = "3.13.0"
4112
4136
  source = "registry+https://github.com/rust-lang/crates.io-index"
4113
- checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
4137
+ checksum = "81679d9ed988d5e9a5e6531dc3f2c28efbd639cbd1dfb628df08edea6004da77"
4114
4138
  dependencies = [
4115
4139
  "darling",
4116
4140
  "proc-macro2",
4117
4141
  "quote",
4118
- "syn 2.0.101",
4142
+ "syn 2.0.104",
4119
4143
  ]
4120
4144
 
4121
4145
  [[package]]
@@ -4131,9 +4155,9 @@ dependencies = [
4131
4155
 
4132
4156
  [[package]]
4133
4157
  name = "sha2"
4134
- version = "0.10.8"
4158
+ version = "0.10.9"
4135
4159
  source = "registry+https://github.com/rust-lang/crates.io-index"
4136
- checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
4160
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
4137
4161
  dependencies = [
4138
4162
  "cfg-if",
4139
4163
  "cpufeatures",
@@ -4183,27 +4207,24 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
4183
4207
 
4184
4208
  [[package]]
4185
4209
  name = "slab"
4186
- version = "0.4.9"
4210
+ version = "0.4.10"
4187
4211
  source = "registry+https://github.com/rust-lang/crates.io-index"
4188
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
4189
- dependencies = [
4190
- "autocfg",
4191
- ]
4212
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
4192
4213
 
4193
4214
  [[package]]
4194
4215
  name = "smallvec"
4195
- version = "1.15.0"
4216
+ version = "1.15.1"
4196
4217
  source = "registry+https://github.com/rust-lang/crates.io-index"
4197
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
4218
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
4198
4219
  dependencies = [
4199
4220
  "serde",
4200
4221
  ]
4201
4222
 
4202
4223
  [[package]]
4203
4224
  name = "socket2"
4204
- version = "0.5.9"
4225
+ version = "0.5.10"
4205
4226
  source = "registry+https://github.com/rust-lang/crates.io-index"
4206
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
4227
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
4207
4228
  dependencies = [
4208
4229
  "libc",
4209
4230
  "windows-sys 0.52.0",
@@ -4240,9 +4261,9 @@ dependencies = [
4240
4261
 
4241
4262
  [[package]]
4242
4263
  name = "sqlx"
4243
- version = "0.8.5"
4264
+ version = "0.8.6"
4244
4265
  source = "registry+https://github.com/rust-lang/crates.io-index"
4245
- checksum = "f3c3a85280daca669cfd3bcb68a337882a8bc57ec882f72c5d13a430613a738e"
4266
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
4246
4267
  dependencies = [
4247
4268
  "sqlx-core",
4248
4269
  "sqlx-macros",
@@ -4253,9 +4274,9 @@ dependencies = [
4253
4274
 
4254
4275
  [[package]]
4255
4276
  name = "sqlx-core"
4256
- version = "0.8.5"
4277
+ version = "0.8.6"
4257
4278
  source = "registry+https://github.com/rust-lang/crates.io-index"
4258
- checksum = "f743f2a3cea30a58cd479013f75550e879009e3a02f616f18ca699335aa248c3"
4279
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
4259
4280
  dependencies = [
4260
4281
  "base64 0.22.1",
4261
4282
  "bytes",
@@ -4268,7 +4289,7 @@ dependencies = [
4268
4289
  "futures-intrusive",
4269
4290
  "futures-io",
4270
4291
  "futures-util",
4271
- "hashbrown 0.15.2",
4292
+ "hashbrown 0.15.4",
4272
4293
  "hashlink 0.10.0",
4273
4294
  "indexmap 2.9.0",
4274
4295
  "log",
@@ -4289,22 +4310,22 @@ dependencies = [
4289
4310
 
4290
4311
  [[package]]
4291
4312
  name = "sqlx-macros"
4292
- version = "0.8.5"
4313
+ version = "0.8.6"
4293
4314
  source = "registry+https://github.com/rust-lang/crates.io-index"
4294
- checksum = "7f4200e0fde19834956d4252347c12a083bdcb237d7a1a1446bffd8768417dce"
4315
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
4295
4316
  dependencies = [
4296
4317
  "proc-macro2",
4297
4318
  "quote",
4298
4319
  "sqlx-core",
4299
4320
  "sqlx-macros-core",
4300
- "syn 2.0.101",
4321
+ "syn 2.0.104",
4301
4322
  ]
4302
4323
 
4303
4324
  [[package]]
4304
4325
  name = "sqlx-macros-core"
4305
- version = "0.8.5"
4326
+ version = "0.8.6"
4306
4327
  source = "registry+https://github.com/rust-lang/crates.io-index"
4307
- checksum = "882ceaa29cade31beca7129b6beeb05737f44f82dbe2a9806ecea5a7093d00b7"
4328
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
4308
4329
  dependencies = [
4309
4330
  "dotenvy",
4310
4331
  "either",
@@ -4320,17 +4341,16 @@ dependencies = [
4320
4341
  "sqlx-mysql",
4321
4342
  "sqlx-postgres",
4322
4343
  "sqlx-sqlite",
4323
- "syn 2.0.101",
4324
- "tempfile",
4344
+ "syn 2.0.104",
4325
4345
  "tokio",
4326
4346
  "url",
4327
4347
  ]
4328
4348
 
4329
4349
  [[package]]
4330
4350
  name = "sqlx-mysql"
4331
- version = "0.8.5"
4351
+ version = "0.8.6"
4332
4352
  source = "registry+https://github.com/rust-lang/crates.io-index"
4333
- checksum = "0afdd3aa7a629683c2d750c2df343025545087081ab5942593a5288855b1b7a7"
4353
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
4334
4354
  dependencies = [
4335
4355
  "atoi",
4336
4356
  "base64 0.22.1",
@@ -4372,9 +4392,9 @@ dependencies = [
4372
4392
 
4373
4393
  [[package]]
4374
4394
  name = "sqlx-postgres"
4375
- version = "0.8.5"
4395
+ version = "0.8.6"
4376
4396
  source = "registry+https://github.com/rust-lang/crates.io-index"
4377
- checksum = "a0bedbe1bbb5e2615ef347a5e9d8cd7680fb63e77d9dafc0f29be15e53f1ebe6"
4397
+ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
4378
4398
  dependencies = [
4379
4399
  "atoi",
4380
4400
  "base64 0.22.1",
@@ -4411,9 +4431,9 @@ dependencies = [
4411
4431
 
4412
4432
  [[package]]
4413
4433
  name = "sqlx-sqlite"
4414
- version = "0.8.5"
4434
+ version = "0.8.6"
4415
4435
  source = "registry+https://github.com/rust-lang/crates.io-index"
4416
- checksum = "c26083e9a520e8eb87a06b12347679b142dc2ea29e6e409f805644a7a979a5bc"
4436
+ checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
4417
4437
  dependencies = [
4418
4438
  "atoi",
4419
4439
  "chrono",
@@ -4483,9 +4503,9 @@ dependencies = [
4483
4503
 
4484
4504
  [[package]]
4485
4505
  name = "syn"
4486
- version = "2.0.101"
4506
+ version = "2.0.104"
4487
4507
  source = "registry+https://github.com/rust-lang/crates.io-index"
4488
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
4508
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
4489
4509
  dependencies = [
4490
4510
  "proc-macro2",
4491
4511
  "quote",
@@ -4503,13 +4523,13 @@ dependencies = [
4503
4523
 
4504
4524
  [[package]]
4505
4525
  name = "synstructure"
4506
- version = "0.13.1"
4526
+ version = "0.13.2"
4507
4527
  source = "registry+https://github.com/rust-lang/crates.io-index"
4508
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
4528
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
4509
4529
  dependencies = [
4510
4530
  "proc-macro2",
4511
4531
  "quote",
4512
- "syn 2.0.101",
4532
+ "syn 2.0.104",
4513
4533
  ]
4514
4534
 
4515
4535
  [[package]]
@@ -4518,19 +4538,6 @@ version = "0.13.2"
4518
4538
  source = "registry+https://github.com/rust-lang/crates.io-index"
4519
4539
  checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
4520
4540
 
4521
- [[package]]
4522
- name = "tempfile"
4523
- version = "3.19.1"
4524
- source = "registry+https://github.com/rust-lang/crates.io-index"
4525
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
4526
- dependencies = [
4527
- "fastrand",
4528
- "getrandom 0.3.2",
4529
- "once_cell",
4530
- "rustix 1.0.5",
4531
- "windows-sys 0.59.0",
4532
- ]
4533
-
4534
4541
  [[package]]
4535
4542
  name = "thiserror"
4536
4543
  version = "1.0.69"
@@ -4557,7 +4564,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
4557
4564
  dependencies = [
4558
4565
  "proc-macro2",
4559
4566
  "quote",
4560
- "syn 2.0.101",
4567
+ "syn 2.0.104",
4561
4568
  ]
4562
4569
 
4563
4570
  [[package]]
@@ -4568,7 +4575,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
4568
4575
  dependencies = [
4569
4576
  "proc-macro2",
4570
4577
  "quote",
4571
- "syn 2.0.101",
4578
+ "syn 2.0.104",
4572
4579
  ]
4573
4580
 
4574
4581
  [[package]]
@@ -4615,9 +4622,9 @@ dependencies = [
4615
4622
 
4616
4623
  [[package]]
4617
4624
  name = "tinystr"
4618
- version = "0.7.6"
4625
+ version = "0.8.1"
4619
4626
  source = "registry+https://github.com/rust-lang/crates.io-index"
4620
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
4627
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
4621
4628
  dependencies = [
4622
4629
  "displaydoc",
4623
4630
  "zerovec",
@@ -4640,9 +4647,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4640
4647
 
4641
4648
  [[package]]
4642
4649
  name = "tokio"
4643
- version = "1.44.2"
4650
+ version = "1.45.1"
4644
4651
  source = "registry+https://github.com/rust-lang/crates.io-index"
4645
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
4652
+ checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
4646
4653
  dependencies = [
4647
4654
  "backtrace",
4648
4655
  "bytes",
@@ -4665,7 +4672,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
4665
4672
  dependencies = [
4666
4673
  "proc-macro2",
4667
4674
  "quote",
4668
- "syn 2.0.101",
4675
+ "syn 2.0.104",
4669
4676
  ]
4670
4677
 
4671
4678
  [[package]]
@@ -4684,7 +4691,7 @@ version = "0.26.2"
4684
4691
  source = "registry+https://github.com/rust-lang/crates.io-index"
4685
4692
  checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
4686
4693
  dependencies = [
4687
- "rustls 0.23.26",
4694
+ "rustls 0.23.28",
4688
4695
  "tokio",
4689
4696
  ]
4690
4697
 
@@ -4714,9 +4721,9 @@ dependencies = [
4714
4721
 
4715
4722
  [[package]]
4716
4723
  name = "toml"
4717
- version = "0.8.21"
4724
+ version = "0.8.23"
4718
4725
  source = "registry+https://github.com/rust-lang/crates.io-index"
4719
- checksum = "900f6c86a685850b1bc9f6223b20125115ee3f31e01207d81655bbcc0aea9231"
4726
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
4720
4727
  dependencies = [
4721
4728
  "serde",
4722
4729
  "serde_spanned",
@@ -4726,18 +4733,18 @@ dependencies = [
4726
4733
 
4727
4734
  [[package]]
4728
4735
  name = "toml_datetime"
4729
- version = "0.6.9"
4736
+ version = "0.6.11"
4730
4737
  source = "registry+https://github.com/rust-lang/crates.io-index"
4731
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
4738
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
4732
4739
  dependencies = [
4733
4740
  "serde",
4734
4741
  ]
4735
4742
 
4736
4743
  [[package]]
4737
4744
  name = "toml_edit"
4738
- version = "0.22.25"
4745
+ version = "0.22.27"
4739
4746
  source = "registry+https://github.com/rust-lang/crates.io-index"
4740
- checksum = "10558ed0bd2a1562e630926a2d1f0b98c827da99fabd3fe20920a59642504485"
4747
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
4741
4748
  dependencies = [
4742
4749
  "indexmap 2.9.0",
4743
4750
  "serde",
@@ -4749,9 +4756,9 @@ dependencies = [
4749
4756
 
4750
4757
  [[package]]
4751
4758
  name = "toml_write"
4752
- version = "0.1.0"
4759
+ version = "0.1.2"
4753
4760
  source = "registry+https://github.com/rust-lang/crates.io-index"
4754
- checksum = "28391a4201ba7eb1984cfeb6862c0b3ea2cfe23332298967c749dddc0d6cd976"
4761
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
4755
4762
 
4756
4763
  [[package]]
4757
4764
  name = "tonic"
@@ -4765,7 +4772,7 @@ dependencies = [
4765
4772
  "base64 0.22.1",
4766
4773
  "bytes",
4767
4774
  "flate2",
4768
- "h2 0.4.9",
4775
+ "h2 0.4.10",
4769
4776
  "http 1.3.1",
4770
4777
  "http-body 1.0.1",
4771
4778
  "http-body-util",
@@ -4825,15 +4832,18 @@ dependencies = [
4825
4832
 
4826
4833
  [[package]]
4827
4834
  name = "tower-http"
4828
- version = "0.6.2"
4835
+ version = "0.6.6"
4829
4836
  source = "registry+https://github.com/rust-lang/crates.io-index"
4830
- checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
4837
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
4831
4838
  dependencies = [
4832
4839
  "bitflags",
4833
4840
  "bytes",
4841
+ "futures-util",
4834
4842
  "http 1.3.1",
4835
4843
  "http-body 1.0.1",
4844
+ "iri-string",
4836
4845
  "pin-project-lite",
4846
+ "tower 0.5.2",
4837
4847
  "tower-layer",
4838
4848
  "tower-service",
4839
4849
  "tracing",
@@ -4865,29 +4875,29 @@ dependencies = [
4865
4875
 
4866
4876
  [[package]]
4867
4877
  name = "tracing-attributes"
4868
- version = "0.1.28"
4878
+ version = "0.1.30"
4869
4879
  source = "registry+https://github.com/rust-lang/crates.io-index"
4870
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
4880
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
4871
4881
  dependencies = [
4872
4882
  "proc-macro2",
4873
4883
  "quote",
4874
- "syn 2.0.101",
4884
+ "syn 2.0.104",
4875
4885
  ]
4876
4886
 
4877
4887
  [[package]]
4878
4888
  name = "tracing-core"
4879
- version = "0.1.33"
4889
+ version = "0.1.34"
4880
4890
  source = "registry+https://github.com/rust-lang/crates.io-index"
4881
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
4891
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
4882
4892
  dependencies = [
4883
4893
  "once_cell",
4884
4894
  ]
4885
4895
 
4886
4896
  [[package]]
4887
4897
  name = "tree-sitter"
4888
- version = "0.25.3"
4898
+ version = "0.25.6"
4889
4899
  source = "registry+https://github.com/rust-lang/crates.io-index"
4890
- checksum = "b9ac5ea5e7f2f1700842ec071401010b9c59bf735295f6e9fa079c3dc035b167"
4900
+ checksum = "a7cf18d43cbf0bfca51f657132cc616a5097edc4424d538bae6fa60142eaf9f0"
4891
4901
  dependencies = [
4892
4902
  "cc",
4893
4903
  "regex",
@@ -5045,9 +5055,9 @@ dependencies = [
5045
5055
 
5046
5056
  [[package]]
5047
5057
  name = "tree-sitter-r"
5048
- version = "1.1.0"
5058
+ version = "1.2.0"
5049
5059
  source = "registry+https://github.com/rust-lang/crates.io-index"
5050
- checksum = "51759bc3400109e5e5e09e80745d9e787655634e9c3b6e736eeaef44e7bcec0b"
5060
+ checksum = "429133cbda9f8a46e03ef3aae6abb6c3d22875f8585cad472138101bfd517255"
5051
5061
  dependencies = [
5052
5062
  "cc",
5053
5063
  "tree-sitter-language",
@@ -5095,9 +5105,9 @@ dependencies = [
5095
5105
 
5096
5106
  [[package]]
5097
5107
  name = "tree-sitter-swift"
5098
- version = "0.7.0"
5108
+ version = "0.7.1"
5099
5109
  source = "registry+https://github.com/rust-lang/crates.io-index"
5100
- checksum = "bdc72ea9c62a6d188c9f7d64109a9b14b09231852b87229c68c44e8738b9e6b9"
5110
+ checksum = "4ef216011c3e3df4fa864736f347cb8d509b1066cf0c8549fb1fd81ac9832e59"
5101
5111
  dependencies = [
5102
5112
  "cc",
5103
5113
  "tree-sitter-language",
@@ -5135,9 +5145,9 @@ dependencies = [
5135
5145
 
5136
5146
  [[package]]
5137
5147
  name = "tree-sitter-yaml"
5138
- version = "0.7.0"
5148
+ version = "0.7.1"
5139
5149
  source = "registry+https://github.com/rust-lang/crates.io-index"
5140
- checksum = "d0c99f2b92b677f1a18b6b232fa9329afb5758118238a7d0b29cae324ef50d5e"
5150
+ checksum = "3d5893f2a05e57c86a2338aa3aed167a1e5c68b8fdff3bf4a460941f2d8fc944"
5141
5151
  dependencies = [
5142
5152
  "cc",
5143
5153
  "tree-sitter-language",
@@ -5235,12 +5245,6 @@ version = "2.1.3"
5235
5245
  source = "registry+https://github.com/rust-lang/crates.io-index"
5236
5246
  checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
5237
5247
 
5238
- [[package]]
5239
- name = "utf16_iter"
5240
- version = "1.0.5"
5241
- source = "registry+https://github.com/rust-lang/crates.io-index"
5242
- checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
5243
-
5244
5248
  [[package]]
5245
5249
  name = "utf8_iter"
5246
5250
  version = "1.0.4"
@@ -5255,12 +5259,14 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
5255
5259
 
5256
5260
  [[package]]
5257
5261
  name = "uuid"
5258
- version = "1.16.0"
5262
+ version = "1.17.0"
5259
5263
  source = "registry+https://github.com/rust-lang/crates.io-index"
5260
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
5264
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
5261
5265
  dependencies = [
5262
- "getrandom 0.3.2",
5266
+ "getrandom 0.3.3",
5267
+ "js-sys",
5263
5268
  "serde",
5269
+ "wasm-bindgen",
5264
5270
  ]
5265
5271
 
5266
5272
  [[package]]
@@ -5292,9 +5298,9 @@ dependencies = [
5292
5298
 
5293
5299
  [[package]]
5294
5300
  name = "wasi"
5295
- version = "0.11.0+wasi-snapshot-preview1"
5301
+ version = "0.11.1+wasi-snapshot-preview1"
5296
5302
  source = "registry+https://github.com/rust-lang/crates.io-index"
5297
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
5303
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
5298
5304
 
5299
5305
  [[package]]
5300
5306
  name = "wasi"
@@ -5333,7 +5339,7 @@ dependencies = [
5333
5339
  "log",
5334
5340
  "proc-macro2",
5335
5341
  "quote",
5336
- "syn 2.0.101",
5342
+ "syn 2.0.104",
5337
5343
  "wasm-bindgen-shared",
5338
5344
  ]
5339
5345
 
@@ -5368,7 +5374,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
5368
5374
  dependencies = [
5369
5375
  "proc-macro2",
5370
5376
  "quote",
5371
- "syn 2.0.101",
5377
+ "syn 2.0.104",
5372
5378
  "wasm-bindgen-backend",
5373
5379
  "wasm-bindgen-shared",
5374
5380
  ]
@@ -5417,9 +5423,18 @@ dependencies = [
5417
5423
 
5418
5424
  [[package]]
5419
5425
  name = "webpki-roots"
5420
- version = "0.26.9"
5426
+ version = "0.26.11"
5421
5427
  source = "registry+https://github.com/rust-lang/crates.io-index"
5422
- checksum = "29aad86cec885cafd03e8305fd727c418e970a521322c91688414d5b8efba16b"
5428
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
5429
+ dependencies = [
5430
+ "webpki-roots 1.0.1",
5431
+ ]
5432
+
5433
+ [[package]]
5434
+ name = "webpki-roots"
5435
+ version = "1.0.1"
5436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5437
+ checksum = "8782dd5a41a24eed3a4f40b606249b3e236ca61adf1f25ea4d45c73de122b502"
5423
5438
  dependencies = [
5424
5439
  "rustls-pki-types",
5425
5440
  ]
@@ -5433,7 +5448,7 @@ dependencies = [
5433
5448
  "either",
5434
5449
  "home",
5435
5450
  "once_cell",
5436
- "rustix 0.38.44",
5451
+ "rustix",
5437
5452
  ]
5438
5453
 
5439
5454
  [[package]]
@@ -5448,15 +5463,15 @@ dependencies = [
5448
5463
 
5449
5464
  [[package]]
5450
5465
  name = "windows-core"
5451
- version = "0.61.0"
5466
+ version = "0.61.2"
5452
5467
  source = "registry+https://github.com/rust-lang/crates.io-index"
5453
- checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
5468
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
5454
5469
  dependencies = [
5455
5470
  "windows-implement",
5456
5471
  "windows-interface",
5457
5472
  "windows-link",
5458
5473
  "windows-result",
5459
- "windows-strings 0.4.0",
5474
+ "windows-strings",
5460
5475
  ]
5461
5476
 
5462
5477
  [[package]]
@@ -5467,7 +5482,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
5467
5482
  dependencies = [
5468
5483
  "proc-macro2",
5469
5484
  "quote",
5470
- "syn 2.0.101",
5485
+ "syn 2.0.104",
5471
5486
  ]
5472
5487
 
5473
5488
  [[package]]
@@ -5478,49 +5493,29 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
5478
5493
  dependencies = [
5479
5494
  "proc-macro2",
5480
5495
  "quote",
5481
- "syn 2.0.101",
5496
+ "syn 2.0.104",
5482
5497
  ]
5483
5498
 
5484
5499
  [[package]]
5485
5500
  name = "windows-link"
5486
- version = "0.1.1"
5487
- source = "registry+https://github.com/rust-lang/crates.io-index"
5488
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
5489
-
5490
- [[package]]
5491
- name = "windows-registry"
5492
- version = "0.4.0"
5501
+ version = "0.1.3"
5493
5502
  source = "registry+https://github.com/rust-lang/crates.io-index"
5494
- checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
5495
- dependencies = [
5496
- "windows-result",
5497
- "windows-strings 0.3.1",
5498
- "windows-targets 0.53.0",
5499
- ]
5503
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
5500
5504
 
5501
5505
  [[package]]
5502
5506
  name = "windows-result"
5503
- version = "0.3.2"
5504
- source = "registry+https://github.com/rust-lang/crates.io-index"
5505
- checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
5506
- dependencies = [
5507
- "windows-link",
5508
- ]
5509
-
5510
- [[package]]
5511
- name = "windows-strings"
5512
- version = "0.3.1"
5507
+ version = "0.3.4"
5513
5508
  source = "registry+https://github.com/rust-lang/crates.io-index"
5514
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
5509
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
5515
5510
  dependencies = [
5516
5511
  "windows-link",
5517
5512
  ]
5518
5513
 
5519
5514
  [[package]]
5520
5515
  name = "windows-strings"
5521
- version = "0.4.0"
5516
+ version = "0.4.2"
5522
5517
  source = "registry+https://github.com/rust-lang/crates.io-index"
5523
- checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
5518
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
5524
5519
  dependencies = [
5525
5520
  "windows-link",
5526
5521
  ]
@@ -5552,6 +5547,15 @@ dependencies = [
5552
5547
  "windows-targets 0.52.6",
5553
5548
  ]
5554
5549
 
5550
+ [[package]]
5551
+ name = "windows-sys"
5552
+ version = "0.60.2"
5553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5554
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5555
+ dependencies = [
5556
+ "windows-targets 0.53.2",
5557
+ ]
5558
+
5555
5559
  [[package]]
5556
5560
  name = "windows-targets"
5557
5561
  version = "0.48.5"
@@ -5585,9 +5589,9 @@ dependencies = [
5585
5589
 
5586
5590
  [[package]]
5587
5591
  name = "windows-targets"
5588
- version = "0.53.0"
5592
+ version = "0.53.2"
5589
5593
  source = "registry+https://github.com/rust-lang/crates.io-index"
5590
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
5594
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
5591
5595
  dependencies = [
5592
5596
  "windows_aarch64_gnullvm 0.53.0",
5593
5597
  "windows_aarch64_msvc 0.53.0",
@@ -5739,9 +5743,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
5739
5743
 
5740
5744
  [[package]]
5741
5745
  name = "winnow"
5742
- version = "0.7.7"
5746
+ version = "0.7.11"
5743
5747
  source = "registry+https://github.com/rust-lang/crates.io-index"
5744
- checksum = "6cb8234a863ea0e8cd7284fcdd4f145233eb00fee02bbdd9861aec44e6477bc5"
5748
+ checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
5745
5749
  dependencies = [
5746
5750
  "memchr",
5747
5751
  ]
@@ -5755,17 +5759,11 @@ dependencies = [
5755
5759
  "bitflags",
5756
5760
  ]
5757
5761
 
5758
- [[package]]
5759
- name = "write16"
5760
- version = "1.0.0"
5761
- source = "registry+https://github.com/rust-lang/crates.io-index"
5762
- checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
5763
-
5764
5762
  [[package]]
5765
5763
  name = "writeable"
5766
- version = "0.5.5"
5764
+ version = "0.6.1"
5767
5765
  source = "registry+https://github.com/rust-lang/crates.io-index"
5768
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
5766
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
5769
5767
 
5770
5768
  [[package]]
5771
5769
  name = "xmlparser"
@@ -5786,9 +5784,9 @@ dependencies = [
5786
5784
 
5787
5785
  [[package]]
5788
5786
  name = "yaml-rust2"
5789
- version = "0.10.1"
5787
+ version = "0.10.3"
5790
5788
  source = "registry+https://github.com/rust-lang/crates.io-index"
5791
- checksum = "818913695e83ece1f8d2a1c52d54484b7b46d0f9c06beeb2649b9da50d9b512d"
5789
+ checksum = "4ce2a4ff45552406d02501cea6c18d8a7e50228e7736a872951fe2fe75c91be7"
5792
5790
  dependencies = [
5793
5791
  "arraydeque",
5794
5792
  "encoding_rs",
@@ -5797,9 +5795,9 @@ dependencies = [
5797
5795
 
5798
5796
  [[package]]
5799
5797
  name = "yoke"
5800
- version = "0.7.5"
5798
+ version = "0.8.0"
5801
5799
  source = "registry+https://github.com/rust-lang/crates.io-index"
5802
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
5800
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
5803
5801
  dependencies = [
5804
5802
  "serde",
5805
5803
  "stable_deref_trait",
@@ -5809,13 +5807,13 @@ dependencies = [
5809
5807
 
5810
5808
  [[package]]
5811
5809
  name = "yoke-derive"
5812
- version = "0.7.5"
5810
+ version = "0.8.0"
5813
5811
  source = "registry+https://github.com/rust-lang/crates.io-index"
5814
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
5812
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
5815
5813
  dependencies = [
5816
5814
  "proc-macro2",
5817
5815
  "quote",
5818
- "syn 2.0.101",
5816
+ "syn 2.0.104",
5819
5817
  "synstructure",
5820
5818
  ]
5821
5819
 
@@ -5832,11 +5830,11 @@ dependencies = [
5832
5830
  "http 1.3.1",
5833
5831
  "http-body-util",
5834
5832
  "hyper 1.6.0",
5835
- "hyper-rustls 0.27.5",
5833
+ "hyper-rustls 0.27.7",
5836
5834
  "hyper-util",
5837
5835
  "log",
5838
5836
  "percent-encoding",
5839
- "rustls 0.23.26",
5837
+ "rustls 0.23.28",
5840
5838
  "rustls-pemfile 2.2.0",
5841
5839
  "seahash",
5842
5840
  "serde",
@@ -5857,11 +5855,11 @@ dependencies = [
5857
5855
  "http 1.3.1",
5858
5856
  "http-body-util",
5859
5857
  "hyper 1.6.0",
5860
- "hyper-rustls 0.27.5",
5858
+ "hyper-rustls 0.27.7",
5861
5859
  "hyper-util",
5862
5860
  "log",
5863
5861
  "percent-encoding",
5864
- "rustls 0.23.26",
5862
+ "rustls 0.23.28",
5865
5863
  "rustls-pemfile 2.2.0",
5866
5864
  "seahash",
5867
5865
  "serde",
@@ -5874,42 +5872,22 @@ dependencies = [
5874
5872
 
5875
5873
  [[package]]
5876
5874
  name = "zerocopy"
5877
- version = "0.7.35"
5878
- source = "registry+https://github.com/rust-lang/crates.io-index"
5879
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
5880
- dependencies = [
5881
- "zerocopy-derive 0.7.35",
5882
- ]
5883
-
5884
- [[package]]
5885
- name = "zerocopy"
5886
- version = "0.8.25"
5875
+ version = "0.8.26"
5887
5876
  source = "registry+https://github.com/rust-lang/crates.io-index"
5888
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
5877
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
5889
5878
  dependencies = [
5890
- "zerocopy-derive 0.8.25",
5879
+ "zerocopy-derive",
5891
5880
  ]
5892
5881
 
5893
5882
  [[package]]
5894
5883
  name = "zerocopy-derive"
5895
- version = "0.7.35"
5884
+ version = "0.8.26"
5896
5885
  source = "registry+https://github.com/rust-lang/crates.io-index"
5897
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
5886
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
5898
5887
  dependencies = [
5899
5888
  "proc-macro2",
5900
5889
  "quote",
5901
- "syn 2.0.101",
5902
- ]
5903
-
5904
- [[package]]
5905
- name = "zerocopy-derive"
5906
- version = "0.8.25"
5907
- source = "registry+https://github.com/rust-lang/crates.io-index"
5908
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
5909
- dependencies = [
5910
- "proc-macro2",
5911
- "quote",
5912
- "syn 2.0.101",
5890
+ "syn 2.0.104",
5913
5891
  ]
5914
5892
 
5915
5893
  [[package]]
@@ -5929,7 +5907,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5929
5907
  dependencies = [
5930
5908
  "proc-macro2",
5931
5909
  "quote",
5932
- "syn 2.0.101",
5910
+ "syn 2.0.104",
5933
5911
  "synstructure",
5934
5912
  ]
5935
5913
 
@@ -5939,11 +5917,22 @@ version = "1.8.1"
5939
5917
  source = "registry+https://github.com/rust-lang/crates.io-index"
5940
5918
  checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
5941
5919
 
5920
+ [[package]]
5921
+ name = "zerotrie"
5922
+ version = "0.2.2"
5923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5924
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
5925
+ dependencies = [
5926
+ "displaydoc",
5927
+ "yoke",
5928
+ "zerofrom",
5929
+ ]
5930
+
5942
5931
  [[package]]
5943
5932
  name = "zerovec"
5944
- version = "0.10.4"
5933
+ version = "0.11.2"
5945
5934
  source = "registry+https://github.com/rust-lang/crates.io-index"
5946
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
5935
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
5947
5936
  dependencies = [
5948
5937
  "yoke",
5949
5938
  "zerofrom",
@@ -5952,11 +5941,11 @@ dependencies = [
5952
5941
 
5953
5942
  [[package]]
5954
5943
  name = "zerovec-derive"
5955
- version = "0.10.3"
5944
+ version = "0.11.1"
5956
5945
  source = "registry+https://github.com/rust-lang/crates.io-index"
5957
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
5946
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
5958
5947
  dependencies = [
5959
5948
  "proc-macro2",
5960
5949
  "quote",
5961
- "syn 2.0.101",
5950
+ "syn 2.0.104",
5962
5951
  ]