cocoindex 0.1.35__tar.gz → 0.1.37__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 (239) hide show
  1. {cocoindex-0.1.35 → cocoindex-0.1.37}/Cargo.lock +890 -72
  2. {cocoindex-0.1.35 → cocoindex-0.1.37}/Cargo.toml +5 -2
  3. {cocoindex-0.1.35 → cocoindex-0.1.37}/PKG-INFO +2 -2
  4. {cocoindex-0.1.35 → cocoindex-0.1.37}/README.md +1 -1
  5. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/basics.md +1 -1
  6. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/data_types.mdx +31 -9
  7. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/flow_methods.mdx +47 -18
  8. cocoindex-0.1.37/docs/docs/ops/sources.md +205 -0
  9. cocoindex-0.1.37/examples/amazon_s3_text_embedding/.env.example +11 -0
  10. cocoindex-0.1.37/examples/amazon_s3_text_embedding/README.md +71 -0
  11. cocoindex-0.1.37/examples/amazon_s3_text_embedding/main.py +77 -0
  12. cocoindex-0.1.37/examples/amazon_s3_text_embedding/pyproject.toml +6 -0
  13. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/code_embedding/pyproject.toml +1 -1
  14. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/docs_to_knowledge_graph/pyproject.toml +1 -1
  15. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/requirements.txt +1 -1
  16. cocoindex-0.1.37/examples/gdrive_text_embedding/.gitignore +1 -0
  17. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/gdrive_text_embedding/main.py +0 -1
  18. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/gdrive_text_embedding/pyproject.toml +1 -1
  19. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/README.md +3 -1
  20. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/main.py +6 -2
  21. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/requirements.txt +1 -1
  22. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/pyproject.toml +1 -1
  23. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/pdf_embedding/pyproject.toml +1 -1
  24. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/pyproject.toml +1 -1
  25. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding/pyproject.toml +1 -1
  26. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding_qdrant/pyproject.toml +1 -1
  27. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/cli.py +3 -2
  28. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/convert.py +33 -11
  29. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/sources.py +13 -0
  30. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/tests/test_convert.py +70 -3
  31. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/typing.py +35 -17
  32. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/builder/analyzed_flow.rs +1 -1
  33. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/builder/analyzer.rs +8 -8
  34. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/db_tracking.rs +25 -0
  35. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/dumper.rs +8 -5
  36. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/evaluator.rs +19 -15
  37. cocoindex-0.1.37/src/execution/indexing_status.rs +63 -0
  38. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/live_updater.rs +77 -4
  39. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/mod.rs +1 -0
  40. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/row_indexer.rs +90 -78
  41. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/source_indexer.rs +86 -75
  42. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/interface.rs +91 -20
  43. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/registration.rs +1 -0
  44. cocoindex-0.1.37/src/ops/sources/amazon_s3.rs +355 -0
  45. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/sources/google_drive.rs +48 -36
  46. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/sources/local_file.rs +36 -18
  47. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/sources/mod.rs +1 -0
  48. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/storages/neo4j.rs +6 -5
  49. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/prelude.rs +1 -1
  50. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/server.rs +4 -0
  51. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/service/error.rs +4 -4
  52. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/service/flows.rs +79 -39
  53. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/setup/auth_registry.rs +7 -1
  54. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/utils/mod.rs +1 -1
  55. cocoindex-0.1.35/src/utils/retriable.rs → cocoindex-0.1.37/src/utils/retryable.rs +19 -6
  56. cocoindex-0.1.35/docs/docs/ops/sources.md +0 -86
  57. cocoindex-0.1.35/examples/gdrive_text_embedding/data/1706.03762v7.docx +0 -0
  58. cocoindex-0.1.35/examples/gdrive_text_embedding/data/1810.04805v2.docx +0 -0
  59. cocoindex-0.1.35/examples/text_embedding/markdown_files/1706.03762v7.md +0 -354
  60. cocoindex-0.1.35/examples/text_embedding/markdown_files/1810.04805v2.md +0 -530
  61. cocoindex-0.1.35/examples/text_embedding/markdown_files/rfc8259.md +0 -362
  62. {cocoindex-0.1.35 → cocoindex-0.1.37}/.cargo/config.toml +0 -0
  63. {cocoindex-0.1.35 → cocoindex-0.1.37}/.env.lib_debug +0 -0
  64. {cocoindex-0.1.35 → cocoindex-0.1.37}/.github/ISSUE_TEMPLATE//360/237/220/233-bug-report.md" +0 -0
  65. {cocoindex-0.1.35 → cocoindex-0.1.37}/.github/ISSUE_TEMPLATE//360/237/222/241-feature-request.md" +0 -0
  66. {cocoindex-0.1.35 → cocoindex-0.1.37}/.github/scripts/update_version.sh +0 -0
  67. {cocoindex-0.1.35 → cocoindex-0.1.37}/.github/workflows/CI.yml +0 -0
  68. {cocoindex-0.1.35 → cocoindex-0.1.37}/.github/workflows/_test.yml +0 -0
  69. {cocoindex-0.1.35 → cocoindex-0.1.37}/.github/workflows/docs.yml +0 -0
  70. {cocoindex-0.1.35 → cocoindex-0.1.37}/.github/workflows/release.yml +0 -0
  71. {cocoindex-0.1.35 → cocoindex-0.1.37}/.gitignore +0 -0
  72. {cocoindex-0.1.35 → cocoindex-0.1.37}/.vscode/settings.json +0 -0
  73. {cocoindex-0.1.35 → cocoindex-0.1.37}/CODE_OF_CONDUCT.md +0 -0
  74. {cocoindex-0.1.35 → cocoindex-0.1.37}/CONTRIBUTING.md +0 -0
  75. {cocoindex-0.1.35 → cocoindex-0.1.37}/LICENSE +0 -0
  76. {cocoindex-0.1.35 → cocoindex-0.1.37}/dev/neo4j.yaml +0 -0
  77. {cocoindex-0.1.35 → cocoindex-0.1.37}/dev/postgres.yaml +0 -0
  78. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/.gitignore +0 -0
  79. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/README.md +0 -0
  80. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/about/community.md +0 -0
  81. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/about/contributing.md +0 -0
  82. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/ai/llm.mdx +0 -0
  83. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/cli.mdx +0 -0
  84. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/custom_function.mdx +0 -0
  85. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/data_example.svg +0 -0
  86. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/flow_def.mdx +0 -0
  87. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/flow_example.svg +0 -0
  88. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/core/initialization.mdx +0 -0
  89. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/getting_started/installation.md +0 -0
  90. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/getting_started/markdown_files.zip +0 -0
  91. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/getting_started/overview.md +0 -0
  92. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/getting_started/quickstart.md +0 -0
  93. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/ops/functions.md +0 -0
  94. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docs/ops/storages.md +0 -0
  95. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/docusaurus.config.ts +0 -0
  96. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/package.json +0 -0
  97. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/sidebars.ts +0 -0
  98. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/src/components/HomepageFeatures/index.tsx +0 -0
  99. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/src/components/HomepageFeatures/styles.module.css +0 -0
  100. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/src/css/custom.css +0 -0
  101. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/src/theme/Root.js +0 -0
  102. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/static/.nojekyll +0 -0
  103. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/static/img/docusaurus.png +0 -0
  104. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/static/img/favicon.ico +0 -0
  105. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/static/img/icon.svg +0 -0
  106. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/static/robots.txt +0 -0
  107. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/tsconfig.json +0 -0
  108. {cocoindex-0.1.35 → cocoindex-0.1.37}/docs/yarn.lock +0 -0
  109. {cocoindex-0.1.35/examples/gdrive_text_embedding → cocoindex-0.1.37/examples/amazon_s3_text_embedding}/.gitignore +0 -0
  110. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/code_embedding/.env +0 -0
  111. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/code_embedding/README.md +0 -0
  112. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/code_embedding/main.py +0 -0
  113. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/docs_to_knowledge_graph/.env +0 -0
  114. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/docs_to_knowledge_graph/README.md +0 -0
  115. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/docs_to_knowledge_graph/main.py +0 -0
  116. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/.dockerignore +0 -0
  117. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/.env +0 -0
  118. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/README.md +0 -0
  119. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/compose.yaml +0 -0
  120. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/dockerfile +0 -0
  121. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/main.py +0 -0
  122. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/sample_code/main.py +0 -0
  123. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/fastapi_server_docker/src/cocoindex_funs.py +0 -0
  124. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/gdrive_text_embedding/.env.example +0 -0
  125. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/gdrive_text_embedding/README.md +0 -0
  126. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/.env +0 -0
  127. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/.gitignore +0 -0
  128. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/index.html +0 -0
  129. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/package-lock.json +0 -0
  130. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/package.json +0 -0
  131. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/src/App.jsx +0 -0
  132. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/src/main.jsx +0 -0
  133. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/src/style.css +0 -0
  134. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/frontend/vite.config.js +0 -0
  135. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/img/cat1.jpeg +0 -0
  136. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/img/dog1.jpeg +0 -0
  137. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/img/elephant1.jpg +0 -0
  138. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/image_search_example/img/giraffe.jpg +0 -0
  139. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/.env +0 -0
  140. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/README.md +0 -0
  141. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/main.py +0 -0
  142. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/manuals/array.pdf +0 -0
  143. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/manuals/base64.pdf +0 -0
  144. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/manuals/copy.pdf +0 -0
  145. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/manuals_llm_extraction/manuals/glob.pdf +0 -0
  146. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/pdf_embedding/.env +0 -0
  147. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/pdf_embedding/README.md +0 -0
  148. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/pdf_embedding/main.py +0 -0
  149. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/pdf_embedding/pdf_files/1706.03762v7.pdf +0 -0
  150. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/pdf_embedding/pdf_files/1810.04805v2.pdf +0 -0
  151. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/pdf_embedding/pdf_files/rfc8259.pdf +0 -0
  152. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/.env +0 -0
  153. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/README.md +0 -0
  154. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/img/cocoinsight.png +0 -0
  155. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/img/neo4j.png +0 -0
  156. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/main.py +0 -0
  157. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p1.json +0 -0
  158. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p2.json +0 -0
  159. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p3.json +0 -0
  160. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p4.json +0 -0
  161. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p5.json +0 -0
  162. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p6.json +0 -0
  163. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p7.json +0 -0
  164. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p8.json +0 -0
  165. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/product_taxonomy_knowledge_graph/products/p9.json +0 -0
  166. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding/.env +0 -0
  167. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding/README.md +0 -0
  168. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding/Text_Embedding.ipynb +0 -0
  169. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding/main.py +0 -0
  170. {cocoindex-0.1.35/examples/docs_to_knowledge_graph → cocoindex-0.1.37/examples/text_embedding}/markdown_files/1706.03762v7.md +0 -0
  171. {cocoindex-0.1.35/examples/docs_to_knowledge_graph → cocoindex-0.1.37/examples/text_embedding}/markdown_files/1810.04805v2.md +0 -0
  172. {cocoindex-0.1.35/examples/docs_to_knowledge_graph → cocoindex-0.1.37/examples/text_embedding}/markdown_files/rfc8259.md +0 -0
  173. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding_qdrant/.env +0 -0
  174. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding_qdrant/README.md +0 -0
  175. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding_qdrant/main.py +0 -0
  176. {cocoindex-0.1.35 → cocoindex-0.1.37}/examples/text_embedding_qdrant/markdown_files/rfc8259.md +0 -0
  177. {cocoindex-0.1.35 → cocoindex-0.1.37}/pyproject.toml +0 -0
  178. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/__init__.py +0 -0
  179. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/auth_registry.py +0 -0
  180. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/flow.py +0 -0
  181. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/functions.py +0 -0
  182. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/index.py +0 -0
  183. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/lib.py +0 -0
  184. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/llm.py +0 -0
  185. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/op.py +0 -0
  186. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/py.typed +0 -0
  187. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/query.py +0 -0
  188. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/runtime.py +0 -0
  189. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/setting.py +0 -0
  190. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/setup.py +0 -0
  191. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/storages.py +0 -0
  192. {cocoindex-0.1.35 → cocoindex-0.1.37}/python/cocoindex/tests/__init__.py +0 -0
  193. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/base/field_attrs.rs +0 -0
  194. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/base/json_schema.rs +0 -0
  195. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/base/mod.rs +0 -0
  196. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/base/schema.rs +0 -0
  197. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/base/spec.rs +0 -0
  198. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/base/value.rs +0 -0
  199. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/builder/flow_builder.rs +0 -0
  200. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/builder/mod.rs +0 -0
  201. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/builder/plan.rs +0 -0
  202. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/db_tracking_setup.rs +0 -0
  203. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/memoization.rs +0 -0
  204. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/query.rs +0 -0
  205. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/execution/stats.rs +0 -0
  206. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/lib.rs +0 -0
  207. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/lib_context.rs +0 -0
  208. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/llm/anthropic.rs +0 -0
  209. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/llm/gemini.rs +0 -0
  210. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/llm/mod.rs +0 -0
  211. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/llm/ollama.rs +0 -0
  212. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/llm/openai.rs +0 -0
  213. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/factory_bases.rs +0 -0
  214. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/functions/extract_by_llm.rs +0 -0
  215. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/functions/mod.rs +0 -0
  216. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/functions/parse_json.rs +0 -0
  217. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/functions/split_recursively.rs +0 -0
  218. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/mod.rs +0 -0
  219. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/py_factory.rs +0 -0
  220. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/registry.rs +0 -0
  221. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/sdk.rs +0 -0
  222. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/storages/mod.rs +0 -0
  223. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/storages/postgres.rs +0 -0
  224. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/storages/qdrant.rs +0 -0
  225. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/ops/storages/spec.rs +0 -0
  226. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/py/convert.rs +0 -0
  227. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/py/mod.rs +0 -0
  228. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/service/mod.rs +0 -0
  229. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/service/search.rs +0 -0
  230. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/settings.rs +0 -0
  231. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/setup/components.rs +0 -0
  232. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/setup/db_metadata.rs +0 -0
  233. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/setup/driver.rs +0 -0
  234. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/setup/mod.rs +0 -0
  235. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/setup/states.rs +0 -0
  236. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/utils/db.rs +0 -0
  237. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/utils/fingerprint.rs +0 -0
  238. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/utils/immutable.rs +0 -0
  239. {cocoindex-0.1.35 → cocoindex-0.1.37}/src/utils/yaml_ser.rs +0 -0
