cocoindex 0.1.63__tar.gz → 0.1.65__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 (270) hide show
  1. {cocoindex-0.1.63 → cocoindex-0.1.65}/Cargo.lock +539 -524
  2. {cocoindex-0.1.63 → cocoindex-0.1.65}/Cargo.toml +4 -2
  3. {cocoindex-0.1.63 → cocoindex-0.1.65}/PKG-INFO +1 -1
  4. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/flow_def.mdx +51 -3
  5. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/flow_methods.mdx +18 -1
  6. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/settings.mdx +14 -1
  7. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/yarn.lock +742 -730
  8. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/amazon_s3_embedding/pyproject.toml +1 -1
  9. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/code_embedding/pyproject.toml +1 -1
  10. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/docs_to_knowledge_graph/pyproject.toml +1 -1
  11. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/requirements.txt +1 -1
  12. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/gdrive_text_embedding/pyproject.toml +1 -1
  13. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/README.md +11 -1
  14. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/main.py +41 -6
  15. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/pyproject.toml +1 -1
  16. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/pyproject.toml +1 -1
  17. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/main.py +35 -36
  18. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/pyproject.toml +1 -1
  19. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/pyproject.toml +1 -1
  20. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/pdf_embedding/pyproject.toml +1 -1
  21. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/pyproject.toml +1 -1
  22. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/pyproject.toml +1 -1
  23. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding_qdrant/pyproject.toml +1 -1
  24. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/__init__.py +3 -0
  25. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/convert.py +10 -3
  26. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/flow.py +65 -16
  27. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/setting.py +39 -2
  28. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/tests/test_convert.py +135 -11
  29. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/typing.py +4 -4
  30. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/base/spec.rs +17 -1
  31. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/base/value.rs +339 -0
  32. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/builder/analyzer.rs +24 -4
  33. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/builder/flow_builder.rs +60 -46
  34. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/builder/plan.rs +3 -1
  35. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/dumper.rs +4 -0
  36. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/evaluator.rs +29 -0
  37. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/live_updater.rs +5 -0
  38. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/source_indexer.rs +127 -85
  39. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/lib_context.rs +16 -20
  40. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/anthropic.rs +46 -21
  41. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/gemini.rs +31 -17
  42. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/mod.rs +12 -0
  43. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/ollama.rs +15 -6
  44. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/openai.rs +31 -7
  45. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/voyage.rs +11 -8
  46. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/functions/embed_text.rs +55 -0
  47. cocoindex-0.1.65/src/ops/functions/extract_by_llm.rs +251 -0
  48. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/functions/mod.rs +3 -0
  49. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/functions/parse_json.rs +43 -0
  50. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/functions/split_recursively.rs +61 -0
  51. cocoindex-0.1.65/src/ops/functions/test_utils.rs +73 -0
  52. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/prelude.rs +1 -1
  53. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/py/mod.rs +9 -0
  54. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/service/error.rs +2 -0
  55. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/settings.rs +9 -1
  56. cocoindex-0.1.65/src/utils/concur_control.rs +176 -0
  57. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/utils/mod.rs +1 -3
  58. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/utils/retryable.rs +13 -1
  59. cocoindex-0.1.63/examples/image_search/requirements.txt +0 -5
  60. cocoindex-0.1.63/src/ops/functions/extract_by_llm.rs +0 -131
  61. cocoindex-0.1.63/src/utils/concur_control.rs +0 -30
  62. {cocoindex-0.1.63 → cocoindex-0.1.65}/.cargo/config.toml +0 -0
  63. {cocoindex-0.1.63 → cocoindex-0.1.65}/.env.lib_debug +0 -0
  64. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/ISSUE_TEMPLATE//360/237/220/233-bug-report.md" +0 -0
  65. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/ISSUE_TEMPLATE//360/237/222/241-feature-request.md" +0 -0
  66. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/scripts/update_version.sh +0 -0
  67. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/workflows/CI.yml +0 -0
  68. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/workflows/_doc_release.yml +0 -0
  69. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/workflows/_test.yml +0 -0
  70. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/workflows/docs.yml +0 -0
  71. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/workflows/format.yml +0 -0
  72. {cocoindex-0.1.63 → cocoindex-0.1.65}/.github/workflows/release.yml +0 -0
  73. {cocoindex-0.1.63 → cocoindex-0.1.65}/.gitignore +0 -0
  74. {cocoindex-0.1.63 → cocoindex-0.1.65}/.pre-commit-config.yaml +0 -0
  75. {cocoindex-0.1.63 → cocoindex-0.1.65}/CODE_OF_CONDUCT.md +0 -0
  76. {cocoindex-0.1.63 → cocoindex-0.1.65}/CONTRIBUTING.md +0 -0
  77. {cocoindex-0.1.63 → cocoindex-0.1.65}/LICENSE +0 -0
  78. {cocoindex-0.1.63 → cocoindex-0.1.65}/README.md +0 -0
  79. {cocoindex-0.1.63 → cocoindex-0.1.65}/dev/neo4j.yaml +0 -0
  80. {cocoindex-0.1.63 → cocoindex-0.1.65}/dev/postgres.yaml +0 -0
  81. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/.gitignore +0 -0
  82. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/README.md +0 -0
  83. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/about/community.md +0 -0
  84. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/about/contributing.md +0 -0
  85. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/ai/llm.mdx +0 -0
  86. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/basics.md +0 -0
  87. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/cli.mdx +0 -0
  88. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/custom_function.mdx +0 -0
  89. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/data_example.svg +0 -0
  90. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/data_types.mdx +0 -0
  91. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/core/flow_example.svg +0 -0
  92. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/getting_started/installation.md +0 -0
  93. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/getting_started/markdown_files.zip +0 -0
  94. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/getting_started/overview.md +0 -0
  95. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/getting_started/quickstart.md +0 -0
  96. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/ops/functions.md +0 -0
  97. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/ops/sources.md +0 -0
  98. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/ops/targets.md +0 -0
  99. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docs/query.mdx +0 -0
  100. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/docusaurus.config.ts +0 -0
  101. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/package.json +0 -0
  102. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/sidebars.ts +0 -0
  103. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/src/components/HomepageFeatures/index.tsx +0 -0
  104. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/src/components/HomepageFeatures/styles.module.css +0 -0
  105. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/src/css/custom.css +0 -0
  106. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/src/theme/Root.js +0 -0
  107. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/static/.nojekyll +0 -0
  108. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/static/img/docusaurus.png +0 -0
  109. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/static/img/favicon.ico +0 -0
  110. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/static/img/icon.svg +0 -0
  111. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/static/img/incremental-etl.gif +0 -0
  112. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/static/robots.txt +0 -0
  113. {cocoindex-0.1.63 → cocoindex-0.1.65}/docs/tsconfig.json +0 -0
  114. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/amazon_s3_embedding/.env.example +0 -0
  115. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/amazon_s3_embedding/.gitignore +0 -0
  116. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/amazon_s3_embedding/README.md +0 -0
  117. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/amazon_s3_embedding/main.py +0 -0
  118. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/code_embedding/.env +0 -0
  119. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/code_embedding/README.md +0 -0
  120. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/code_embedding/main.py +0 -0
  121. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/docs_to_knowledge_graph/.env +0 -0
  122. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/docs_to_knowledge_graph/README.md +0 -0
  123. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/docs_to_knowledge_graph/main.py +0 -0
  124. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/.dockerignore +0 -0
  125. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/.env +0 -0
  126. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/README.md +0 -0
  127. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/compose.yaml +0 -0
  128. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/dockerfile +0 -0
  129. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/files/1810.04805v2.md +0 -0
  130. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/fastapi_server_docker/main.py +0 -0
  131. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/gdrive_text_embedding/.env.example +0 -0
  132. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/gdrive_text_embedding/.gitignore +0 -0
  133. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/gdrive_text_embedding/README.md +0 -0
  134. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/gdrive_text_embedding/main.py +0 -0
  135. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/.env +0 -0
  136. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/.gitignore +0 -0
  137. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/index.html +0 -0
  138. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/package-lock.json +0 -0
  139. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/package.json +0 -0
  140. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/src/App.jsx +0 -0
  141. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/src/main.jsx +0 -0
  142. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/src/style.css +0 -0
  143. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/frontend/vite.config.js +0 -0
  144. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/img/cat1.jpeg +0 -0
  145. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/img/dog1.jpeg +0 -0
  146. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/img/elephant1.jpg +0 -0
  147. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/image_search/img/giraffe.jpg +0 -0
  148. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/.env +0 -0
  149. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/README.md +0 -0
  150. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/main.py +0 -0
  151. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/manuals/array.pdf +0 -0
  152. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/manuals/base64.pdf +0 -0
  153. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/manuals/copy.pdf +0 -0
  154. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/manuals_llm_extraction/manuals/glob.pdf +0 -0
  155. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/.env.example +0 -0
  156. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/.gitignore +0 -0
  157. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/README.md +0 -0
  158. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/papers/1706.03762v7.pdf +0 -0
  159. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/papers/1810.04805v2.pdf +0 -0
  160. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/papers/2502.06786v3.pdf +0 -0
  161. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/paper_metadata/papers/2502.20346v1.pdf +0 -0
  162. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/.env.example +0 -0
  163. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/README.md +0 -0
  164. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/data/README.md +0 -0
  165. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_David_Artificial.docx +0 -0
  166. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Emily_Artificial.pdf +0 -0
  167. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Joe_Artificial.pdf +0 -0
  168. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_From_Jane_Artificial.docx +0 -0
  169. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/patient_intake_extraction/main.py +0 -0
  170. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/pdf_embedding/.env +0 -0
  171. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/pdf_embedding/README.md +0 -0
  172. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/pdf_embedding/main.py +0 -0
  173. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/pdf_embedding/pdf_files/1706.03762v7.pdf +0 -0
  174. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/pdf_embedding/pdf_files/1810.04805v2.pdf +0 -0
  175. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/pdf_embedding/pdf_files/rfc8259.pdf +0 -0
  176. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/.env +0 -0
  177. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/README.md +0 -0
  178. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/img/cocoinsight.png +0 -0
  179. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/img/neo4j.png +0 -0
  180. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/main.py +0 -0
  181. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p1.json +0 -0
  182. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p2.json +0 -0
  183. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p3.json +0 -0
  184. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p4.json +0 -0
  185. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p5.json +0 -0
  186. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p6.json +0 -0
  187. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p7.json +0 -0
  188. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p8.json +0 -0
  189. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/product_recommendation/products/p9.json +0 -0
  190. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/.env +0 -0
  191. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/README.md +0 -0
  192. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/Text_Embedding.ipynb +0 -0
  193. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/main.py +0 -0
  194. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/markdown_files/1706.03762v7.md +0 -0
  195. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/markdown_files/1810.04805v2.md +0 -0
  196. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding/markdown_files/rfc8259.md +0 -0
  197. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding_qdrant/.env +0 -0
  198. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding_qdrant/README.md +0 -0
  199. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding_qdrant/main.py +0 -0
  200. {cocoindex-0.1.63 → cocoindex-0.1.65}/examples/text_embedding_qdrant/markdown_files/rfc8259.md +0 -0
  201. {cocoindex-0.1.63 → cocoindex-0.1.65}/pyproject.toml +0 -0
  202. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/auth_registry.py +0 -0
  203. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/cli.py +0 -0
  204. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/functions.py +0 -0
  205. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/index.py +0 -0
  206. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/lib.py +0 -0
  207. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/llm.py +0 -0
  208. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/op.py +0 -0
  209. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/py.typed +0 -0
  210. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/runtime.py +0 -0
  211. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/setup.py +0 -0
  212. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/sources.py +0 -0
  213. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/targets.py +0 -0
  214. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/tests/__init__.py +0 -0
  215. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/tests/test_optional_database.py +0 -0
  216. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/tests/test_typing.py +0 -0
  217. {cocoindex-0.1.63 → cocoindex-0.1.65}/python/cocoindex/utils.py +0 -0
  218. {cocoindex-0.1.63 → cocoindex-0.1.65}/ruff.toml +0 -0
  219. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/base/duration.rs +0 -0
  220. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/base/field_attrs.rs +0 -0
  221. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/base/json_schema.rs +0 -0
  222. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/base/mod.rs +0 -0
  223. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/base/schema.rs +0 -0
  224. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/builder/analyzed_flow.rs +0 -0
  225. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/builder/exec_ctx.rs +0 -0
  226. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/builder/mod.rs +0 -0
  227. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/db_tracking.rs +0 -0
  228. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/db_tracking_setup.rs +0 -0
  229. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/indexing_status.rs +0 -0
  230. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/memoization.rs +0 -0
  231. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/mod.rs +0 -0
  232. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/row_indexer.rs +0 -0
  233. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/execution/stats.rs +0 -0
  234. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/lib.rs +0 -0
  235. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/litellm.rs +0 -0
  236. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/openrouter.rs +0 -0
  237. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/llm/vllm.rs +0 -0
  238. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/factory_bases.rs +0 -0
  239. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/interface.rs +0 -0
  240. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/mod.rs +0 -0
  241. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/py_factory.rs +0 -0
  242. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/registration.rs +0 -0
  243. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/registry.rs +0 -0
  244. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/sdk.rs +0 -0
  245. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/sources/amazon_s3.rs +0 -0
  246. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/sources/google_drive.rs +0 -0
  247. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/sources/local_file.rs +0 -0
  248. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/sources/mod.rs +0 -0
  249. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/kuzu.rs +0 -0
  250. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/mod.rs +0 -0
  251. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/neo4j.rs +0 -0
  252. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/postgres.rs +0 -0
  253. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/qdrant.rs +0 -0
  254. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/shared/mod.rs +0 -0
  255. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/shared/property_graph.rs +0 -0
  256. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/ops/targets/shared/table_columns.rs +0 -0
  257. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/py/convert.rs +0 -0
  258. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/server.rs +0 -0
  259. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/service/flows.rs +0 -0
  260. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/service/mod.rs +0 -0
  261. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/setup/auth_registry.rs +0 -0
  262. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/setup/components.rs +0 -0
  263. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/setup/db_metadata.rs +0 -0
  264. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/setup/driver.rs +0 -0
  265. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/setup/mod.rs +0 -0
  266. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/setup/states.rs +0 -0
  267. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/utils/db.rs +0 -0
  268. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/utils/fingerprint.rs +0 -0
  269. {cocoindex-0.1.63 → cocoindex-0.1.65}/src/utils/immutable.rs +0 -0
  270. {cocoindex-0.1.63 → cocoindex-0.1.65}/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.1"
218
218
  source = "registry+https://github.com/rust-lang/crates.io-index"
219
- checksum = "b6fcc63c9860579e4cb396239570e979376e70aab79e496621748a09913f8b36"
219
+ checksum = "c18d005c70d2b9c0c1ea8876c039db0ec7fb71164d25c73ccea21bf41fd02171"
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.2"
260
260
  source = "registry+https://github.com/rust-lang/crates.io-index"
261
- checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
261
+ checksum = "08b5d4e069cbc868041a64bd68dc8cb39a0d79585cd6c5a24caa8c2d622121be"
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.30.0"
270
270
  source = "registry+https://github.com/rust-lang/crates.io-index"
271
- checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
271
+ checksum = "dbfd150b5dbdb988bcc8fb1fe787eb6b7ee6180ca24da683b61ea5405f3d43ff"
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.96.0"
308
308
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "d5c82dae9304e7ced2ff6cca43dceb2d6de534c95a506ff0f168a7463c9a885d"
309
+ checksum = "6e25d24de44b34dcdd5182ac4e4c6f07bcec2661c505acef94c0d293b65505fe"
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.74.0"
343
342
  source = "registry+https://github.com/rust-lang/crates.io-index"
344
- checksum = "c6f15bedfb1c4385fccc474f0fe46dffb0335d0b3d6b4413df06fb30d90caba8"
343
+ checksum = "256b8f7caffe3240a543f60409be9bba23038ceef5933da63e09d89197fc2333"
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.74.0"
366
364
  source = "registry+https://github.com/rust-lang/crates.io-index"
367
- checksum = "0d4863da26489d1e6da91d7e12b10c17e86c14f94c53f416bd10e0a9c34057ba"
365
+ checksum = "e0a69de9c1b9272da2872af60c7402683e7f45c06267735b4332deacb203239b"
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.75.0"
389
386
  source = "registry+https://github.com/rust-lang/crates.io-index"
390
- checksum = "95caa3998d7237789b57b95a8e031f60537adab21fa84c91e35bef9455c652e4"
387
+ checksum = "f0b161d836fac72bdd5ac1a4cd1cdc38ab888c7af26cfd95f661be4409505e63"
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.76.0"
412
408
  source = "registry+https://github.com/rust-lang/crates.io-index"
413
- checksum = "4939f6f449a37308a78c5a910fd91265479bd2bb11d186f0b8fc114d89ec828d"
409
+ checksum = "cb1cd79a3412751a341a28e2cd0d6fa4345241976da427b075a0c0cd5409f886"
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.4"
475
470
  source = "registry+https://github.com/rust-lang/crates.io-index"
476
- checksum = "b65d21e1ba6f2cdec92044f904356a19f5ad86961acf015741106cdfafd747c0"
471
+ checksum = "244f00666380d35c1c76b90f7b88a11935d11b84076ac22a4c014ea0939627af"
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.6"
529
522
  source = "registry+https://github.com/rust-lang/crates.io-index"
530
- checksum = "7e44697a9bded898dcd0b1cb997430d949b87f4f8940d91023ae9062bf218250"
523
+ checksum = "f108f1ca850f3feef3009bdcc977be201bca9a91058864d9de0684e64514bee0"
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.11",
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.29",
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
  ]