@@ -212,6 +212,48 @@ version = "1.4.0"
212
212
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
213
  checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
214
214
 
215
+ [[package]]
216
+ name = "aws-config"
217
+ version = "1.6.2"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "b6fcc63c9860579e4cb396239570e979376e70aab79e496621748a09913f8b36"
220
+ dependencies = [
221
+ "aws-credential-types",
222
+ "aws-runtime",
223
+ "aws-sdk-sso",
224
+ "aws-sdk-ssooidc",
225
+ "aws-sdk-sts",
226
+ "aws-smithy-async",
227
+ "aws-smithy-http",
228
+ "aws-smithy-json",
229
+ "aws-smithy-runtime",
230
+ "aws-smithy-runtime-api",
231
+ "aws-smithy-types",
232
+ "aws-types",
233
+ "bytes",
234
+ "fastrand",
235
+ "hex",
236
+ "http 1.3.1",
237
+ "ring",
238
+ "time",
239
+ "tokio",
240
+ "tracing",
241
+ "url",
242
+ "zeroize",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "aws-credential-types"
247
+ version = "1.2.3"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "687bc16bc431a8533fe0097c7f0182874767f920989d7260950172ae8e3c4465"
250
+ dependencies = [
251
+ "aws-smithy-async",
252
+ "aws-smithy-runtime-api",
253
+ "aws-smithy-types",
254
+ "zeroize",
255
+ ]
256
+
215
257
  [[package]]
216
258
  name = "aws-lc-rs"
217
259
  version = "1.13.0"
@@ -235,6 +277,398 @@ dependencies = [
235
277
  "fs_extra",
236
278
  ]
237
279
 
280
+ [[package]]
281
+ name = "aws-runtime"
282
+ version = "1.5.7"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "6c4063282c69991e57faab9e5cb21ae557e59f5b0fb285c196335243df8dc25c"
285
+ dependencies = [
286
+ "aws-credential-types",
287
+ "aws-sigv4",
288
+ "aws-smithy-async",
289
+ "aws-smithy-eventstream",
290
+ "aws-smithy-http",
291
+ "aws-smithy-runtime",
292
+ "aws-smithy-runtime-api",
293
+ "aws-smithy-types",
294
+ "aws-types",
295
+ "bytes",
296
+ "fastrand",
297
+ "http 0.2.12",
298
+ "http-body 0.4.6",
299
+ "percent-encoding",
300
+ "pin-project-lite",
301
+ "tracing",
302
+ "uuid",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "aws-sdk-s3"
307
+ version = "1.85.0"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "d5c82dae9304e7ced2ff6cca43dceb2d6de534c95a506ff0f168a7463c9a885d"
310
+ dependencies = [
311
+ "aws-credential-types",
312
+ "aws-runtime",
313
+ "aws-sigv4",
314
+ "aws-smithy-async",
315
+ "aws-smithy-checksums",
316
+ "aws-smithy-eventstream",
317
+ "aws-smithy-http",
318
+ "aws-smithy-json",
319
+ "aws-smithy-runtime",
320
+ "aws-smithy-runtime-api",
321
+ "aws-smithy-types",
322
+ "aws-smithy-xml",
323
+ "aws-types",
324
+ "bytes",
325
+ "fastrand",
326
+ "hex",
327
+ "hmac",
328
+ "http 0.2.12",
329
+ "http 1.3.1",
330
+ "http-body 0.4.6",
331
+ "lru",
332
+ "once_cell",
333
+ "percent-encoding",
334
+ "regex-lite",
335
+ "sha2",
336
+ "tracing",
337
+ "url",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "aws-sdk-sqs"
342
+ version = "1.67.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "c6f15bedfb1c4385fccc474f0fe46dffb0335d0b3d6b4413df06fb30d90caba8"
345
+ dependencies = [
346
+ "aws-credential-types",
347
+ "aws-runtime",
348
+ "aws-smithy-async",
349
+ "aws-smithy-http",
350
+ "aws-smithy-json",
351
+ "aws-smithy-runtime",
352
+ "aws-smithy-runtime-api",
353
+ "aws-smithy-types",
354
+ "aws-types",
355
+ "bytes",
356
+ "fastrand",
357
+ "http 0.2.12",
358
+ "once_cell",
359
+ "regex-lite",
360
+ "tracing",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "aws-sdk-sso"
365
+ version = "1.67.0"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "0d4863da26489d1e6da91d7e12b10c17e86c14f94c53f416bd10e0a9c34057ba"
368
+ dependencies = [
369
+ "aws-credential-types",
370
+ "aws-runtime",
371
+ "aws-smithy-async",
372
+ "aws-smithy-http",
373
+ "aws-smithy-json",
374
+ "aws-smithy-runtime",
375
+ "aws-smithy-runtime-api",
376
+ "aws-smithy-types",
377
+ "aws-types",
378
+ "bytes",
379
+ "fastrand",
380
+ "http 0.2.12",
381
+ "once_cell",
382
+ "regex-lite",
383
+ "tracing",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "aws-sdk-ssooidc"
388
+ version = "1.68.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "95caa3998d7237789b57b95a8e031f60537adab21fa84c91e35bef9455c652e4"
391
+ dependencies = [
392
+ "aws-credential-types",
393
+ "aws-runtime",
394
+ "aws-smithy-async",
395
+ "aws-smithy-http",
396
+ "aws-smithy-json",
397
+ "aws-smithy-runtime",
398
+ "aws-smithy-runtime-api",
399
+ "aws-smithy-types",
400
+ "aws-types",
401
+ "bytes",
402
+ "fastrand",
403
+ "http 0.2.12",
404
+ "once_cell",
405
+ "regex-lite",
406
+ "tracing",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "aws-sdk-sts"
411
+ version = "1.68.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "4939f6f449a37308a78c5a910fd91265479bd2bb11d186f0b8fc114d89ec828d"
414
+ dependencies = [
415
+ "aws-credential-types",
416
+ "aws-runtime",
417
+ "aws-smithy-async",
418
+ "aws-smithy-http",
419
+ "aws-smithy-json",
420
+ "aws-smithy-query",
421
+ "aws-smithy-runtime",
422
+ "aws-smithy-runtime-api",
423
+ "aws-smithy-types",
424
+ "aws-smithy-xml",
425
+ "aws-types",
426
+ "fastrand",
427
+ "http 0.2.12",
428
+ "once_cell",
429
+ "regex-lite",
430
+ "tracing",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "aws-sigv4"
435
+ version = "1.3.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "3503af839bd8751d0bdc5a46b9cac93a003a353e635b0c12cf2376b5b53e41ea"
438
+ dependencies = [
439
+ "aws-credential-types",
440
+ "aws-smithy-eventstream",
441
+ "aws-smithy-http",
442
+ "aws-smithy-runtime-api",
443
+ "aws-smithy-types",
444
+ "bytes",
445
+ "crypto-bigint 0.5.5",
446
+ "form_urlencoded",
447
+ "hex",
448
+ "hmac",
449
+ "http 0.2.12",
450
+ "http 1.3.1",
451
+ "p256",
452
+ "percent-encoding",
453
+ "ring",
454
+ "sha2",
455
+ "subtle",
456
+ "time",
457
+ "tracing",
458
+ "zeroize",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "aws-smithy-async"
463
+ version = "1.2.5"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "1e190749ea56f8c42bf15dd76c65e14f8f765233e6df9b0506d9d934ebef867c"
466
+ dependencies = [
467
+ "futures-util",
468
+ "pin-project-lite",
469
+ "tokio",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "aws-smithy-checksums"
474
+ version = "0.63.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "b65d21e1ba6f2cdec92044f904356a19f5ad86961acf015741106cdfafd747c0"
477
+ dependencies = [
478
+ "aws-smithy-http",
479
+ "aws-smithy-types",
480
+ "bytes",
481
+ "crc32c",
482
+ "crc32fast",
483
+ "crc64fast-nvme",
484
+ "hex",
485
+ "http 0.2.12",
486
+ "http-body 0.4.6",
487
+ "md-5",
488
+ "pin-project-lite",
489
+ "sha1",
490
+ "sha2",
491
+ "tracing",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "aws-smithy-eventstream"
496
+ version = "0.60.8"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "7c45d3dddac16c5c59d553ece225a88870cf81b7b813c9cc17b78cf4685eac7a"
499
+ dependencies = [
500
+ "aws-smithy-types",
501
+ "bytes",
502
+ "crc32fast",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "aws-smithy-http"
507
+ version = "0.62.1"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "99335bec6cdc50a346fda1437f9fefe33abf8c99060739a546a16457f2862ca9"
510
+ dependencies = [
511
+ "aws-smithy-eventstream",
512
+ "aws-smithy-runtime-api",
513
+ "aws-smithy-types",
514
+ "bytes",
515
+ "bytes-utils",
516
+ "futures-core",
517
+ "http 0.2.12",
518
+ "http 1.3.1",
519
+ "http-body 0.4.6",
520
+ "percent-encoding",
521
+ "pin-project-lite",
522
+ "pin-utils",
523
+ "tracing",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "aws-smithy-http-client"
528
+ version = "1.0.2"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "7e44697a9bded898dcd0b1cb997430d949b87f4f8940d91023ae9062bf218250"
531
+ dependencies = [
532
+ "aws-smithy-async",
533
+ "aws-smithy-runtime-api",
534
+ "aws-smithy-types",
535
+ "h2 0.4.9",
536
+ "http 0.2.12",
537
+ "http 1.3.1",
538
+ "http-body 0.4.6",
539
+ "hyper 0.14.32",
540
+ "hyper 1.6.0",
541
+ "hyper-rustls 0.24.2",
542
+ "hyper-rustls 0.27.5",
543
+ "hyper-util",
544
+ "pin-project-lite",
545
+ "rustls 0.21.12",
546
+ "rustls 0.23.26",
547
+ "rustls-native-certs 0.8.1",
548
+ "rustls-pki-types",
549
+ "tokio",
550
+ "tower 0.5.2",
551
+ "tracing",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "aws-smithy-json"
556
+ version = "0.61.3"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "92144e45819cae7dc62af23eac5a038a58aa544432d2102609654376a900bd07"
559
+ dependencies = [
560
+ "aws-smithy-types",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "aws-smithy-observability"
565
+ version = "0.1.3"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "9364d5989ac4dd918e5cc4c4bdcc61c9be17dcd2586ea7f69e348fc7c6cab393"
568
+ dependencies = [
569
+ "aws-smithy-runtime-api",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "aws-smithy-query"
574
+ version = "0.60.7"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "f2fbd61ceb3fe8a1cb7352e42689cec5335833cd9f94103a61e98f9bb61c64bb"
577
+ dependencies = [
578
+ "aws-smithy-types",
579
+ "urlencoding",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "aws-smithy-runtime"
584
+ version = "1.8.3"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "14302f06d1d5b7d333fd819943075b13d27c7700b414f574c3c35859bfb55d5e"
587
+ dependencies = [
588
+ "aws-smithy-async",
589
+ "aws-smithy-http",
590
+ "aws-smithy-http-client",
591
+ "aws-smithy-observability",
592
+ "aws-smithy-runtime-api",
593
+ "aws-smithy-types",
594
+ "bytes",
595
+ "fastrand",
596
+ "http 0.2.12",
597
+ "http 1.3.1",
598
+ "http-body 0.4.6",
599
+ "http-body 1.0.1",
600
+ "pin-project-lite",
601
+ "pin-utils",
602
+ "tokio",
603
+ "tracing",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "aws-smithy-runtime-api"
608
+ version = "1.8.0"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "a1e5d9e3a80a18afa109391fb5ad09c3daf887b516c6fd805a157c6ea7994a57"
611
+ dependencies = [
612
+ "aws-smithy-async",
613
+ "aws-smithy-types",
614
+ "bytes",
615
+ "http 0.2.12",
616
+ "http 1.3.1",
617
+ "pin-project-lite",
618
+ "tokio",
619
+ "tracing",
620
+ "zeroize",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "aws-smithy-types"
625
+ version = "1.3.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "40076bd09fadbc12d5e026ae080d0930defa606856186e31d83ccc6a255eeaf3"
628
+ dependencies = [
629
+ "base64-simd",
630
+ "bytes",
631
+ "bytes-utils",
632
+ "futures-core",
633
+ "http 0.2.12",
634
+ "http 1.3.1",
635
+ "http-body 0.4.6",
636
+ "http-body 1.0.1",
637
+ "http-body-util",
638
+ "itoa",
639
+ "num-integer",
640
+ "pin-project-lite",
641
+ "pin-utils",
642
+ "ryu",
643
+ "serde",
644
+ "time",
645
+ "tokio",
646
+ "tokio-util",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "aws-smithy-xml"
651
+ version = "0.60.9"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "ab0b0166827aa700d3dc519f72f8b3a91c35d0b8d042dc5d643a91e6f80648fc"
654
+ dependencies = [
655
+ "xmlparser",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "aws-types"
660
+ version = "1.3.7"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "8a322fec39e4df22777ed3ad8ea868ac2f94cd15e1a55f6ee8d8d6305057689a"
663
+ dependencies = [
664
+ "aws-credential-types",
665
+ "aws-smithy-async",
666
+ "aws-smithy-runtime-api",
667
+ "aws-smithy-types",
668
+ "rustc_version",
669
+ "tracing",
670
+ ]
671
+
238
672
  [[package]]
239
673
  name = "axum"
240
674
  version = "0.7.9"
@@ -245,10 +679,10 @@ dependencies = [
245
679
  "axum-core",
246
680
  "bytes",
247
681
  "futures-util",
248
- "http",
249
- "http-body",
682
+ "http 1.3.1",
683
+ "http-body 1.0.1",
250
684
  "http-body-util",
251
- "hyper",
685
+ "hyper 1.6.0",
252
686
  "hyper-util",
253
687
  "itoa",
254
688
  "matchit",
@@ -278,8 +712,8 @@ dependencies = [
278
712
  "async-trait",
279
713
  "bytes",
280
714
  "futures-util",
281
- "http",
282
- "http-body",
715
+ "http 1.3.1",
716
+ "http-body 1.0.1",
283
717
  "http-body-util",
284
718
  "mime",
285
719
  "pin-project-lite",
@@ -301,8 +735,8 @@ dependencies = [
301
735
  "bytes",
302
736
  "fastrand",
303
737
  "futures-util",
304
- "http",
305
- "http-body",
738
+ "http 1.3.1",
739
+ "http-body 1.0.1",
306
740
  "http-body-util",
307
741
  "mime",
308
742
  "multer",
@@ -343,6 +777,12 @@ dependencies = [
343
777
  "windows-targets 0.52.6",
344
778
  ]
345
779
 
780
+ [[package]]
781
+ name = "base16ct"
782
+ version = "0.1.1"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce"
785
+
346
786
  [[package]]
347
787
  name = "base64"
348
788
  version = "0.21.7"
@@ -355,6 +795,16 @@ version = "0.22.1"
355
795
  source = "registry+https://github.com/rust-lang/crates.io-index"
356
796
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
357
797
 
798
+ [[package]]
799
+ name = "base64-simd"
800
+ version = "0.8.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
803
+ dependencies = [
804
+ "outref",
805
+ "vsimd",
806
+ ]
807
+
358
808
  [[package]]
359
809
  name = "base64ct"
360
810
  version = "1.7.3"
@@ -442,6 +892,16 @@ dependencies = [
442
892
  "serde",
443
893
  ]
444
894
 
895
+ [[package]]
896
+ name = "bytes-utils"
897
+ version = "0.1.4"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
900
+ dependencies = [
901
+ "bytes",
902
+ "either",
903
+ ]
904
+
445
905
  [[package]]
446
906
  name = "cc"
447
907
  version = "1.2.20"
@@ -533,12 +993,15 @@ dependencies = [
533
993
 
534
994
  [[package]]
535
995
  name = "cocoindex"
536
- version = "0.1.35"
996
+ version = "0.1.37"
537
997
  dependencies = [
538
998
  "anyhow",
539
999
  "async-openai",
540
1000
  "async-stream",
541
1001
  "async-trait",
1002
+ "aws-config",
1003
+ "aws-sdk-s3",
1004
+ "aws-sdk-sqs",
542
1005
  "axum",
543
1006
  "axum-extra",
544
1007
  "base64 0.22.1",
@@ -554,7 +1017,7 @@ dependencies = [
554
1017
  "google-drive3",
555
1018
  "hex",
556
1019
  "http-body-util",
557
- "hyper-rustls",
1020
+ "hyper-rustls 0.27.5",
558
1021
  "hyper-util",
559
1022
  "indenter",
560
1023
  "indexmap 2.9.0",
@@ -572,7 +1035,7 @@ dependencies = [
572
1035
  "rand 0.9.1",
573
1036
  "regex",
574
1037
  "reqwest",
575
- "rustls",
1038
+ "rustls 0.23.26",
576
1039
  "schemars",
577
1040
  "serde",
578
1041
  "serde_json",
@@ -753,6 +1216,15 @@ version = "2.4.0"
753
1216
  source = "registry+https://github.com/rust-lang/crates.io-index"
754
1217
  checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
755
1218
 
1219
+ [[package]]
1220
+ name = "crc32c"
1221
+ version = "0.6.8"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
1224
+ dependencies = [
1225
+ "rustc_version",
1226
+ ]
1227
+
756
1228
  [[package]]
757
1229
  name = "crc32fast"
758
1230
  version = "1.4.2"
@@ -762,6 +1234,15 @@ dependencies = [
762
1234
  "cfg-if",
763
1235
  ]
764
1236
 
1237
+ [[package]]
1238
+ name = "crc64fast-nvme"
1239
+ version = "1.2.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "4955638f00a809894c947f85a024020a20815b65a5eea633798ea7924edab2b3"
1242
+ dependencies = [
1243
+ "crc",
1244
+ ]
1245
+
765
1246
  [[package]]
766
1247
  name = "crossbeam-queue"
767
1248
  version = "0.3.12"
@@ -783,6 +1264,28 @@ version = "0.2.3"
783
1264
  source = "registry+https://github.com/rust-lang/crates.io-index"
784
1265
  checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
785
1266
 
1267
+ [[package]]
1268
+ name = "crypto-bigint"
1269
+ version = "0.4.9"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
1272
+ dependencies = [
1273
+ "generic-array",
1274
+ "rand_core 0.6.4",
1275
+ "subtle",
1276
+ "zeroize",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "crypto-bigint"
1281
+ version = "0.5.5"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
1284
+ dependencies = [
1285
+ "rand_core 0.6.4",
1286
+ "subtle",
1287
+ ]
1288
+
786
1289
  [[package]]
787
1290
  name = "crypto-common"
788
1291
  version = "0.1.6"
@@ -858,6 +1361,16 @@ dependencies = [
858
1361
  "syn 1.0.109",
859
1362
  ]
860
1363
 
1364
+ [[package]]
1365
+ name = "der"
1366
+ version = "0.6.1"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
1369
+ dependencies = [
1370
+ "const-oid",
1371
+ "zeroize",
1372
+ ]
1373
+
861
1374
  [[package]]
862
1375
  name = "der"
863
1376
  version = "0.7.10"
@@ -971,6 +1484,18 @@ version = "1.0.19"
971
1484
  source = "registry+https://github.com/rust-lang/crates.io-index"
972
1485
  checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
973
1486
 
1487
+ [[package]]
1488
+ name = "ecdsa"
1489
+ version = "0.14.8"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c"
1492
+ dependencies = [
1493
+ "der 0.6.1",
1494
+ "elliptic-curve",
1495
+ "rfc6979",
1496
+ "signature 1.6.4",
1497
+ ]
1498
+
974
1499
  [[package]]
975
1500
  name = "either"
976
1501
  version = "1.15.0"
@@ -980,6 +1505,26 @@ dependencies = [
980
1505
  "serde",
981
1506
  ]
982
1507
 
1508
+ [[package]]
1509
+ name = "elliptic-curve"
1510
+ version = "0.12.3"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
1513
+ dependencies = [
1514
+ "base16ct",
1515
+ "crypto-bigint 0.4.9",
1516
+ "der 0.6.1",
1517
+ "digest",
1518
+ "ff",
1519
+ "generic-array",
1520
+ "group",
1521
+ "pkcs8 0.9.0",
1522
+ "rand_core 0.6.4",
1523
+ "sec1",
1524
+ "subtle",
1525
+ "zeroize",
1526
+ ]
1527
+
983
1528
  [[package]]
984
1529
  name = "encoding_rs"
985
1530
  version = "0.8.35"
@@ -1067,6 +1612,16 @@ version = "2.3.0"
1067
1612
  source = "registry+https://github.com/rust-lang/crates.io-index"
1068
1613
  checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1069
1614
 
1615
+ [[package]]
1616
+ name = "ff"
1617
+ version = "0.12.1"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
1620
+ dependencies = [
1621
+ "rand_core 0.6.4",
1622
+ "subtle",
1623
+ ]
1624
+
1070
1625
  [[package]]
1071
1626
  name = "flate2"
1072
1627
  version = "1.1.1"
@@ -1291,9 +1846,9 @@ checksum = "7530ee92a7e9247c3294ae1b84ea98474dbc27563c49a14d3938e816499bf38f"
1291
1846
  dependencies = [
1292
1847
  "base64 0.22.1",
1293
1848
  "chrono",
1294
- "http",
1849
+ "http 1.3.1",
1295
1850
  "http-body-util",
1296
- "hyper",
1851
+ "hyper 1.6.0",
1297
1852
  "hyper-util",
1298
1853
  "itertools 0.13.0",
1299
1854
  "mime",
@@ -1314,8 +1869,8 @@ checksum = "84e3944ee656d220932785cf1d8275519c0989830b9b239453983ac44f328d9f"
1314
1869
  dependencies = [
1315
1870
  "chrono",
1316
1871
  "google-apis-common",
1317
- "hyper",
1318
- "hyper-rustls",
1872
+ "hyper 1.6.0",
1873
+ "hyper-rustls 0.27.5",
1319
1874
  "hyper-util",
1320
1875
  "mime",
1321
1876
  "serde",
@@ -1326,6 +1881,36 @@ dependencies = [
1326
1881
  "yup-oauth2 11.0.0",
1327
1882
  ]
1328
1883
 
1884
+ [[package]]
1885
+ name = "group"
1886
+ version = "0.12.1"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
1889
+ dependencies = [
1890
+ "ff",
1891
+ "rand_core 0.6.4",
1892
+ "subtle",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "h2"
1897
+ version = "0.3.26"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1900
+ dependencies = [
1901
+ "bytes",
1902
+ "fnv",
1903
+ "futures-core",
1904
+ "futures-sink",
1905
+ "futures-util",
1906
+ "http 0.2.12",
1907
+ "indexmap 2.9.0",
1908
+ "slab",
1909
+ "tokio",
1910
+ "tokio-util",
1911
+ "tracing",
1912
+ ]
1913
+
1329
1914
  [[package]]
1330
1915
  name = "h2"
1331
1916
  version = "0.4.9"
@@ -1337,7 +1922,7 @@ dependencies = [
1337
1922
  "fnv",
1338
1923
  "futures-core",
1339
1924
  "futures-sink",
1340
- "http",
1925
+ "http 1.3.1",
1341
1926
  "indexmap 2.9.0",
1342
1927
  "slab",
1343
1928
  "tokio",
@@ -1435,6 +2020,17 @@ dependencies = [
1435
2020
  "windows-sys 0.59.0",
1436
2021
  ]
1437
2022
 
2023
+ [[package]]
2024
+ name = "http"
2025
+ version = "0.2.12"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2028
+ dependencies = [
2029
+ "bytes",
2030
+ "fnv",
2031
+ "itoa",
2032
+ ]
2033
+
1438
2034
  [[package]]
1439
2035
  name = "http"
1440
2036
  version = "1.3.1"
@@ -1446,6 +2042,17 @@ dependencies = [
1446
2042
  "itoa",
1447
2043
  ]
1448
2044
 
2045
+ [[package]]
2046
+ name = "http-body"
2047
+ version = "0.4.6"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
2050
+ dependencies = [
2051
+ "bytes",
2052
+ "http 0.2.12",
2053
+ "pin-project-lite",
2054
+ ]
2055
+
1449
2056
  [[package]]
1450
2057
  name = "http-body"
1451
2058
  version = "1.0.1"
@@ -1453,7 +2060,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
2060
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1454
2061
  dependencies = [
1455
2062
  "bytes",
1456
- "http",
2063
+ "http 1.3.1",
1457
2064
  ]
1458
2065
 
1459
2066
  [[package]]
@@ -1464,8 +2071,8 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1464
2071
  dependencies = [
1465
2072
  "bytes",
1466
2073
  "futures-core",
1467
- "http",
1468
- "http-body",
2074
+ "http 1.3.1",
2075
+ "http-body 1.0.1",
1469
2076
  "pin-project-lite",
1470
2077
  ]
1471
2078
 
@@ -1481,6 +2088,30 @@ version = "1.0.3"
1481
2088
  source = "registry+https://github.com/rust-lang/crates.io-index"
1482
2089
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1483
2090
 
2091
+ [[package]]
2092
+ name = "hyper"
2093
+ version = "0.14.32"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
2096
+ dependencies = [
2097
+ "bytes",
2098
+ "futures-channel",
2099
+ "futures-core",
2100
+ "futures-util",
2101
+ "h2 0.3.26",
2102
+ "http 0.2.12",
2103
+ "http-body 0.4.6",
2104
+ "httparse",
2105
+ "httpdate",
2106
+ "itoa",
2107
+ "pin-project-lite",
2108
+ "socket2",
2109
+ "tokio",
2110
+ "tower-service",
2111
+ "tracing",
2112
+ "want",
2113
+ ]
2114
+
1484
2115
  [[package]]
1485
2116
  name = "hyper"
1486
2117
  version = "1.6.0"
@@ -1490,9 +2121,9 @@ dependencies = [
1490
2121
  "bytes",
1491
2122
  "futures-channel",
1492
2123
  "futures-util",
1493
- "h2",
1494
- "http",
1495
- "http-body",
2124
+ "h2 0.4.9",
2125
+ "http 1.3.1",
2126
+ "http-body 1.0.1",
1496
2127
  "httparse",
1497
2128
  "httpdate",
1498
2129
  "itoa",
@@ -1502,6 +2133,22 @@ dependencies = [
1502
2133
  "want",
1503
2134
  ]
1504
2135
 
2136
+ [[package]]
2137
+ name = "hyper-rustls"
2138
+ version = "0.24.2"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
2141
+ dependencies = [
2142
+ "futures-util",
2143
+ "http 0.2.12",
2144
+ "hyper 0.14.32",
2145
+ "log",
2146
+ "rustls 0.21.12",
2147
+ "rustls-native-certs 0.6.3",
2148
+ "tokio",
2149
+ "tokio-rustls 0.24.1",
2150
+ ]
2151
+
1505
2152
  [[package]]
1506
2153
  name = "hyper-rustls"
1507
2154
  version = "0.27.5"
@@ -1509,15 +2156,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
2156
  checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1510
2157
  dependencies = [
1511
2158
  "futures-util",
1512
- "http",
1513
- "hyper",
2159
+ "http 1.3.1",
2160
+ "hyper 1.6.0",
1514
2161
  "hyper-util",
1515
2162
  "log",
1516
- "rustls",
2163
+ "rustls 0.23.26",
1517
2164
  "rustls-native-certs 0.8.1",
1518
2165
  "rustls-pki-types",
1519
2166
  "tokio",
1520
- "tokio-rustls",
2167
+ "tokio-rustls 0.26.2",
1521
2168
  "tower-service",
1522
2169
  "webpki-roots",
1523
2170
  ]
@@ -1528,7 +2175,7 @@ version = "0.5.2"
1528
2175
  source = "registry+https://github.com/rust-lang/crates.io-index"
1529
2176
  checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1530
2177
  dependencies = [
1531
- "hyper",
2178
+ "hyper 1.6.0",
1532
2179
  "hyper-util",
1533
2180
  "pin-project-lite",
1534
2181
  "tokio",
@@ -1544,9 +2191,9 @@ dependencies = [
1544
2191
  "bytes",
1545
2192
  "futures-channel",
1546
2193
  "futures-util",
1547
- "http",
1548
- "http-body",
1549
- "hyper",
2194
+ "http 1.3.1",
2195
+ "http-body 1.0.1",
2196
+ "hyper 1.6.0",
1550
2197
  "libc",
1551
2198
  "pin-project-lite",
1552
2199
  "socket2",
@@ -1948,6 +2595,15 @@ version = "0.4.27"
1948
2595
  source = "registry+https://github.com/rust-lang/crates.io-index"
1949
2596
  checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1950
2597
 
2598
+ [[package]]
2599
+ name = "lru"
2600
+ version = "0.12.5"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
2603
+ dependencies = [
2604
+ "hashbrown 0.15.2",
2605
+ ]
2606
+
1951
2607
  [[package]]
1952
2608
  name = "matchit"
1953
2609
  version = "0.7.3"
@@ -2030,7 +2686,7 @@ dependencies = [
2030
2686
  "bytes",
2031
2687
  "encoding_rs",
2032
2688
  "futures-util",
2033
- "http",
2689
+ "http 1.3.1",
2034
2690
  "httparse",
2035
2691
  "memchr",
2036
2692
  "mime",
@@ -2057,11 +2713,11 @@ dependencies = [
2057
2713
  "paste",
2058
2714
  "pin-project-lite",
2059
2715
  "rustls-native-certs 0.7.3",
2060
- "rustls-pemfile",
2716
+ "rustls-pemfile 2.2.0",
2061
2717
  "serde",
2062
2718
  "thiserror 1.0.69",
2063
2719
  "tokio",
2064
- "tokio-rustls",
2720
+ "tokio-rustls 0.26.2",
2065
2721
  "url",
2066
2722
  "webpki-roots",
2067
2723
  ]
@@ -2189,12 +2845,29 @@ dependencies = [
2189
2845
  "hashbrown 0.14.5",
2190
2846
  ]
2191
2847
 
2848
+ [[package]]
2849
+ name = "outref"
2850
+ version = "0.5.2"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
2853
+
2192
2854
  [[package]]
2193
2855
  name = "owo-colors"
2194
2856
  version = "4.2.0"
2195
2857
  source = "registry+https://github.com/rust-lang/crates.io-index"
2196
2858
  checksum = "1036865bb9422d3300cf723f657c2851d0e9ab12567854b1f4eba3d77decf564"
2197
2859
 
2860
+ [[package]]
2861
+ name = "p256"
2862
+ version = "0.11.1"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
2865
+ dependencies = [
2866
+ "ecdsa",
2867
+ "elliptic-curve",
2868
+ "sha2",
2869
+ ]
2870
+
2198
2871
  [[package]]
2199
2872
  name = "parking"
2200
2873
  version = "2.2.1"
@@ -2390,9 +3063,19 @@ version = "0.7.5"
2390
3063
  source = "registry+https://github.com/rust-lang/crates.io-index"
2391
3064
  checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2392
3065
  dependencies = [
2393
- "der",
2394
- "pkcs8",
2395
- "spki",
3066
+ "der 0.7.10",
3067
+ "pkcs8 0.10.2",
3068
+ "spki 0.7.3",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "pkcs8"
3073
+ version = "0.9.0"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
3076
+ dependencies = [
3077
+ "der 0.6.1",
3078
+ "spki 0.6.0",
2396
3079
  ]
2397
3080
 
2398
3081
  [[package]]
@@ -2401,8 +3084,8 @@ version = "0.10.2"
2401
3084
  source = "registry+https://github.com/rust-lang/crates.io-index"
2402
3085
  checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2403
3086
  dependencies = [
2404
- "der",
2405
- "spki",
3087
+ "der 0.7.10",
3088
+ "spki 0.7.3",
2406
3089
  ]
2407
3090
 
2408
3091
  [[package]]
@@ -2612,7 +3295,7 @@ dependencies = [
2612
3295
  "quinn-proto",
2613
3296
  "quinn-udp",
2614
3297
  "rustc-hash 2.1.1",
2615
- "rustls",
3298
+ "rustls 0.23.26",
2616
3299
  "socket2",
2617
3300
  "thiserror 2.0.12",
2618
3301
  "tokio",
@@ -2631,7 +3314,7 @@ dependencies = [
2631
3314
  "rand 0.9.1",
2632
3315
  "ring",
2633
3316
  "rustc-hash 2.1.1",
2634
- "rustls",
3317
+ "rustls 0.23.26",
2635
3318
  "rustls-pki-types",
2636
3319
  "slab",
2637
3320
  "thiserror 2.0.12",
@@ -2760,6 +3443,12 @@ dependencies = [
2760
3443
  "regex-syntax",
2761
3444
  ]
2762
3445
 
3446
+ [[package]]
3447
+ name = "regex-lite"
3448
+ version = "0.1.6"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
3451
+
2763
3452
  [[package]]
2764
3453
  name = "regex-syntax"
2765
3454
  version = "0.8.5"
@@ -2776,12 +3465,12 @@ dependencies = [
2776
3465
  "bytes",
2777
3466
  "futures-core",
2778
3467
  "futures-util",
2779
- "h2",
2780
- "http",
2781
- "http-body",
3468
+ "h2 0.4.9",
3469
+ "http 1.3.1",
3470
+ "http-body 1.0.1",
2782
3471
  "http-body-util",
2783
- "hyper",
2784
- "hyper-rustls",
3472
+ "hyper 1.6.0",
3473
+ "hyper-rustls 0.27.5",
2785
3474
  "hyper-util",
2786
3475
  "ipnet",
2787
3476
  "js-sys",
@@ -2792,16 +3481,16 @@ dependencies = [
2792
3481
  "percent-encoding",
2793
3482
  "pin-project-lite",
2794
3483
  "quinn",
2795
- "rustls",
3484
+ "rustls 0.23.26",
2796
3485
  "rustls-native-certs 0.8.1",
2797
- "rustls-pemfile",
3486
+ "rustls-pemfile 2.2.0",
2798
3487
  "rustls-pki-types",
2799
3488
  "serde",
2800
3489
  "serde_json",
2801
3490
  "serde_urlencoded",
2802
3491
  "sync_wrapper",
2803
3492
  "tokio",
2804
- "tokio-rustls",
3493
+ "tokio-rustls 0.26.2",
2805
3494
  "tokio-util",
2806
3495
  "tower 0.5.2",
2807
3496
  "tower-service",
@@ -2836,6 +3525,17 @@ version = "0.1.9"
2836
3525
  source = "registry+https://github.com/rust-lang/crates.io-index"
2837
3526
  checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2838
3527
 
3528
+ [[package]]
3529
+ name = "rfc6979"
3530
+ version = "0.3.1"
3531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3532
+ checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb"
3533
+ dependencies = [
3534
+ "crypto-bigint 0.4.9",
3535
+ "hmac",
3536
+ "zeroize",
3537
+ ]
3538
+
2839
3539
  [[package]]
2840
3540
  name = "ring"
2841
3541
  version = "0.17.14"
@@ -2874,10 +3574,10 @@ dependencies = [
2874
3574
  "num-integer",
2875
3575
  "num-traits",
2876
3576
  "pkcs1",
2877
- "pkcs8",
3577
+ "pkcs8 0.10.2",
2878
3578
  "rand_core 0.6.4",
2879
- "signature",
2880
- "spki",
3579
+ "signature 2.2.0",
3580
+ "spki 0.7.3",
2881
3581
  "subtle",
2882
3582
  "zeroize",
2883
3583
  ]
@@ -2910,6 +3610,15 @@ version = "2.1.1"
2910
3610
  source = "registry+https://github.com/rust-lang/crates.io-index"
2911
3611
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2912
3612
 
3613
+ [[package]]
3614
+ name = "rustc_version"
3615
+ version = "0.4.1"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3618
+ dependencies = [
3619
+ "semver",
3620
+ ]
3621
+
2913
3622
  [[package]]
2914
3623
  name = "rustix"
2915
3624
  version = "0.38.44"
@@ -2936,6 +3645,18 @@ dependencies = [
2936
3645
  "windows-sys 0.59.0",
2937
3646
  ]
2938
3647
 
3648
+ [[package]]
3649
+ name = "rustls"
3650
+ version = "0.21.12"
3651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3652
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
3653
+ dependencies = [
3654
+ "log",
3655
+ "ring",
3656
+ "rustls-webpki 0.101.7",
3657
+ "sct",
3658
+ ]
3659
+
2939
3660
  [[package]]
2940
3661
  name = "rustls"
2941
3662
  version = "0.23.26"
@@ -2947,11 +3668,23 @@ dependencies = [
2947
3668
  "once_cell",
2948
3669
  "ring",
2949
3670
  "rustls-pki-types",
2950
- "rustls-webpki",
3671
+ "rustls-webpki 0.103.1",
2951
3672
  "subtle",
2952
3673
  "zeroize",
2953
3674
  ]
2954
3675
 
3676
+ [[package]]
3677
+ name = "rustls-native-certs"
3678
+ version = "0.6.3"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
3681
+ dependencies = [
3682
+ "openssl-probe",
3683
+ "rustls-pemfile 1.0.4",
3684
+ "schannel",
3685
+ "security-framework 2.11.1",
3686
+ ]
3687
+
2955
3688
  [[package]]
2956
3689
  name = "rustls-native-certs"
2957
3690
  version = "0.7.3"
@@ -2959,7 +3692,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
3692
  checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
2960
3693
  dependencies = [
2961
3694
  "openssl-probe",
2962
- "rustls-pemfile",
3695
+ "rustls-pemfile 2.2.0",
2963
3696
  "rustls-pki-types",
2964
3697
  "schannel",
2965
3698
  "security-framework 2.11.1",
@@ -2977,6 +3710,15 @@ dependencies = [
2977
3710
  "security-framework 3.2.0",
2978
3711
  ]
2979
3712
 
3713
+ [[package]]
3714
+ name = "rustls-pemfile"
3715
+ version = "1.0.4"
3716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3717
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
3718
+ dependencies = [
3719
+ "base64 0.21.7",
3720
+ ]
3721
+
2980
3722
  [[package]]
2981
3723
  name = "rustls-pemfile"
2982
3724
  version = "2.2.0"
@@ -2995,6 +3737,16 @@ dependencies = [
2995
3737
  "web-time",
2996
3738
  ]
2997
3739
 
3740
+ [[package]]
3741
+ name = "rustls-webpki"
3742
+ version = "0.101.7"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
3745
+ dependencies = [
3746
+ "ring",
3747
+ "untrusted",
3748
+ ]
3749
+
2998
3750
  [[package]]
2999
3751
  name = "rustls-webpki"
3000
3752
  version = "0.103.1"
@@ -3058,12 +3810,36 @@ version = "1.2.0"
3058
3810
  source = "registry+https://github.com/rust-lang/crates.io-index"
3059
3811
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3060
3812
 
3813
+ [[package]]
3814
+ name = "sct"
3815
+ version = "0.7.1"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
3818
+ dependencies = [
3819
+ "ring",
3820
+ "untrusted",
3821
+ ]
3822
+
3061
3823
  [[package]]
3062
3824
  name = "seahash"
3063
3825
  version = "4.1.0"
3064
3826
  source = "registry+https://github.com/rust-lang/crates.io-index"
3065
3827
  checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
3066
3828
 
3829
+ [[package]]
3830
+ name = "sec1"
3831
+ version = "0.3.0"
3832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3833
+ checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
3834
+ dependencies = [
3835
+ "base16ct",
3836
+ "der 0.6.1",
3837
+ "generic-array",
3838
+ "pkcs8 0.9.0",
3839
+ "subtle",
3840
+ "zeroize",
3841
+ ]
3842
+
3067
3843
  [[package]]
3068
3844
  name = "secrecy"
3069
3845
  version = "0.10.3"
@@ -3271,6 +4047,16 @@ dependencies = [
3271
4047
  "libc",
3272
4048
  ]
3273
4049
 
4050
+ [[package]]
4051
+ name = "signature"
4052
+ version = "1.6.4"
4053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4054
+ checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
4055
+ dependencies = [
4056
+ "digest",
4057
+ "rand_core 0.6.4",
4058
+ ]
4059
+
3274
4060
  [[package]]
3275
4061
  name = "signature"
3276
4062
  version = "2.2.0"
@@ -3324,6 +4110,16 @@ dependencies = [
3324
4110
  "lock_api",
3325
4111
  ]
3326
4112
 
4113
+ [[package]]
4114
+ name = "spki"
4115
+ version = "0.6.0"
4116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4117
+ checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
4118
+ dependencies = [
4119
+ "base64ct",
4120
+ "der 0.6.1",
4121
+ ]
4122
+
3327
4123
  [[package]]
3328
4124
  name = "spki"
3329
4125
  version = "0.7.3"
@@ -3331,7 +4127,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
4127
  checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3332
4128
  dependencies = [
3333
4129
  "base64ct",
3334
- "der",
4130
+ "der 0.7.10",
3335
4131
  ]
3336
4132
 
3337
4133
  [[package]]
@@ -3764,13 +4560,23 @@ dependencies = [
3764
4560
  "syn 2.0.101",
3765
4561
  ]
3766
4562
 
4563
+ [[package]]
4564
+ name = "tokio-rustls"
4565
+ version = "0.24.1"
4566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4567
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
4568
+ dependencies = [
4569
+ "rustls 0.21.12",
4570
+ "tokio",
4571
+ ]
4572
+
3767
4573
  [[package]]
3768
4574
  name = "tokio-rustls"
3769
4575
  version = "0.26.2"
3770
4576
  source = "registry+https://github.com/rust-lang/crates.io-index"
3771
4577
  checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3772
4578
  dependencies = [
3773
- "rustls",
4579
+ "rustls 0.23.26",
3774
4580
  "tokio",
3775
4581
  ]
3776
4582
 
@@ -3851,21 +4657,21 @@ dependencies = [
3851
4657
  "base64 0.22.1",
3852
4658
  "bytes",
3853
4659
  "flate2",
3854
- "h2",
3855
- "http",
3856
- "http-body",
4660
+ "h2 0.4.9",
4661
+ "http 1.3.1",
4662
+ "http-body 1.0.1",
3857
4663
  "http-body-util",
3858
- "hyper",
4664
+ "hyper 1.6.0",
3859
4665
  "hyper-timeout",
3860
4666
  "hyper-util",
3861
4667
  "percent-encoding",
3862
4668
  "pin-project",
3863
4669
  "prost",
3864
4670
  "rustls-native-certs 0.8.1",
3865
- "rustls-pemfile",
4671
+ "rustls-pemfile 2.2.0",
3866
4672
  "socket2",
3867
4673
  "tokio",
3868
- "tokio-rustls",
4674
+ "tokio-rustls 0.26.2",
3869
4675
  "tokio-stream",
3870
4676
  "tower 0.4.13",
3871
4677
  "tower-layer",
@@ -3917,8 +4723,8 @@ checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
3917
4723
  dependencies = [
3918
4724
  "bitflags",
3919
4725
  "bytes",
3920
- "http",
3921
- "http-body",
4726
+ "http 1.3.1",
4727
+ "http-body 1.0.1",
3922
4728
  "pin-project-lite",
3923
4729
  "tower-layer",
3924
4730
  "tower-service",
@@ -4361,6 +5167,12 @@ version = "0.9.5"
4361
5167
  source = "registry+https://github.com/rust-lang/crates.io-index"
4362
5168
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4363
5169
 
5170
+ [[package]]
5171
+ name = "vsimd"
5172
+ version = "0.8.0"
5173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5174
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
5175
+
4364
5176
  [[package]]
4365
5177
  name = "want"
4366
5178
  version = "0.3.1"
@@ -4847,6 +5659,12 @@ version = "0.5.5"
4847
5659
  source = "registry+https://github.com/rust-lang/crates.io-index"
4848
5660
  checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4849
5661
 
5662
+ [[package]]
5663
+ name = "xmlparser"
5664
+ version = "0.13.6"
5665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5666
+ checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
5667
+
4850
5668
  [[package]]
4851
5669
  name = "yaml-rust2"
4852
5670
  version = "0.8.1"
@@ -4903,15 +5721,15 @@ dependencies = [
4903
5721
  "async-trait",
4904
5722
  "base64 0.22.1",
4905
5723
  "futures",
4906
- "http",
5724
+ "http 1.3.1",
4907
5725
  "http-body-util",
4908
- "hyper",
4909
- "hyper-rustls",
5726
+ "hyper 1.6.0",
5727
+ "hyper-rustls 0.27.5",
4910
5728
  "hyper-util",
4911
5729
  "log",
4912
5730
  "percent-encoding",
4913
- "rustls",
4914
- "rustls-pemfile",
5731
+ "rustls 0.23.26",
5732
+ "rustls-pemfile 2.2.0",
4915
5733
  "seahash",
4916
5734
  "serde",
4917
5735
  "serde_json",
@@ -4928,15 +5746,15 @@ checksum = "4964039ac787bbd306fba65f6a8963b7974ae99515087e506a862674abae6a30"
4928
5746
  dependencies = [
4929
5747
  "async-trait",
4930
5748
  "base64 0.22.1",
4931
- "http",
5749
+ "http 1.3.1",
4932
5750
  "http-body-util",
4933
- "hyper",
4934
- "hyper-rustls",
5751
+ "hyper 1.6.0",
5752
+ "hyper-rustls 0.27.5",
4935
5753
  "hyper-util",
4936
5754
  "log",
4937
5755
  "percent-encoding",
4938
- "rustls",
4939
- "rustls-pemfile",
5756
+ "rustls 0.23.26",
5757
+ "rustls-pemfile 2.2.0",
4940
5758
  "seahash",
4941
5759
  "serde",
4942
5760
  "serde_json",