@@ -581,9 +575,9 @@ dependencies = [
581
575
 
582
576
  [[package]]
583
577
  name = "aws-smithy-runtime"
584
- version = "1.8.3"
578
+ version = "1.8.4"
585
579
  source = "registry+https://github.com/rust-lang/crates.io-index"
586
- checksum = "14302f06d1d5b7d333fd819943075b13d27c7700b414f574c3c35859bfb55d5e"
580
+ checksum = "c3aaec682eb189e43c8a19c3dab2fe54590ad5f2cc2d26ab27608a20f2acf81c"
587
581
  dependencies = [
588
582
  "aws-smithy-async",
589
583
  "aws-smithy-http",
@@ -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.3"
609
603
  source = "registry+https://github.com/rust-lang/crates.io-index"
610
- checksum = "a1e5d9e3a80a18afa109391fb5ad09c3daf887b516c6fd805a157c6ea7994a57"
604
+ checksum = "9852b9226cb60b78ce9369022c0df678af1cac231c882d5da97a0c4e03be6e67"
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.19.0"
924
918
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
919
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
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.29"
955
949
  source = "registry+https://github.com/rust-lang/crates.io-index"
956
- checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
950
+ checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
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.63"
1048
+ version = "0.1.65"
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
- "indexmap 2.9.0",
1075
+ "indexmap 2.10.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.29",
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"
@@ -1309,9 +1311,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1309
1311
 
1310
1312
  [[package]]
1311
1313
  name = "crunchy"
1312
- version = "0.2.3"
1314
+ version = "0.2.4"
1313
1315
  source = "registry+https://github.com/rust-lang/crates.io-index"
1314
- checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
1316
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1315
1317
 
1316
1318
  [[package]]
1317
1319
  name = "crypto-bigint"
@@ -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",
@@ -1953,7 +1955,7 @@ dependencies = [
1953
1955
  "futures-sink",
1954
1956
  "futures-util",
1955
1957
  "http 0.2.12",
1956
- "indexmap 2.9.0",
1958
+ "indexmap 2.10.0",
1957
1959
  "slab",
1958
1960
  "tokio",
1959
1961
  "tokio-util",
@@ -1962,9 +1964,9 @@ dependencies = [
1962
1964
 
1963
1965
  [[package]]
1964
1966
  name = "h2"
1965
- version = "0.4.9"
1967
+ version = "0.4.11"
1966
1968
  source = "registry+https://github.com/rust-lang/crates.io-index"
1967
- checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1969
+ checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
1968
1970
  dependencies = [
1969
1971
  "atomic-waker",
1970
1972
  "bytes",
@@ -1972,7 +1974,7 @@ dependencies = [
1972
1974
  "futures-core",
1973
1975
  "futures-sink",
1974
1976
  "http 1.3.1",
1975
- "indexmap 2.9.0",
1977
+ "indexmap 2.10.0",
1976
1978
  "slab",
1977
1979
  "tokio",
1978
1980
  "tokio-util",
@@ -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.11",
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.29",
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.15"
2237
2238
  source = "registry+https://github.com/rust-lang/crates.io-index"
2238
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
2239
+ checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df"
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",
@@ -2439,12 +2412,12 @@ dependencies = [
2439
2412
 
2440
2413
  [[package]]
2441
2414
  name = "indexmap"
2442
- version = "2.9.0"
2415
+ version = "2.10.0"
2443
2416
  source = "registry+https://github.com/rust-lang/crates.io-index"
2444
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
2417
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
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"
@@ -2463,12 +2445,33 @@ dependencies = [
2463
2445
  "cfg-if",
2464
2446
  ]
2465
2447
 
2448
+ [[package]]
2449
+ name = "io-uring"
2450
+ version = "0.7.8"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
2453
+ dependencies = [
2454
+ "bitflags",
2455
+ "cfg-if",
2456
+ "libc",
2457
+ ]
2458
+
2466
2459
  [[package]]
2467
2460
  name = "ipnet"
2468
2461
  version = "2.11.0"
2469
2462
  source = "registry+https://github.com/rust-lang/crates.io-index"
2470
2463
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2471
2464
 
2465
+ [[package]]
2466
+ name = "iri-string"
2467
+ version = "0.7.8"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
2470
+ dependencies = [
2471
+ "memchr",
2472
+ "serde",
2473
+ ]
2474
+
2472
2475
  [[package]]
2473
2476
  name = "is_terminal_polyfill"
2474
2477
  version = "1.70.1"
@@ -2510,9 +2513,9 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
2510
2513
 
2511
2514
  [[package]]
2512
2515
  name = "jiff"
2513
- version = "0.2.10"
2516
+ version = "0.2.15"
2514
2517
  source = "registry+https://github.com/rust-lang/crates.io-index"
2515
- checksum = "5a064218214dc6a10fbae5ec5fa888d80c45d611aba169222fc272072bf7aef6"
2518
+ checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
2516
2519
  dependencies = [
2517
2520
  "jiff-static",
2518
2521
  "log",
@@ -2523,13 +2526,13 @@ dependencies = [
2523
2526
 
2524
2527
  [[package]]
2525
2528
  name = "jiff-static"
2526
- version = "0.2.10"
2529
+ version = "0.2.15"
2527
2530
  source = "registry+https://github.com/rust-lang/crates.io-index"
2528
- checksum = "199b7932d97e325aff3a7030e141eafe7f2c6268e1d1b24859b753a627f45254"
2531
+ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
2529
2532
  dependencies = [
2530
2533
  "proc-macro2",
2531
2534
  "quote",
2532
- "syn 2.0.101",
2535
+ "syn 2.0.104",
2533
2536
  ]
2534
2537
 
2535
2538
  [[package]]
@@ -2538,7 +2541,7 @@ version = "0.1.33"
2538
2541
  source = "registry+https://github.com/rust-lang/crates.io-index"
2539
2542
  checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
2540
2543
  dependencies = [
2541
- "getrandom 0.3.2",
2544
+ "getrandom 0.3.3",
2542
2545
  "libc",
2543
2546
  ]
2544
2547
 
@@ -2580,25 +2583,25 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2580
2583
 
2581
2584
  [[package]]
2582
2585
  name = "libc"
2583
- version = "0.2.172"
2586
+ version = "0.2.174"
2584
2587
  source = "registry+https://github.com/rust-lang/crates.io-index"
2585
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2588
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2586
2589
 
2587
2590
  [[package]]
2588
2591
  name = "libloading"
2589
- version = "0.8.6"
2592
+ version = "0.8.8"
2590
2593
  source = "registry+https://github.com/rust-lang/crates.io-index"
2591
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
2594
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
2592
2595
  dependencies = [
2593
2596
  "cfg-if",
2594
- "windows-targets 0.52.6",
2597
+ "windows-targets 0.53.2",
2595
2598
  ]
2596
2599
 
2597
2600
  [[package]]
2598
2601
  name = "libm"
2599
- version = "0.2.13"
2602
+ version = "0.2.15"
2600
2603
  source = "registry+https://github.com/rust-lang/crates.io-index"
2601
- checksum = "c9627da5196e5d8ed0b0495e61e518847578da83483c37288316d9b2e03a7f72"
2604
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2602
2605
 
2603
2606
  [[package]]
2604
2607
  name = "libsqlite3-sys"
@@ -2616,23 +2619,17 @@ version = "0.4.15"
2616
2619
  source = "registry+https://github.com/rust-lang/crates.io-index"
2617
2620
  checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2618
2621
 
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
2622
  [[package]]
2626
2623
  name = "litemap"
2627
- version = "0.7.5"
2624
+ version = "0.8.0"
2628
2625
  source = "registry+https://github.com/rust-lang/crates.io-index"
2629
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
2626
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
2630
2627
 
2631
2628
  [[package]]
2632
2629
  name = "lock_api"
2633
- version = "0.4.12"
2630
+ version = "0.4.13"
2634
2631
  source = "registry+https://github.com/rust-lang/crates.io-index"
2635
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2632
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
2636
2633
  dependencies = [
2637
2634
  "autocfg",
2638
2635
  "scopeguard",
@@ -2650,9 +2647,15 @@ version = "0.12.5"
2650
2647
  source = "registry+https://github.com/rust-lang/crates.io-index"
2651
2648
  checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
2652
2649
  dependencies = [
2653
- "hashbrown 0.15.2",
2650
+ "hashbrown 0.15.4",
2654
2651
  ]
2655
2652
 
2653
+ [[package]]
2654
+ name = "lru-slab"
2655
+ version = "0.1.2"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2658
+
2656
2659
  [[package]]
2657
2660
  name = "matchit"
2658
2661
  version = "0.7.3"
@@ -2687,9 +2690,9 @@ dependencies = [
2687
2690
 
2688
2691
  [[package]]
2689
2692
  name = "memchr"
2690
- version = "2.7.4"
2693
+ version = "2.7.5"
2691
2694
  source = "registry+https://github.com/rust-lang/crates.io-index"
2692
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2695
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2693
2696
 
2694
2697
  [[package]]
2695
2698
  name = "memoffset"
@@ -2724,22 +2727,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2724
2727
 
2725
2728
  [[package]]
2726
2729
  name = "miniz_oxide"
2727
- version = "0.8.8"
2730
+ version = "0.8.9"
2728
2731
  source = "registry+https://github.com/rust-lang/crates.io-index"
2729
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2732
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2730
2733
  dependencies = [
2731
2734
  "adler2",
2732
2735
  ]
2733
2736
 
2734
2737
  [[package]]
2735
2738
  name = "mio"
2736
- version = "1.0.3"
2739
+ version = "1.0.4"
2737
2740
  source = "registry+https://github.com/rust-lang/crates.io-index"
2738
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2741
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
2739
2742
  dependencies = [
2740
2743
  "libc",
2741
- "wasi 0.11.0+wasi-snapshot-preview1",
2742
- "windows-sys 0.52.0",
2744
+ "wasi 0.11.1+wasi-snapshot-preview1",
2745
+ "windows-sys 0.59.0",
2743
2746
  ]
2744
2747
 
2745
2748
  [[package]]
@@ -2782,7 +2785,7 @@ dependencies = [
2782
2785
  "tokio",
2783
2786
  "tokio-rustls 0.26.2",
2784
2787
  "url",
2785
- "webpki-roots",
2788
+ "webpki-roots 0.26.11",
2786
2789
  ]
2787
2790
 
2788
2791
  [[package]]
@@ -2792,7 +2795,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
2795
  checksum = "53a0d57c55d2d1dc62a2b1d16a0a1079eb78d67c36bdf468d582ab4482ec7002"
2793
2796
  dependencies = [
2794
2797
  "quote",
2795
- "syn 2.0.101",
2798
+ "syn 2.0.104",
2796
2799
  ]
2797
2800
 
2798
2801
  [[package]]
@@ -2869,9 +2872,9 @@ dependencies = [
2869
2872
 
2870
2873
  [[package]]
2871
2874
  name = "num_cpus"
2872
- version = "1.16.0"
2875
+ version = "1.17.0"
2873
2876
  source = "registry+https://github.com/rust-lang/crates.io-index"
2874
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2877
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2875
2878
  dependencies = [
2876
2879
  "hermit-abi",
2877
2880
  "libc",
@@ -2917,6 +2920,12 @@ version = "1.21.3"
2917
2920
  source = "registry+https://github.com/rust-lang/crates.io-index"
2918
2921
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2919
2922
 
2923
+ [[package]]
2924
+ name = "once_cell_polyfill"
2925
+ version = "1.70.1"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
2928
+
2920
2929
  [[package]]
2921
2930
  name = "openssl-probe"
2922
2931
  version = "0.1.6"
@@ -2941,9 +2950,9 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
2941
2950
 
2942
2951
  [[package]]
2943
2952
  name = "owo-colors"
2944
- version = "4.2.0"
2953
+ version = "4.2.2"
2945
2954
  source = "registry+https://github.com/rust-lang/crates.io-index"
2946
- checksum = "1036865bb9422d3300cf723f657c2851d0e9ab12567854b1f4eba3d77decf564"
2955
+ checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
2947
2956
 
2948
2957
  [[package]]
2949
2958
  name = "p256"
@@ -2964,9 +2973,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2964
2973
 
2965
2974
  [[package]]
2966
2975
  name = "parking_lot"
2967
- version = "0.12.3"
2976
+ version = "0.12.4"
2968
2977
  source = "registry+https://github.com/rust-lang/crates.io-index"
2969
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2978
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2970
2979
  dependencies = [
2971
2980
  "lock_api",
2972
2981
  "parking_lot_core",
@@ -2974,9 +2983,9 @@ dependencies = [
2974
2983
 
2975
2984
  [[package]]
2976
2985
  name = "parking_lot_core"
2977
- version = "0.9.10"
2986
+ version = "0.9.11"
2978
2987
  source = "registry+https://github.com/rust-lang/crates.io-index"
2979
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2988
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2980
2989
  dependencies = [
2981
2990
  "cfg-if",
2982
2991
  "libc",
@@ -3023,9 +3032,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
3023
3032
 
3024
3033
  [[package]]
3025
3034
  name = "pest"
3026
- version = "2.8.0"
3035
+ version = "2.8.1"
3027
3036
  source = "registry+https://github.com/rust-lang/crates.io-index"
3028
- checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
3037
+ checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
3029
3038
  dependencies = [
3030
3039
  "memchr",
3031
3040
  "thiserror 2.0.12",
@@ -3034,9 +3043,9 @@ dependencies = [
3034
3043
 
3035
3044
  [[package]]
3036
3045
  name = "pest_derive"
3037
- version = "2.8.0"
3046
+ version = "2.8.1"
3038
3047
  source = "registry+https://github.com/rust-lang/crates.io-index"
3039
- checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
3048
+ checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
3040
3049
  dependencies = [
3041
3050
  "pest",
3042
3051
  "pest_generator",
@@ -3044,33 +3053,32 @@ dependencies = [
3044
3053
 
3045
3054
  [[package]]
3046
3055
  name = "pest_generator"
3047
- version = "2.8.0"
3056
+ version = "2.8.1"
3048
3057
  source = "registry+https://github.com/rust-lang/crates.io-index"
3049
- checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
3058
+ checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
3050
3059
  dependencies = [
3051
3060
  "pest",
3052
3061
  "pest_meta",
3053
3062
  "proc-macro2",
3054
3063
  "quote",
3055
- "syn 2.0.101",
3064
+ "syn 2.0.104",
3056
3065
  ]
3057
3066
 
3058
3067
  [[package]]
3059
3068
  name = "pest_meta"
3060
- version = "2.8.0"
3069
+ version = "2.8.1"
3061
3070
  source = "registry+https://github.com/rust-lang/crates.io-index"
3062
- checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
3071
+ checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
3063
3072
  dependencies = [
3064
- "once_cell",
3065
3073
  "pest",
3066
3074
  "sha2",
3067
3075
  ]
3068
3076
 
3069
3077
  [[package]]
3070
3078
  name = "pgvector"
3071
- version = "0.4.0"
3079
+ version = "0.4.1"
3072
3080
  source = "registry+https://github.com/rust-lang/crates.io-index"
3073
- checksum = "e0e8871b6d7ca78348c6cd29b911b94851f3429f0cd403130ca17f26c1fb91a6"
3081
+ checksum = "fc58e2d255979a31caa7cabfa7aac654af0354220719ab7a68520ae7a91e8c0b"
3074
3082
  dependencies = [
3075
3083
  "sqlx",
3076
3084
  ]
@@ -3115,7 +3123,7 @@ dependencies = [
3115
3123
  "phf_shared",
3116
3124
  "proc-macro2",
3117
3125
  "quote",
3118
- "syn 2.0.101",
3126
+ "syn 2.0.104",
3119
3127
  ]
3120
3128
 
3121
3129
  [[package]]
@@ -3144,7 +3152,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
3144
3152
  dependencies = [
3145
3153
  "proc-macro2",
3146
3154
  "quote",
3147
- "syn 2.0.101",
3155
+ "syn 2.0.104",
3148
3156
  ]
3149
3157
 
3150
3158
  [[package]]
@@ -3198,9 +3206,9 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
3198
3206
 
3199
3207
  [[package]]
3200
3208
  name = "portable-atomic"
3201
- version = "1.11.0"
3209
+ version = "1.11.1"
3202
3210
  source = "registry+https://github.com/rust-lang/crates.io-index"
3203
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
3211
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
3204
3212
 
3205
3213
  [[package]]
3206
3214
  name = "portable-atomic-util"
@@ -3211,6 +3219,15 @@ dependencies = [
3211
3219
  "portable-atomic",
3212
3220
  ]
3213
3221
 
3222
+ [[package]]
3223
+ name = "potential_utf"
3224
+ version = "0.1.2"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
3227
+ dependencies = [
3228
+ "zerovec",
3229
+ ]
3230
+
3214
3231
  [[package]]
3215
3232
  name = "powerfmt"
3216
3233
  version = "0.2.0"
@@ -3223,17 +3240,17 @@ version = "0.2.21"
3223
3240
  source = "registry+https://github.com/rust-lang/crates.io-index"
3224
3241
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
3225
3242
  dependencies = [
3226
- "zerocopy 0.8.25",
3243
+ "zerocopy",
3227
3244
  ]
3228
3245
 
3229
3246
  [[package]]
3230
3247
  name = "prettyplease"
3231
- version = "0.2.32"
3248
+ version = "0.2.35"
3232
3249
  source = "registry+https://github.com/rust-lang/crates.io-index"
3233
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
3250
+ checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a"
3234
3251
  dependencies = [
3235
3252
  "proc-macro2",
3236
- "syn 2.0.101",
3253
+ "syn 2.0.104",
3237
3254
  ]
3238
3255
 
3239
3256
  [[package]]
@@ -3265,7 +3282,7 @@ dependencies = [
3265
3282
  "itertools 0.14.0",
3266
3283
  "proc-macro2",
3267
3284
  "quote",
3268
- "syn 2.0.101",
3285
+ "syn 2.0.104",
3269
3286
  ]
3270
3287
 
3271
3288
  [[package]]
@@ -3279,9 +3296,9 @@ dependencies = [
3279
3296
 
3280
3297
  [[package]]
3281
3298
  name = "pyo3"
3282
- version = "0.25.0"
3299
+ version = "0.25.1"
3283
3300
  source = "registry+https://github.com/rust-lang/crates.io-index"
3284
- checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
3301
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
3285
3302
  dependencies = [
3286
3303
  "chrono",
3287
3304
  "indoc",
@@ -3311,9 +3328,9 @@ dependencies = [
3311
3328
 
3312
3329
  [[package]]
3313
3330
  name = "pyo3-build-config"
3314
- version = "0.25.0"
3331
+ version = "0.25.1"
3315
3332
  source = "registry+https://github.com/rust-lang/crates.io-index"
3316
- checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
3333
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
3317
3334
  dependencies = [
3318
3335
  "once_cell",
3319
3336
  "target-lexicon",
@@ -3321,9 +3338,9 @@ dependencies = [
3321
3338
 
3322
3339
  [[package]]
3323
3340
  name = "pyo3-ffi"
3324
- version = "0.25.0"
3341
+ version = "0.25.1"
3325
3342
  source = "registry+https://github.com/rust-lang/crates.io-index"
3326
- checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
3343
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
3327
3344
  dependencies = [
3328
3345
  "libc",
3329
3346
  "pyo3-build-config",
@@ -3331,27 +3348,27 @@ dependencies = [
3331
3348
 
3332
3349
  [[package]]
3333
3350
  name = "pyo3-macros"
3334
- version = "0.25.0"
3351
+ version = "0.25.1"
3335
3352
  source = "registry+https://github.com/rust-lang/crates.io-index"
3336
- checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
3353
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
3337
3354
  dependencies = [
3338
3355
  "proc-macro2",
3339
3356
  "pyo3-macros-backend",
3340
3357
  "quote",
3341
- "syn 2.0.101",
3358
+ "syn 2.0.104",
3342
3359
  ]
3343
3360
 
3344
3361
  [[package]]
3345
3362
  name = "pyo3-macros-backend"
3346
- version = "0.25.0"
3363
+ version = "0.25.1"
3347
3364
  source = "registry+https://github.com/rust-lang/crates.io-index"
3348
- checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
3365
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
3349
3366
  dependencies = [
3350
3367
  "heck",
3351
3368
  "proc-macro2",
3352
3369
  "pyo3-build-config",
3353
3370
  "quote",
3354
- "syn 2.0.101",
3371
+ "syn 2.0.104",
3355
3372
  ]
3356
3373
 
3357
3374
  [[package]]
@@ -3387,9 +3404,9 @@ dependencies = [
3387
3404
 
3388
3405
  [[package]]
3389
3406
  name = "quinn"
3390
- version = "0.11.7"
3407
+ version = "0.11.8"
3391
3408
  source = "registry+https://github.com/rust-lang/crates.io-index"
3392
- checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
3409
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
3393
3410
  dependencies = [
3394
3411
  "bytes",
3395
3412
  "cfg_aliases",
@@ -3397,7 +3414,7 @@ dependencies = [
3397
3414
  "quinn-proto",
3398
3415
  "quinn-udp",
3399
3416
  "rustc-hash 2.1.1",
3400
- "rustls 0.23.26",
3417
+ "rustls 0.23.29",
3401
3418
  "socket2",
3402
3419
  "thiserror 2.0.12",
3403
3420
  "tokio",
@@ -3407,16 +3424,17 @@ dependencies = [
3407
3424
 
3408
3425
  [[package]]
3409
3426
  name = "quinn-proto"
3410
- version = "0.11.11"
3427
+ version = "0.11.12"
3411
3428
  source = "registry+https://github.com/rust-lang/crates.io-index"
3412
- checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
3429
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
3413
3430
  dependencies = [
3414
3431
  "bytes",
3415
- "getrandom 0.3.2",
3432
+ "getrandom 0.3.3",
3433
+ "lru-slab",
3416
3434
  "rand 0.9.1",
3417
3435
  "ring",
3418
3436
  "rustc-hash 2.1.1",
3419
- "rustls 0.23.26",
3437
+ "rustls 0.23.29",
3420
3438
  "rustls-pki-types",
3421
3439
  "slab",
3422
3440
  "thiserror 2.0.12",
@@ -3427,9 +3445,9 @@ dependencies = [
3427
3445
 
3428
3446
  [[package]]
3429
3447
  name = "quinn-udp"
3430
- version = "0.5.11"
3448
+ version = "0.5.13"
3431
3449
  source = "registry+https://github.com/rust-lang/crates.io-index"
3432
- checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
3450
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
3433
3451
  dependencies = [
3434
3452
  "cfg_aliases",
3435
3453
  "libc",
@@ -3450,9 +3468,9 @@ dependencies = [
3450
3468
 
3451
3469
  [[package]]
3452
3470
  name = "r-efi"
3453
- version = "5.2.0"
3471
+ version = "5.3.0"
3454
3472
  source = "registry+https://github.com/rust-lang/crates.io-index"
3455
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3473
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3456
3474
 
3457
3475
  [[package]]
3458
3476
  name = "rand"
@@ -3510,7 +3528,7 @@ version = "0.9.3"
3510
3528
  source = "registry+https://github.com/rust-lang/crates.io-index"
3511
3529
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3512
3530
  dependencies = [
3513
- "getrandom 0.3.2",
3531
+ "getrandom 0.3.3",
3514
3532
  ]
3515
3533
 
3516
3534
  [[package]]
@@ -3521,13 +3539,33 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
3521
3539
 
3522
3540
  [[package]]
3523
3541
  name = "redox_syscall"
3524
- version = "0.5.11"
3542
+ version = "0.5.13"
3525
3543
  source = "registry+https://github.com/rust-lang/crates.io-index"
3526
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
3544
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
3527
3545
  dependencies = [
3528
3546
  "bitflags",
3529
3547
  ]
3530
3548
 
3549
+ [[package]]
3550
+ name = "ref-cast"
3551
+ version = "1.0.24"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
3554
+ dependencies = [
3555
+ "ref-cast-impl",
3556
+ ]
3557
+
3558
+ [[package]]
3559
+ name = "ref-cast-impl"
3560
+ version = "1.0.24"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
3563
+ dependencies = [
3564
+ "proc-macro2",
3565
+ "quote",
3566
+ "syn 2.0.104",
3567
+ ]
3568
+
3531
3569
  [[package]]
3532
3570
  name = "regex"
3533
3571
  version = "1.11.1"
@@ -3565,33 +3603,29 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
3565
3603
 
3566
3604
  [[package]]
3567
3605
  name = "reqwest"
3568
- version = "0.12.15"
3606
+ version = "0.12.22"
3569
3607
  source = "registry+https://github.com/rust-lang/crates.io-index"
3570
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
3608
+ checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
3571
3609
  dependencies = [
3572
3610
  "base64 0.22.1",
3573
3611
  "bytes",
3574
3612
  "futures-core",
3575
3613
  "futures-util",
3576
- "h2 0.4.9",
3614
+ "h2 0.4.11",
3577
3615
  "http 1.3.1",
3578
3616
  "http-body 1.0.1",
3579
3617
  "http-body-util",
3580
3618
  "hyper 1.6.0",
3581
- "hyper-rustls 0.27.5",
3619
+ "hyper-rustls 0.27.7",
3582
3620
  "hyper-util",
3583
- "ipnet",
3584
3621
  "js-sys",
3585
3622
  "log",
3586
- "mime",
3587
3623
  "mime_guess",
3588
- "once_cell",
3589
3624
  "percent-encoding",
3590
3625
  "pin-project-lite",
3591
3626
  "quinn",
3592
- "rustls 0.23.26",
3627
+ "rustls 0.23.29",
3593
3628
  "rustls-native-certs 0.8.1",
3594
- "rustls-pemfile 2.2.0",
3595
3629
  "rustls-pki-types",
3596
3630
  "serde",
3597
3631
  "serde_json",
@@ -3601,14 +3635,14 @@ dependencies = [
3601
3635
  "tokio-rustls 0.26.2",
3602
3636
  "tokio-util",
3603
3637
  "tower 0.5.2",
3638
+ "tower-http",
3604
3639
  "tower-service",
3605
3640
  "url",
3606
3641
  "wasm-bindgen",
3607
3642
  "wasm-bindgen-futures",
3608
3643
  "wasm-streams",
3609
3644
  "web-sys",
3610
- "webpki-roots",
3611
- "windows-registry",
3645
+ "webpki-roots 1.0.1",
3612
3646
  ]
3613
3647
 
3614
3648
  [[package]]
@@ -3702,9 +3736,9 @@ dependencies = [
3702
3736
 
3703
3737
  [[package]]
3704
3738
  name = "rustc-demangle"
3705
- version = "0.1.24"
3739
+ version = "0.1.25"
3706
3740
  source = "registry+https://github.com/rust-lang/crates.io-index"
3707
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3741
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
3708
3742
 
3709
3743
  [[package]]
3710
3744
  name = "rustc-hash"
@@ -3736,20 +3770,7 @@ dependencies = [
3736
3770
  "bitflags",
3737
3771
  "errno",
3738
3772
  "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",
3773
+ "linux-raw-sys",
3753
3774
  "windows-sys 0.59.0",
3754
3775
  ]
3755
3776
 
@@ -3767,16 +3788,16 @@ dependencies = [
3767
3788
 
3768
3789
  [[package]]
3769
3790
  name = "rustls"
3770
- version = "0.23.26"
3791
+ version = "0.23.29"
3771
3792
  source = "registry+https://github.com/rust-lang/crates.io-index"
3772
- checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
3793
+ checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
3773
3794
  dependencies = [
3774
3795
  "aws-lc-rs",
3775
3796
  "log",
3776
3797
  "once_cell",
3777
3798
  "ring",
3778
3799
  "rustls-pki-types",
3779
- "rustls-webpki 0.103.1",
3800
+ "rustls-webpki 0.103.4",
3780
3801
  "subtle",
3781
3802
  "zeroize",
3782
3803
  ]
@@ -3838,11 +3859,12 @@ dependencies = [
3838
3859
 
3839
3860
  [[package]]
3840
3861
  name = "rustls-pki-types"
3841
- version = "1.11.0"
3862
+ version = "1.12.0"
3842
3863
  source = "registry+https://github.com/rust-lang/crates.io-index"
3843
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3864
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3844
3865
  dependencies = [
3845
3866
  "web-time",
3867
+ "zeroize",
3846
3868
  ]
3847
3869
 
3848
3870
  [[package]]
@@ -3857,9 +3879,9 @@ dependencies = [
3857
3879
 
3858
3880
  [[package]]
3859
3881
  name = "rustls-webpki"
3860
- version = "0.103.1"
3882
+ version = "0.103.4"
3861
3883
  source = "registry+https://github.com/rust-lang/crates.io-index"
3862
- checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
3884
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
3863
3885
  dependencies = [
3864
3886
  "aws-lc-rs",
3865
3887
  "ring",
@@ -3869,9 +3891,9 @@ dependencies = [
3869
3891
 
3870
3892
  [[package]]
3871
3893
  name = "rustversion"
3872
- version = "1.0.20"
3894
+ version = "1.0.21"
3873
3895
  source = "registry+https://github.com/rust-lang/crates.io-index"
3874
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3896
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
3875
3897
 
3876
3898
  [[package]]
3877
3899
  name = "ryu"
@@ -3900,6 +3922,30 @@ dependencies = [
3900
3922
  "serde_json",
3901
3923
  ]
3902
3924
 
3925
+ [[package]]
3926
+ name = "schemars"
3927
+ version = "0.9.0"
3928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3929
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
3930
+ dependencies = [
3931
+ "dyn-clone",
3932
+ "ref-cast",
3933
+ "serde",
3934
+ "serde_json",
3935
+ ]
3936
+
3937
+ [[package]]
3938
+ name = "schemars"
3939
+ version = "1.0.4"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
3942
+ dependencies = [
3943
+ "dyn-clone",
3944
+ "ref-cast",
3945
+ "serde",
3946
+ "serde_json",
3947
+ ]
3948
+
3903
3949
  [[package]]
3904
3950
  name = "schemars_derive"
3905
3951
  version = "0.8.22"
@@ -3909,7 +3955,7 @@ dependencies = [
3909
3955
  "proc-macro2",
3910
3956
  "quote",
3911
3957
  "serde_derive_internals",
3912
- "syn 2.0.101",
3958
+ "syn 2.0.104",
3913
3959
  ]
3914
3960
 
3915
3961
  [[package]]
@@ -3978,7 +4024,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3978
4024
  checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
3979
4025
  dependencies = [
3980
4026
  "bitflags",
3981
- "core-foundation 0.10.0",
4027
+ "core-foundation 0.10.1",
3982
4028
  "core-foundation-sys",
3983
4029
  "libc",
3984
4030
  "security-framework-sys",
@@ -4017,7 +4063,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
4017
4063
  dependencies = [
4018
4064
  "proc-macro2",
4019
4065
  "quote",
4020
- "syn 2.0.101",
4066
+ "syn 2.0.104",
4021
4067
  ]
4022
4068
 
4023
4069
  [[package]]
@@ -4028,7 +4074,7 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
4028
4074
  dependencies = [
4029
4075
  "proc-macro2",
4030
4076
  "quote",
4031
- "syn 2.0.101",
4077
+ "syn 2.0.104",
4032
4078
  ]
4033
4079
 
4034
4080
  [[package]]
@@ -4038,7 +4084,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4038
4084
  checksum = "9d2de91cf02bbc07cde38891769ccd5d4f073d22a40683aa4bc7a95781aaa2c4"
4039
4085
  dependencies = [
4040
4086
  "form_urlencoded",
4041
- "indexmap 2.9.0",
4087
+ "indexmap 2.10.0",
4042
4088
  "itoa",
4043
4089
  "ryu",
4044
4090
  "serde",
@@ -4050,7 +4096,7 @@ version = "1.0.140"
4050
4096
  source = "registry+https://github.com/rust-lang/crates.io-index"
4051
4097
  checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
4052
4098
  dependencies = [
4053
- "indexmap 2.9.0",
4099
+ "indexmap 2.10.0",
4054
4100
  "itoa",
4055
4101
  "memchr",
4056
4102
  "ryu",
@@ -4069,9 +4115,9 @@ dependencies = [
4069
4115
 
4070
4116
  [[package]]
4071
4117
  name = "serde_spanned"
4072
- version = "0.6.8"
4118
+ version = "0.6.9"
4073
4119
  source = "registry+https://github.com/rust-lang/crates.io-index"
4074
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
4120
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
4075
4121
  dependencies = [
4076
4122
  "serde",
4077
4123
  ]
@@ -4090,15 +4136,17 @@ dependencies = [
4090
4136
 
4091
4137
  [[package]]
4092
4138
  name = "serde_with"
4093
- version = "3.12.0"
4139
+ version = "3.14.0"
4094
4140
  source = "registry+https://github.com/rust-lang/crates.io-index"
4095
- checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
4141
+ checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
4096
4142
  dependencies = [
4097
4143
  "base64 0.22.1",
4098
4144
  "chrono",
4099
4145
  "hex",
4100
4146
  "indexmap 1.9.3",
4101
- "indexmap 2.9.0",
4147
+ "indexmap 2.10.0",
4148
+ "schemars 0.9.0",
4149
+ "schemars 1.0.4",
4102
4150
  "serde",
4103
4151
  "serde_derive",
4104
4152
  "serde_json",
@@ -4108,14 +4156,14 @@ dependencies = [
4108
4156
 
4109
4157
  [[package]]
4110
4158
  name = "serde_with_macros"
4111
- version = "3.12.0"
4159
+ version = "3.14.0"
4112
4160
  source = "registry+https://github.com/rust-lang/crates.io-index"
4113
- checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
4161
+ checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
4114
4162
  dependencies = [
4115
4163
  "darling",
4116
4164
  "proc-macro2",
4117
4165
  "quote",
4118
- "syn 2.0.101",
4166
+ "syn 2.0.104",
4119
4167
  ]
4120
4168
 
4121
4169
  [[package]]
@@ -4131,9 +4179,9 @@ dependencies = [
4131
4179
 
4132
4180
  [[package]]
4133
4181
  name = "sha2"
4134
- version = "0.10.8"
4182
+ version = "0.10.9"
4135
4183
  source = "registry+https://github.com/rust-lang/crates.io-index"
4136
- checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
4184
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
4137
4185
  dependencies = [
4138
4186
  "cfg-if",
4139
4187
  "cpufeatures",
@@ -4183,27 +4231,24 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
4183
4231
 
4184
4232
  [[package]]
4185
4233
  name = "slab"
4186
- version = "0.4.9"
4234
+ version = "0.4.10"
4187
4235
  source = "registry+https://github.com/rust-lang/crates.io-index"
4188
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
4189
- dependencies = [
4190
- "autocfg",
4191
- ]
4236
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
4192
4237
 
4193
4238
  [[package]]
4194
4239
  name = "smallvec"
4195
- version = "1.15.0"
4240
+ version = "1.15.1"
4196
4241
  source = "registry+https://github.com/rust-lang/crates.io-index"
4197
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
4242
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
4198
4243
  dependencies = [
4199
4244
  "serde",
4200
4245
  ]
4201
4246
 
4202
4247
  [[package]]
4203
4248
  name = "socket2"
4204
- version = "0.5.9"
4249
+ version = "0.5.10"
4205
4250
  source = "registry+https://github.com/rust-lang/crates.io-index"
4206
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
4251
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
4207
4252
  dependencies = [
4208
4253
  "libc",
4209
4254
  "windows-sys 0.52.0",
@@ -4240,9 +4285,9 @@ dependencies = [
4240
4285
 
4241
4286
  [[package]]
4242
4287
  name = "sqlx"
4243
- version = "0.8.5"
4288
+ version = "0.8.6"
4244
4289
  source = "registry+https://github.com/rust-lang/crates.io-index"
4245
- checksum = "f3c3a85280daca669cfd3bcb68a337882a8bc57ec882f72c5d13a430613a738e"
4290
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
4246
4291
  dependencies = [
4247
4292
  "sqlx-core",
4248
4293
  "sqlx-macros",
@@ -4253,9 +4298,9 @@ dependencies = [
4253
4298
 
4254
4299
  [[package]]
4255
4300
  name = "sqlx-core"
4256
- version = "0.8.5"
4301
+ version = "0.8.6"
4257
4302
  source = "registry+https://github.com/rust-lang/crates.io-index"
4258
- checksum = "f743f2a3cea30a58cd479013f75550e879009e3a02f616f18ca699335aa248c3"
4303
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
4259
4304
  dependencies = [
4260
4305
  "base64 0.22.1",
4261
4306
  "bytes",
@@ -4268,9 +4313,9 @@ dependencies = [
4268
4313
  "futures-intrusive",
4269
4314
  "futures-io",
4270
4315
  "futures-util",
4271
- "hashbrown 0.15.2",
4316
+ "hashbrown 0.15.4",
4272
4317
  "hashlink 0.10.0",
4273
- "indexmap 2.9.0",
4318
+ "indexmap 2.10.0",
4274
4319
  "log",
4275
4320
  "memchr",
4276
4321
  "once_cell",
@@ -4289,22 +4334,22 @@ dependencies = [
4289
4334
 
4290
4335
  [[package]]
4291
4336
  name = "sqlx-macros"
4292
- version = "0.8.5"
4337
+ version = "0.8.6"
4293
4338
  source = "registry+https://github.com/rust-lang/crates.io-index"
4294
- checksum = "7f4200e0fde19834956d4252347c12a083bdcb237d7a1a1446bffd8768417dce"
4339
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
4295
4340
  dependencies = [
4296
4341
  "proc-macro2",
4297
4342
  "quote",
4298
4343
  "sqlx-core",
4299
4344
  "sqlx-macros-core",
4300
- "syn 2.0.101",
4345
+ "syn 2.0.104",
4301
4346
  ]
4302
4347
 
4303
4348
  [[package]]
4304
4349
  name = "sqlx-macros-core"
4305
- version = "0.8.5"
4350
+ version = "0.8.6"
4306
4351
  source = "registry+https://github.com/rust-lang/crates.io-index"
4307
- checksum = "882ceaa29cade31beca7129b6beeb05737f44f82dbe2a9806ecea5a7093d00b7"
4352
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
4308
4353
  dependencies = [
4309
4354
  "dotenvy",
4310
4355
  "either",
@@ -4320,17 +4365,16 @@ dependencies = [
4320
4365
  "sqlx-mysql",
4321
4366
  "sqlx-postgres",
4322
4367
  "sqlx-sqlite",
4323
- "syn 2.0.101",
4324
- "tempfile",
4368
+ "syn 2.0.104",
4325
4369
  "tokio",
4326
4370
  "url",
4327
4371
  ]
4328
4372
 
4329
4373
  [[package]]
4330
4374
  name = "sqlx-mysql"
4331
- version = "0.8.5"
4375
+ version = "0.8.6"
4332
4376
  source = "registry+https://github.com/rust-lang/crates.io-index"
4333
- checksum = "0afdd3aa7a629683c2d750c2df343025545087081ab5942593a5288855b1b7a7"
4377
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
4334
4378
  dependencies = [
4335
4379
  "atoi",
4336
4380
  "base64 0.22.1",
@@ -4372,9 +4416,9 @@ dependencies = [
4372
4416
 
4373
4417
  [[package]]
4374
4418
  name = "sqlx-postgres"
4375
- version = "0.8.5"
4419
+ version = "0.8.6"
4376
4420
  source = "registry+https://github.com/rust-lang/crates.io-index"
4377
- checksum = "a0bedbe1bbb5e2615ef347a5e9d8cd7680fb63e77d9dafc0f29be15e53f1ebe6"
4421
+ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
4378
4422
  dependencies = [
4379
4423
  "atoi",
4380
4424
  "base64 0.22.1",
@@ -4411,9 +4455,9 @@ dependencies = [
4411
4455
 
4412
4456
  [[package]]
4413
4457
  name = "sqlx-sqlite"
4414
- version = "0.8.5"
4458
+ version = "0.8.6"
4415
4459
  source = "registry+https://github.com/rust-lang/crates.io-index"
4416
- checksum = "c26083e9a520e8eb87a06b12347679b142dc2ea29e6e409f805644a7a979a5bc"
4460
+ checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
4417
4461
  dependencies = [
4418
4462
  "atoi",
4419
4463
  "chrono",
@@ -4483,9 +4527,9 @@ dependencies = [
4483
4527
 
4484
4528
  [[package]]
4485
4529
  name = "syn"
4486
- version = "2.0.101"
4530
+ version = "2.0.104"
4487
4531
  source = "registry+https://github.com/rust-lang/crates.io-index"
4488
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
4532
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
4489
4533
  dependencies = [
4490
4534
  "proc-macro2",
4491
4535
  "quote",
@@ -4503,13 +4547,13 @@ dependencies = [
4503
4547
 
4504
4548
  [[package]]
4505
4549
  name = "synstructure"
4506
- version = "0.13.1"
4550
+ version = "0.13.2"
4507
4551
  source = "registry+https://github.com/rust-lang/crates.io-index"
4508
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
4552
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
4509
4553
  dependencies = [
4510
4554
  "proc-macro2",
4511
4555
  "quote",
4512
- "syn 2.0.101",
4556
+ "syn 2.0.104",
4513
4557
  ]
4514
4558
 
4515
4559
  [[package]]
@@ -4518,19 +4562,6 @@ version = "0.13.2"
4518
4562
  source = "registry+https://github.com/rust-lang/crates.io-index"
4519
4563
  checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
4520
4564
 
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
4565
  [[package]]
4535
4566
  name = "thiserror"
4536
4567
  version = "1.0.69"
@@ -4557,7 +4588,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
4557
4588
  dependencies = [
4558
4589
  "proc-macro2",
4559
4590
  "quote",
4560
- "syn 2.0.101",
4591
+ "syn 2.0.104",
4561
4592
  ]
4562
4593
 
4563
4594
  [[package]]
@@ -4568,7 +4599,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
4568
4599
  dependencies = [
4569
4600
  "proc-macro2",
4570
4601
  "quote",
4571
- "syn 2.0.101",
4602
+ "syn 2.0.104",
4572
4603
  ]
4573
4604
 
4574
4605
  [[package]]
@@ -4615,9 +4646,9 @@ dependencies = [
4615
4646
 
4616
4647
  [[package]]
4617
4648
  name = "tinystr"
4618
- version = "0.7.6"
4649
+ version = "0.8.1"
4619
4650
  source = "registry+https://github.com/rust-lang/crates.io-index"
4620
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
4651
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
4621
4652
  dependencies = [
4622
4653
  "displaydoc",
4623
4654
  "zerovec",
@@ -4640,17 +4671,19 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4640
4671
 
4641
4672
  [[package]]
4642
4673
  name = "tokio"
4643
- version = "1.44.2"
4674
+ version = "1.46.1"
4644
4675
  source = "registry+https://github.com/rust-lang/crates.io-index"
4645
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
4676
+ checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
4646
4677
  dependencies = [
4647
4678
  "backtrace",
4648
4679
  "bytes",
4680
+ "io-uring",
4649
4681
  "libc",
4650
4682
  "mio",
4651
4683
  "parking_lot",
4652
4684
  "pin-project-lite",
4653
4685
  "signal-hook-registry",
4686
+ "slab",
4654
4687
  "socket2",
4655
4688
  "tokio-macros",
4656
4689
  "tracing",
@@ -4665,7 +4698,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
4665
4698
  dependencies = [
4666
4699
  "proc-macro2",
4667
4700
  "quote",
4668
- "syn 2.0.101",
4701
+ "syn 2.0.104",
4669
4702
  ]
4670
4703
 
4671
4704
  [[package]]
@@ -4684,7 +4717,7 @@ version = "0.26.2"
4684
4717
  source = "registry+https://github.com/rust-lang/crates.io-index"
4685
4718
  checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
4686
4719
  dependencies = [
4687
- "rustls 0.23.26",
4720
+ "rustls 0.23.29",
4688
4721
  "tokio",
4689
4722
  ]
4690
4723
 
@@ -4714,9 +4747,9 @@ dependencies = [
4714
4747
 
4715
4748
  [[package]]
4716
4749
  name = "toml"
4717
- version = "0.8.21"
4750
+ version = "0.8.23"
4718
4751
  source = "registry+https://github.com/rust-lang/crates.io-index"
4719
- checksum = "900f6c86a685850b1bc9f6223b20125115ee3f31e01207d81655bbcc0aea9231"
4752
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
4720
4753
  dependencies = [
4721
4754
  "serde",
4722
4755
  "serde_spanned",
@@ -4726,20 +4759,20 @@ dependencies = [
4726
4759
 
4727
4760
  [[package]]
4728
4761
  name = "toml_datetime"
4729
- version = "0.6.9"
4762
+ version = "0.6.11"
4730
4763
  source = "registry+https://github.com/rust-lang/crates.io-index"
4731
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
4764
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
4732
4765
  dependencies = [
4733
4766
  "serde",
4734
4767
  ]
4735
4768
 
4736
4769
  [[package]]
4737
4770
  name = "toml_edit"
4738
- version = "0.22.25"
4771
+ version = "0.22.27"
4739
4772
  source = "registry+https://github.com/rust-lang/crates.io-index"
4740
- checksum = "10558ed0bd2a1562e630926a2d1f0b98c827da99fabd3fe20920a59642504485"
4773
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
4741
4774
  dependencies = [
4742
- "indexmap 2.9.0",
4775
+ "indexmap 2.10.0",
4743
4776
  "serde",
4744
4777
  "serde_spanned",
4745
4778
  "toml_datetime",
@@ -4749,9 +4782,9 @@ dependencies = [
4749
4782
 
4750
4783
  [[package]]
4751
4784
  name = "toml_write"
4752
- version = "0.1.0"
4785
+ version = "0.1.2"
4753
4786
  source = "registry+https://github.com/rust-lang/crates.io-index"
4754
- checksum = "28391a4201ba7eb1984cfeb6862c0b3ea2cfe23332298967c749dddc0d6cd976"
4787
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
4755
4788
 
4756
4789
  [[package]]
4757
4790
  name = "tonic"
@@ -4765,7 +4798,7 @@ dependencies = [
4765
4798
  "base64 0.22.1",
4766
4799
  "bytes",
4767
4800
  "flate2",
4768
- "h2 0.4.9",
4801
+ "h2 0.4.11",
4769
4802
  "http 1.3.1",
4770
4803
  "http-body 1.0.1",
4771
4804
  "http-body-util",
@@ -4825,15 +4858,18 @@ dependencies = [
4825
4858
 
4826
4859
  [[package]]
4827
4860
  name = "tower-http"
4828
- version = "0.6.2"
4861
+ version = "0.6.6"
4829
4862
  source = "registry+https://github.com/rust-lang/crates.io-index"
4830
- checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
4863
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
4831
4864
  dependencies = [
4832
4865
  "bitflags",
4833
4866
  "bytes",
4867
+ "futures-util",
4834
4868
  "http 1.3.1",
4835
4869
  "http-body 1.0.1",
4870
+ "iri-string",
4836
4871
  "pin-project-lite",
4872
+ "tower 0.5.2",
4837
4873
  "tower-layer",
4838
4874
  "tower-service",
4839
4875
  "tracing",
@@ -4865,29 +4901,29 @@ dependencies = [
4865
4901
 
4866
4902
  [[package]]
4867
4903
  name = "tracing-attributes"
4868
- version = "0.1.28"
4904
+ version = "0.1.30"
4869
4905
  source = "registry+https://github.com/rust-lang/crates.io-index"
4870
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
4906
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
4871
4907
  dependencies = [
4872
4908
  "proc-macro2",
4873
4909
  "quote",
4874
- "syn 2.0.101",
4910
+ "syn 2.0.104",
4875
4911
  ]
4876
4912
 
4877
4913
  [[package]]
4878
4914
  name = "tracing-core"
4879
- version = "0.1.33"
4915
+ version = "0.1.34"
4880
4916
  source = "registry+https://github.com/rust-lang/crates.io-index"
4881
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
4917
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
4882
4918
  dependencies = [
4883
4919
  "once_cell",
4884
4920
  ]
4885
4921
 
4886
4922
  [[package]]
4887
4923
  name = "tree-sitter"
4888
- version = "0.25.3"
4924
+ version = "0.25.6"
4889
4925
  source = "registry+https://github.com/rust-lang/crates.io-index"
4890
- checksum = "b9ac5ea5e7f2f1700842ec071401010b9c59bf735295f6e9fa079c3dc035b167"
4926
+ checksum = "a7cf18d43cbf0bfca51f657132cc616a5097edc4424d538bae6fa60142eaf9f0"
4891
4927
  dependencies = [
4892
4928
  "cc",
4893
4929
  "regex",
@@ -5045,9 +5081,9 @@ dependencies = [
5045
5081
 
5046
5082
  [[package]]
5047
5083
  name = "tree-sitter-r"
5048
- version = "1.1.0"
5084
+ version = "1.2.0"
5049
5085
  source = "registry+https://github.com/rust-lang/crates.io-index"
5050
- checksum = "51759bc3400109e5e5e09e80745d9e787655634e9c3b6e736eeaef44e7bcec0b"
5086
+ checksum = "429133cbda9f8a46e03ef3aae6abb6c3d22875f8585cad472138101bfd517255"
5051
5087
  dependencies = [
5052
5088
  "cc",
5053
5089
  "tree-sitter-language",
@@ -5095,9 +5131,9 @@ dependencies = [
5095
5131
 
5096
5132
  [[package]]
5097
5133
  name = "tree-sitter-swift"
5098
- version = "0.7.0"
5134
+ version = "0.7.1"
5099
5135
  source = "registry+https://github.com/rust-lang/crates.io-index"
5100
- checksum = "bdc72ea9c62a6d188c9f7d64109a9b14b09231852b87229c68c44e8738b9e6b9"
5136
+ checksum = "4ef216011c3e3df4fa864736f347cb8d509b1066cf0c8549fb1fd81ac9832e59"
5101
5137
  dependencies = [
5102
5138
  "cc",
5103
5139
  "tree-sitter-language",
@@ -5135,9 +5171,9 @@ dependencies = [
5135
5171
 
5136
5172
  [[package]]
5137
5173
  name = "tree-sitter-yaml"
5138
- version = "0.7.0"
5174
+ version = "0.7.1"
5139
5175
  source = "registry+https://github.com/rust-lang/crates.io-index"
5140
- checksum = "d0c99f2b92b677f1a18b6b232fa9329afb5758118238a7d0b29cae324ef50d5e"
5176
+ checksum = "3d5893f2a05e57c86a2338aa3aed167a1e5c68b8fdff3bf4a460941f2d8fc944"
5141
5177
  dependencies = [
5142
5178
  "cc",
5143
5179
  "tree-sitter-language",
@@ -5235,12 +5271,6 @@ version = "2.1.3"
5235
5271
  source = "registry+https://github.com/rust-lang/crates.io-index"
5236
5272
  checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
5237
5273
 
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
5274
  [[package]]
5245
5275
  name = "utf8_iter"
5246
5276
  version = "1.0.4"
@@ -5255,12 +5285,14 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
5255
5285
 
5256
5286
  [[package]]
5257
5287
  name = "uuid"
5258
- version = "1.16.0"
5288
+ version = "1.17.0"
5259
5289
  source = "registry+https://github.com/rust-lang/crates.io-index"
5260
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
5290
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
5261
5291
  dependencies = [
5262
- "getrandom 0.3.2",
5292
+ "getrandom 0.3.3",
5293
+ "js-sys",
5263
5294
  "serde",
5295
+ "wasm-bindgen",
5264
5296
  ]
5265
5297
 
5266
5298
  [[package]]
@@ -5292,9 +5324,9 @@ dependencies = [
5292
5324
 
5293
5325
  [[package]]
5294
5326
  name = "wasi"
5295
- version = "0.11.0+wasi-snapshot-preview1"
5327
+ version = "0.11.1+wasi-snapshot-preview1"
5296
5328
  source = "registry+https://github.com/rust-lang/crates.io-index"
5297
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
5329
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
5298
5330
 
5299
5331
  [[package]]
5300
5332
  name = "wasi"
@@ -5333,7 +5365,7 @@ dependencies = [
5333
5365
  "log",
5334
5366
  "proc-macro2",
5335
5367
  "quote",
5336
- "syn 2.0.101",
5368
+ "syn 2.0.104",
5337
5369
  "wasm-bindgen-shared",
5338
5370
  ]
5339
5371
 
@@ -5368,7 +5400,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
5368
5400
  dependencies = [
5369
5401
  "proc-macro2",
5370
5402
  "quote",
5371
- "syn 2.0.101",
5403
+ "syn 2.0.104",
5372
5404
  "wasm-bindgen-backend",
5373
5405
  "wasm-bindgen-shared",
5374
5406
  ]
@@ -5417,9 +5449,18 @@ dependencies = [
5417
5449
 
5418
5450
  [[package]]
5419
5451
  name = "webpki-roots"
5420
- version = "0.26.9"
5452
+ version = "0.26.11"
5453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5454
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
5455
+ dependencies = [
5456
+ "webpki-roots 1.0.1",
5457
+ ]
5458
+
5459
+ [[package]]
5460
+ name = "webpki-roots"
5461
+ version = "1.0.1"
5421
5462
  source = "registry+https://github.com/rust-lang/crates.io-index"
5422
- checksum = "29aad86cec885cafd03e8305fd727c418e970a521322c91688414d5b8efba16b"
5463
+ checksum = "8782dd5a41a24eed3a4f40b606249b3e236ca61adf1f25ea4d45c73de122b502"
5423
5464
  dependencies = [
5424
5465
  "rustls-pki-types",
5425
5466
  ]
@@ -5433,7 +5474,7 @@ dependencies = [
5433
5474
  "either",
5434
5475
  "home",
5435
5476
  "once_cell",
5436
- "rustix 0.38.44",
5477
+ "rustix",
5437
5478
  ]
5438
5479
 
5439
5480
  [[package]]
@@ -5448,15 +5489,15 @@ dependencies = [
5448
5489
 
5449
5490
  [[package]]
5450
5491
  name = "windows-core"
5451
- version = "0.61.0"
5492
+ version = "0.61.2"
5452
5493
  source = "registry+https://github.com/rust-lang/crates.io-index"
5453
- checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
5494
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
5454
5495
  dependencies = [
5455
5496
  "windows-implement",
5456
5497
  "windows-interface",
5457
5498
  "windows-link",
5458
5499
  "windows-result",
5459
- "windows-strings 0.4.0",
5500
+ "windows-strings",
5460
5501
  ]
5461
5502
 
5462
5503
  [[package]]
@@ -5467,7 +5508,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
5467
5508
  dependencies = [
5468
5509
  "proc-macro2",
5469
5510
  "quote",
5470
- "syn 2.0.101",
5511
+ "syn 2.0.104",
5471
5512
  ]
5472
5513
 
5473
5514
  [[package]]
@@ -5478,49 +5519,29 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
5478
5519
  dependencies = [
5479
5520
  "proc-macro2",
5480
5521
  "quote",
5481
- "syn 2.0.101",
5522
+ "syn 2.0.104",
5482
5523
  ]
5483
5524
 
5484
5525
  [[package]]
5485
5526
  name = "windows-link"
5486
- version = "0.1.1"
5527
+ version = "0.1.3"
5487
5528
  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"
5493
- 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
- ]
5529
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
5500
5530
 
5501
5531
  [[package]]
5502
5532
  name = "windows-result"
5503
- version = "0.3.2"
5533
+ version = "0.3.4"
5504
5534
  source = "registry+https://github.com/rust-lang/crates.io-index"
5505
- checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
5535
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
5506
5536
  dependencies = [
5507
5537
  "windows-link",
5508
5538
  ]
5509
5539
 
5510
5540
  [[package]]
5511
5541
  name = "windows-strings"
5512
- version = "0.3.1"
5513
- source = "registry+https://github.com/rust-lang/crates.io-index"
5514
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
5515
- dependencies = [
5516
- "windows-link",
5517
- ]
5518
-
5519
- [[package]]
5520
- name = "windows-strings"
5521
- version = "0.4.0"
5542
+ version = "0.4.2"
5522
5543
  source = "registry+https://github.com/rust-lang/crates.io-index"
5523
- checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
5544
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
5524
5545
  dependencies = [
5525
5546
  "windows-link",
5526
5547
  ]
@@ -5552,6 +5573,15 @@ dependencies = [
5552
5573
  "windows-targets 0.52.6",
5553
5574
  ]
5554
5575
 
5576
+ [[package]]
5577
+ name = "windows-sys"
5578
+ version = "0.60.2"
5579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5580
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5581
+ dependencies = [
5582
+ "windows-targets 0.53.2",
5583
+ ]
5584
+
5555
5585
  [[package]]
5556
5586
  name = "windows-targets"
5557
5587
  version = "0.48.5"
@@ -5585,9 +5615,9 @@ dependencies = [
5585
5615
 
5586
5616
  [[package]]
5587
5617
  name = "windows-targets"
5588
- version = "0.53.0"
5618
+ version = "0.53.2"
5589
5619
  source = "registry+https://github.com/rust-lang/crates.io-index"
5590
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
5620
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
5591
5621
  dependencies = [
5592
5622
  "windows_aarch64_gnullvm 0.53.0",
5593
5623
  "windows_aarch64_msvc 0.53.0",
@@ -5739,9 +5769,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
5739
5769
 
5740
5770
  [[package]]
5741
5771
  name = "winnow"
5742
- version = "0.7.7"
5772
+ version = "0.7.11"
5743
5773
  source = "registry+https://github.com/rust-lang/crates.io-index"
5744
- checksum = "6cb8234a863ea0e8cd7284fcdd4f145233eb00fee02bbdd9861aec44e6477bc5"
5774
+ checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
5745
5775
  dependencies = [
5746
5776
  "memchr",
5747
5777
  ]
@@ -5755,17 +5785,11 @@ dependencies = [
5755
5785
  "bitflags",
5756
5786
  ]
5757
5787
 
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
5788
  [[package]]
5765
5789
  name = "writeable"
5766
- version = "0.5.5"
5790
+ version = "0.6.1"
5767
5791
  source = "registry+https://github.com/rust-lang/crates.io-index"
5768
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
5792
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
5769
5793
 
5770
5794
  [[package]]
5771
5795
  name = "xmlparser"
@@ -5786,9 +5810,9 @@ dependencies = [
5786
5810
 
5787
5811
  [[package]]
5788
5812
  name = "yaml-rust2"
5789
- version = "0.10.1"
5813
+ version = "0.10.3"
5790
5814
  source = "registry+https://github.com/rust-lang/crates.io-index"
5791
- checksum = "818913695e83ece1f8d2a1c52d54484b7b46d0f9c06beeb2649b9da50d9b512d"
5815
+ checksum = "4ce2a4ff45552406d02501cea6c18d8a7e50228e7736a872951fe2fe75c91be7"
5792
5816
  dependencies = [
5793
5817
  "arraydeque",
5794
5818
  "encoding_rs",
@@ -5797,9 +5821,9 @@ dependencies = [
5797
5821
 
5798
5822
  [[package]]
5799
5823
  name = "yoke"
5800
- version = "0.7.5"
5824
+ version = "0.8.0"
5801
5825
  source = "registry+https://github.com/rust-lang/crates.io-index"
5802
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
5826
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
5803
5827
  dependencies = [
5804
5828
  "serde",
5805
5829
  "stable_deref_trait",
@@ -5809,13 +5833,13 @@ dependencies = [
5809
5833
 
5810
5834
  [[package]]
5811
5835
  name = "yoke-derive"
5812
- version = "0.7.5"
5836
+ version = "0.8.0"
5813
5837
  source = "registry+https://github.com/rust-lang/crates.io-index"
5814
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
5838
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
5815
5839
  dependencies = [
5816
5840
  "proc-macro2",
5817
5841
  "quote",
5818
- "syn 2.0.101",
5842
+ "syn 2.0.104",
5819
5843
  "synstructure",
5820
5844
  ]
5821
5845
 
@@ -5832,11 +5856,11 @@ dependencies = [
5832
5856
  "http 1.3.1",
5833
5857
  "http-body-util",
5834
5858
  "hyper 1.6.0",
5835
- "hyper-rustls 0.27.5",
5859
+ "hyper-rustls 0.27.7",
5836
5860
  "hyper-util",
5837
5861
  "log",
5838
5862
  "percent-encoding",
5839
- "rustls 0.23.26",
5863
+ "rustls 0.23.29",
5840
5864
  "rustls-pemfile 2.2.0",
5841
5865
  "seahash",
5842
5866
  "serde",
@@ -5857,11 +5881,11 @@ dependencies = [
5857
5881
  "http 1.3.1",
5858
5882
  "http-body-util",
5859
5883
  "hyper 1.6.0",
5860
- "hyper-rustls 0.27.5",
5884
+ "hyper-rustls 0.27.7",
5861
5885
  "hyper-util",
5862
5886
  "log",
5863
5887
  "percent-encoding",
5864
- "rustls 0.23.26",
5888
+ "rustls 0.23.29",
5865
5889
  "rustls-pemfile 2.2.0",
5866
5890
  "seahash",
5867
5891
  "serde",
@@ -5874,42 +5898,22 @@ dependencies = [
5874
5898
 
5875
5899
  [[package]]
5876
5900
  name = "zerocopy"
5877
- version = "0.7.35"
5901
+ version = "0.8.26"
5878
5902
  source = "registry+https://github.com/rust-lang/crates.io-index"
5879
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
5903
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
5880
5904
  dependencies = [
5881
- "zerocopy-derive 0.7.35",
5882
- ]
5883
-
5884
- [[package]]
5885
- name = "zerocopy"
5886
- version = "0.8.25"
5887
- source = "registry+https://github.com/rust-lang/crates.io-index"
5888
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
5889
- dependencies = [
5890
- "zerocopy-derive 0.8.25",
5905
+ "zerocopy-derive",
5891
5906
  ]
5892
5907
 
5893
5908
  [[package]]
5894
5909
  name = "zerocopy-derive"
5895
- version = "0.7.35"
5910
+ version = "0.8.26"
5896
5911
  source = "registry+https://github.com/rust-lang/crates.io-index"
5897
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
5912
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
5898
5913
  dependencies = [
5899
5914
  "proc-macro2",
5900
5915
  "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",
5916
+ "syn 2.0.104",
5913
5917
  ]
5914
5918
 
5915
5919
  [[package]]
@@ -5929,7 +5933,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5929
5933
  dependencies = [
5930
5934
  "proc-macro2",
5931
5935
  "quote",
5932
- "syn 2.0.101",
5936
+ "syn 2.0.104",
5933
5937
  "synstructure",
5934
5938
  ]
5935
5939
 
@@ -5939,11 +5943,22 @@ version = "1.8.1"
5939
5943
  source = "registry+https://github.com/rust-lang/crates.io-index"
5940
5944
  checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
5941
5945
 
5946
+ [[package]]
5947
+ name = "zerotrie"
5948
+ version = "0.2.2"
5949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5950
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
5951
+ dependencies = [
5952
+ "displaydoc",
5953
+ "yoke",
5954
+ "zerofrom",
5955
+ ]
5956
+
5942
5957
  [[package]]
5943
5958
  name = "zerovec"
5944
- version = "0.10.4"
5959
+ version = "0.11.2"
5945
5960
  source = "registry+https://github.com/rust-lang/crates.io-index"
5946
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
5961
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
5947
5962
  dependencies = [
5948
5963
  "yoke",
5949
5964
  "zerofrom",
@@ -5952,11 +5967,11 @@ dependencies = [
5952
5967
 
5953
5968
  [[package]]
5954
5969
  name = "zerovec-derive"
5955
- version = "0.10.3"
5970
+ version = "0.11.1"
5956
5971
  source = "registry+https://github.com/rust-lang/crates.io-index"
5957
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
5972
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
5958
5973
  dependencies = [
5959
5974
  "proc-macro2",
5960
5975
  "quote",
5961
- "syn 2.0.101",
5976
+ "syn 2.0.104",
5962
5977
  ]