maplib 0.15.20__tar.gz → 0.15.33__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 (200) hide show
  1. {maplib-0.15.20 → maplib-0.15.33}/Cargo.lock +1195 -72
  2. maplib-0.15.33/Cargo.toml +49 -0
  3. {maplib-0.15.20 → maplib-0.15.33}/PKG-INFO +3 -1
  4. {maplib-0.15.20 → maplib-0.15.33}/lib/datalog/src/inference.rs +1 -1
  5. {maplib-0.15.20 → maplib-0.15.33}/lib/file_io/Cargo.toml +1 -1
  6. {maplib-0.15.20 → maplib-0.15.33}/lib/file_io/src/lib.rs +3 -3
  7. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/mapping/default.rs +1 -1
  8. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/mapping/errors.rs +17 -27
  9. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/mapping/expansion.rs +16 -6
  10. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/mapping.rs +33 -13
  11. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/tests/test_stottr.rs +9 -2
  12. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/expressions.rs +710 -178
  13. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/graph_patterns.rs +28 -16
  14. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/Cargo.toml +2 -2
  15. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/formatting.rs +4 -6
  16. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/lib.rs +2 -1
  17. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/literals.rs +2 -3
  18. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/multitype.rs +43 -37
  19. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/polars_to_rdf.rs +2 -3
  20. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/python.rs +12 -11
  21. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/query_context.rs +5 -5
  22. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/rdf_to_polars.rs +19 -18
  23. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/solution_mapping.rs +10 -3
  24. {maplib-0.15.20 → maplib-0.15.33}/lib/shacl/src/lib.rs +1 -1
  25. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/Cargo.toml +0 -2
  26. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/query_context.rs +5 -5
  27. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/treehouse.rs +8 -8
  28. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/ast.rs +8 -44
  29. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/dataset/errors.rs +6 -8
  30. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/dataset.rs +1 -4
  31. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/parsing/errors.rs +2 -3
  32. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/parsing/nom_parsing.rs +3 -3
  33. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/python.rs +1 -1
  34. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/resolver.rs +3 -7
  35. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/dblf.rs +24 -12
  36. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/errors.rs +13 -13
  37. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/lib.rs +232 -146
  38. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/native_parquet_write.rs +5 -1
  39. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/query_solutions.rs +5 -5
  40. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_aggregate.rs +4 -4
  41. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_expressions.rs +39 -39
  42. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +4 -3
  43. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +5 -4
  44. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +5 -4
  45. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +15 -8
  46. maplib-0.15.33/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +334 -0
  47. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +6 -5
  48. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +5 -4
  49. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +5 -4
  50. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +9 -7
  51. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +4 -3
  52. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +1 -1
  53. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +8 -5
  54. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +5 -4
  55. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +1 -1
  56. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +17 -17
  57. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_order.rs +5 -5
  58. maplib-0.15.33/lib/triplestore/src/sparql.rs +841 -0
  59. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/storage.rs +544 -222
  60. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/triples_read.rs +8 -3
  61. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/triples_write.rs +3 -3
  62. {maplib-0.15.20 → maplib-0.15.33}/lib/utils/Cargo.toml +1 -1
  63. maplib-0.15.33/lib/utils/src/polars.rs +121 -0
  64. {maplib-0.15.20 → maplib-0.15.33}/maplib/__init__.py +13 -13
  65. {maplib-0.15.20/py_maplib → maplib-0.15.33}/maplib/__init__.pyi +54 -21
  66. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/Cargo.toml +2 -2
  67. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/maplib/__init__.py +13 -13
  68. {maplib-0.15.20 → maplib-0.15.33/py_maplib}/maplib/__init__.pyi +54 -21
  69. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/src/error.rs +1 -1
  70. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/src/lib.rs +81 -40
  71. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_basics.py +97 -35
  72. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_blank_nodes_multi.py +39 -20
  73. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_data_validation.py +17 -14
  74. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_exceptions.py +2 -1
  75. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_integration.py +44 -27
  76. maplib-0.15.33/py_maplib/tests/test_multi_expressions.py +1175 -0
  77. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_pizza_example.py +113 -0
  78. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_programmatic_pizza_example.py +9 -6
  79. {maplib-0.15.20 → maplib-0.15.33}/pyproject.toml +3 -0
  80. maplib-0.15.20/Cargo.toml +0 -49
  81. maplib-0.15.20/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +0 -44
  82. maplib-0.15.20/lib/triplestore/src/sparql.rs +0 -446
  83. maplib-0.15.20/lib/utils/src/polars.rs +0 -55
  84. maplib-0.15.20/py_maplib/tests/test_multi_expressions.py +0 -675
  85. {maplib-0.15.20 → maplib-0.15.33}/LICENSE +0 -0
  86. {maplib-0.15.20 → maplib-0.15.33}/README.md +0 -0
  87. {maplib-0.15.20 → maplib-0.15.33}/lib/cimxml/Cargo.toml +0 -0
  88. {maplib-0.15.20 → maplib-0.15.33}/lib/cimxml/src/export.rs +0 -0
  89. {maplib-0.15.20 → maplib-0.15.33}/lib/cimxml/src/lib.rs +0 -0
  90. {maplib-0.15.20 → maplib-0.15.33}/lib/datalog/Cargo.toml +0 -0
  91. {maplib-0.15.20 → maplib-0.15.33}/lib/datalog/src/ast.rs +0 -0
  92. {maplib-0.15.20 → maplib-0.15.33}/lib/datalog/src/lib.rs +0 -0
  93. {maplib-0.15.20 → maplib-0.15.33}/lib/datalog/src/parser.rs +0 -0
  94. {maplib-0.15.20 → maplib-0.15.33}/lib/fts/Cargo.toml +0 -0
  95. {maplib-0.15.20 → maplib-0.15.33}/lib/fts/src/lib.rs +0 -0
  96. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/Cargo.toml +0 -0
  97. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/errors.rs +0 -0
  98. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/lib.rs +0 -0
  99. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/mapping/constant_terms.rs +0 -0
  100. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/src/mapping/expansion/validation.rs +0 -0
  101. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
  102. {maplib-0.15.20 → maplib-0.15.33}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
  103. {maplib-0.15.20 → maplib-0.15.33}/lib/pydf_io/Cargo.toml +0 -0
  104. {maplib-0.15.20 → maplib-0.15.33}/lib/pydf_io/LICENSE +0 -0
  105. {maplib-0.15.20 → maplib-0.15.33}/lib/pydf_io/README.md +0 -0
  106. {maplib-0.15.20 → maplib-0.15.33}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  107. {maplib-0.15.20 → maplib-0.15.33}/lib/pydf_io/src/lib.rs +0 -0
  108. {maplib-0.15.20 → maplib-0.15.33}/lib/pydf_io/src/to_python.rs +0 -0
  109. {maplib-0.15.20 → maplib-0.15.33}/lib/pydf_io/src/to_rust.rs +0 -0
  110. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/Cargo.toml +0 -0
  111. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/LICENSE +0 -0
  112. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/README.md +0 -0
  113. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/aggregates.rs +0 -0
  114. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/constants.rs +0 -0
  115. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/errors.rs +0 -0
  116. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/exists_helper.rs +0 -0
  117. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/find_query_variables.rs +0 -0
  118. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/lib.rs +0 -0
  119. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/pushdowns.rs +0 -0
  120. {maplib-0.15.20 → maplib-0.15.33}/lib/query_processing/src/type_constraints.rs +0 -0
  121. {maplib-0.15.20 → maplib-0.15.33}/lib/report_mapping/Cargo.toml +0 -0
  122. {maplib-0.15.20 → maplib-0.15.33}/lib/report_mapping/src/lib.rs +0 -0
  123. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/LICENSE +0 -0
  124. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/README.md +0 -0
  125. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/errors.rs +0 -0
  126. {maplib-0.15.20 → maplib-0.15.33}/lib/representation/src/subtypes.rs +0 -0
  127. {maplib-0.15.20 → maplib-0.15.33}/lib/shacl/Cargo.toml +0 -0
  128. {maplib-0.15.20 → maplib-0.15.33}/lib/shacl/src/errors.rs +0 -0
  129. {maplib-0.15.20 → maplib-0.15.33}/lib/shacl/src/storage.rs +0 -0
  130. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/LICENSE +0 -0
  131. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/README.md +0 -0
  132. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/algebra.rs +0 -0
  133. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/lib.rs +0 -0
  134. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/parser.rs +0 -0
  135. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/query.rs +0 -0
  136. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/remove_sugar.rs +0 -0
  137. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/term.rs +0 -0
  138. {maplib-0.15.20 → maplib-0.15.33}/lib/spargebra/src/update.rs +0 -0
  139. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/Cargo.toml +0 -0
  140. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/compatible.rs +0 -0
  141. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/constants.rs +0 -0
  142. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/document.rs +0 -0
  143. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/lib.rs +0 -0
  144. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/parsing/parser_test.rs +0 -0
  145. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/parsing/parsing_ast.rs +0 -0
  146. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/parsing.rs +0 -0
  147. {maplib-0.15.20 → maplib-0.15.33}/lib/templates/src/subtypes_ext.rs +0 -0
  148. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/Cargo.toml +0 -0
  149. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/io_funcs.rs +0 -0
  150. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/rdfs_inferencing.rs +0 -0
  151. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/errors.rs +0 -0
  152. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  153. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
  154. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
  155. {maplib-0.15.20 → maplib-0.15.33}/lib/triplestore/src/triples_write/serializers.rs +0 -0
  156. {maplib-0.15.20 → maplib-0.15.33}/lib/utils/src/lib.rs +0 -0
  157. /maplib-0.15.20/maplib/add_triples.py → /maplib-0.15.33/maplib/adding_triples.py +0 -0
  158. {maplib-0.15.20 → maplib-0.15.33}/maplib/py.typed +0 -0
  159. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/LICENSE +0 -0
  160. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/README.md +0 -0
  161. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/maplib/.gitignore +0 -0
  162. /maplib-0.15.20/py_maplib/maplib/add_triples.py → /maplib-0.15.33/py_maplib/maplib/adding_triples.py +0 -0
  163. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/maplib/py.typed +0 -0
  164. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/src/shacl.rs +0 -0
  165. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/.gitignore +0 -0
  166. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/__init__.py +0 -0
  167. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/out.ttl +0 -0
  168. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/requirements.txt +0 -0
  169. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_rdf_parser.py +0 -0
  170. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_read_write.py +0 -0
  171. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/test_validate_iris.py +0 -0
  172. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  173. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  174. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  175. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  176. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  177. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/larger_query.csv +0 -0
  178. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_concat.csv +0 -0
  179. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  180. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  181. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  182. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  183. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  184. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  185. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  186. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  187. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  188. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
  189. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  190. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  191. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  192. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  193. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  194. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
  195. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
  196. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  197. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  198. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  199. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/simple_query.csv +0 -0
  200. {maplib-0.15.20 → maplib-0.15.33}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
@@ -1,6 +1,6 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "addr2line"
@@ -153,9 +153,9 @@ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
153
153
 
154
154
  [[package]]
155
155
  name = "argminmax"
156
- version = "0.6.2"
156
+ version = "0.6.3"
157
157
  source = "registry+https://github.com/rust-lang/crates.io-index"
158
- checksum = "52424b59d69d69d5056d508b260553afd91c57e21849579cd1f50ee8b8b88eaa"
158
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
159
159
  dependencies = [
160
160
  "num-traits",
161
161
  ]
@@ -166,6 +166,18 @@ version = "0.2.1"
166
166
  source = "registry+https://github.com/rust-lang/crates.io-index"
167
167
  checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
168
168
 
169
+ [[package]]
170
+ name = "arrayref"
171
+ version = "0.3.9"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
174
+
175
+ [[package]]
176
+ name = "arrayvec"
177
+ version = "0.7.6"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
180
+
169
181
  [[package]]
170
182
  name = "async-channel"
171
183
  version = "2.3.1"
@@ -241,7 +253,7 @@ dependencies = [
241
253
  "miniz_oxide",
242
254
  "object",
243
255
  "rustc-demangle",
244
- "windows-targets",
256
+ "windows-targets 0.52.6",
245
257
  ]
246
258
 
247
259
  [[package]]
@@ -250,11 +262,36 @@ version = "0.22.1"
250
262
  source = "registry+https://github.com/rust-lang/crates.io-index"
251
263
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
252
264
 
265
+ [[package]]
266
+ name = "bincode"
267
+ version = "1.3.3"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
270
+ dependencies = [
271
+ "serde",
272
+ ]
273
+
253
274
  [[package]]
254
275
  name = "bitflags"
255
276
  version = "2.9.0"
256
277
  source = "registry+https://github.com/rust-lang/crates.io-index"
257
278
  checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
279
+ dependencies = [
280
+ "serde",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "blake3"
285
+ version = "1.8.2"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
288
+ dependencies = [
289
+ "arrayref",
290
+ "arrayvec",
291
+ "cc",
292
+ "cfg-if",
293
+ "constant_time_eq",
294
+ ]
258
295
 
259
296
  [[package]]
260
297
  name = "brotli"
@@ -303,6 +340,12 @@ dependencies = [
303
340
  "syn",
304
341
  ]
305
342
 
343
+ [[package]]
344
+ name = "byteorder"
345
+ version = "1.5.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
348
+
306
349
  [[package]]
307
350
  name = "bytes"
308
351
  version = "1.10.1"
@@ -338,6 +381,12 @@ version = "1.0.0"
338
381
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
382
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
340
383
 
384
+ [[package]]
385
+ name = "cfg_aliases"
386
+ version = "0.2.1"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
389
+
341
390
  [[package]]
342
391
  name = "chrono"
343
392
  version = "0.4.41"
@@ -348,6 +397,7 @@ dependencies = [
348
397
  "iana-time-zone",
349
398
  "js-sys",
350
399
  "num-traits",
400
+ "serde",
351
401
  "wasm-bindgen",
352
402
  "windows-link",
353
403
  ]
@@ -424,6 +474,22 @@ dependencies = [
424
474
  "crossbeam-utils",
425
475
  ]
426
476
 
477
+ [[package]]
478
+ name = "constant_time_eq"
479
+ version = "0.3.1"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
482
+
483
+ [[package]]
484
+ name = "core-foundation"
485
+ version = "0.10.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
488
+ dependencies = [
489
+ "core-foundation-sys",
490
+ "libc",
491
+ ]
492
+
427
493
  [[package]]
428
494
  name = "core-foundation-sys"
429
495
  version = "0.8.7"
@@ -491,7 +557,7 @@ dependencies = [
491
557
  "bitflags",
492
558
  "crossterm_winapi",
493
559
  "parking_lot",
494
- "rustix",
560
+ "rustix 0.38.44",
495
561
  "winapi",
496
562
  ]
497
563
 
@@ -515,6 +581,17 @@ dependencies = [
515
581
  "triplestore",
516
582
  ]
517
583
 
584
+ [[package]]
585
+ name = "displaydoc"
586
+ version = "0.2.5"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
589
+ dependencies = [
590
+ "proc-macro2",
591
+ "quote",
592
+ "syn",
593
+ ]
594
+
518
595
  [[package]]
519
596
  name = "dyn-clone"
520
597
  version = "1.0.19"
@@ -646,12 +723,37 @@ dependencies = [
646
723
  "num-traits",
647
724
  ]
648
725
 
726
+ [[package]]
727
+ name = "fnv"
728
+ version = "1.0.7"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
731
+
649
732
  [[package]]
650
733
  name = "foldhash"
651
734
  version = "0.1.5"
652
735
  source = "registry+https://github.com/rust-lang/crates.io-index"
653
736
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
654
737
 
738
+ [[package]]
739
+ name = "form_urlencoded"
740
+ version = "1.2.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
743
+ dependencies = [
744
+ "percent-encoding",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "fs4"
749
+ version = "0.13.1"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
752
+ dependencies = [
753
+ "rustix 1.0.7",
754
+ "windows-sys 0.59.0",
755
+ ]
756
+
655
757
  [[package]]
656
758
  name = "fts"
657
759
  version = "0.1.0"
@@ -797,9 +899,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
797
899
  checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
798
900
  dependencies = [
799
901
  "cfg-if",
902
+ "js-sys",
800
903
  "libc",
801
904
  "r-efi",
802
905
  "wasi 0.14.2+wasi-0.2.4",
906
+ "wasm-bindgen",
803
907
  ]
804
908
 
805
909
  [[package]]
@@ -814,6 +918,25 @@ version = "0.3.2"
814
918
  source = "registry+https://github.com/rust-lang/crates.io-index"
815
919
  checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
816
920
 
921
+ [[package]]
922
+ name = "h2"
923
+ version = "0.4.10"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
926
+ dependencies = [
927
+ "atomic-waker",
928
+ "bytes",
929
+ "fnv",
930
+ "futures-core",
931
+ "futures-sink",
932
+ "http",
933
+ "indexmap",
934
+ "slab",
935
+ "tokio",
936
+ "tokio-util",
937
+ "tracing",
938
+ ]
939
+
817
940
  [[package]]
818
941
  name = "halfbrown"
819
942
  version = "0.2.5"
@@ -876,6 +999,110 @@ dependencies = [
876
999
  "windows-sys 0.59.0",
877
1000
  ]
878
1001
 
1002
+ [[package]]
1003
+ name = "http"
1004
+ version = "1.3.1"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1007
+ dependencies = [
1008
+ "bytes",
1009
+ "fnv",
1010
+ "itoa",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "http-body"
1015
+ version = "1.0.1"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1018
+ dependencies = [
1019
+ "bytes",
1020
+ "http",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "http-body-util"
1025
+ version = "0.1.3"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1028
+ dependencies = [
1029
+ "bytes",
1030
+ "futures-core",
1031
+ "http",
1032
+ "http-body",
1033
+ "pin-project-lite",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "httparse"
1038
+ version = "1.10.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1041
+
1042
+ [[package]]
1043
+ name = "humantime"
1044
+ version = "2.2.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1047
+
1048
+ [[package]]
1049
+ name = "hyper"
1050
+ version = "1.6.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1053
+ dependencies = [
1054
+ "bytes",
1055
+ "futures-channel",
1056
+ "futures-util",
1057
+ "h2",
1058
+ "http",
1059
+ "http-body",
1060
+ "httparse",
1061
+ "itoa",
1062
+ "pin-project-lite",
1063
+ "smallvec",
1064
+ "tokio",
1065
+ "want",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "hyper-rustls"
1070
+ version = "0.27.5"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1073
+ dependencies = [
1074
+ "futures-util",
1075
+ "http",
1076
+ "hyper",
1077
+ "hyper-util",
1078
+ "rustls",
1079
+ "rustls-native-certs",
1080
+ "rustls-pki-types",
1081
+ "tokio",
1082
+ "tokio-rustls",
1083
+ "tower-service",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "hyper-util"
1088
+ version = "0.1.11"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1091
+ dependencies = [
1092
+ "bytes",
1093
+ "futures-channel",
1094
+ "futures-util",
1095
+ "http",
1096
+ "http-body",
1097
+ "hyper",
1098
+ "libc",
1099
+ "pin-project-lite",
1100
+ "socket2",
1101
+ "tokio",
1102
+ "tower-service",
1103
+ "tracing",
1104
+ ]
1105
+
879
1106
  [[package]]
880
1107
  name = "iana-time-zone"
881
1108
  version = "0.1.63"
@@ -900,6 +1127,145 @@ dependencies = [
900
1127
  "cc",
901
1128
  ]
902
1129
 
1130
+ [[package]]
1131
+ name = "icu_collections"
1132
+ version = "1.5.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1135
+ dependencies = [
1136
+ "displaydoc",
1137
+ "yoke",
1138
+ "zerofrom",
1139
+ "zerovec",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "icu_locid"
1144
+ version = "1.5.0"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1147
+ dependencies = [
1148
+ "displaydoc",
1149
+ "litemap",
1150
+ "tinystr",
1151
+ "writeable",
1152
+ "zerovec",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "icu_locid_transform"
1157
+ version = "1.5.0"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1160
+ dependencies = [
1161
+ "displaydoc",
1162
+ "icu_locid",
1163
+ "icu_locid_transform_data",
1164
+ "icu_provider",
1165
+ "tinystr",
1166
+ "zerovec",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "icu_locid_transform_data"
1171
+ version = "1.5.1"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1174
+
1175
+ [[package]]
1176
+ name = "icu_normalizer"
1177
+ version = "1.5.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1180
+ dependencies = [
1181
+ "displaydoc",
1182
+ "icu_collections",
1183
+ "icu_normalizer_data",
1184
+ "icu_properties",
1185
+ "icu_provider",
1186
+ "smallvec",
1187
+ "utf16_iter",
1188
+ "utf8_iter",
1189
+ "write16",
1190
+ "zerovec",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "icu_normalizer_data"
1195
+ version = "1.5.1"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1198
+
1199
+ [[package]]
1200
+ name = "icu_properties"
1201
+ version = "1.5.1"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1204
+ dependencies = [
1205
+ "displaydoc",
1206
+ "icu_collections",
1207
+ "icu_locid_transform",
1208
+ "icu_properties_data",
1209
+ "icu_provider",
1210
+ "tinystr",
1211
+ "zerovec",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "icu_properties_data"
1216
+ version = "1.5.1"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1219
+
1220
+ [[package]]
1221
+ name = "icu_provider"
1222
+ version = "1.5.0"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1225
+ dependencies = [
1226
+ "displaydoc",
1227
+ "icu_locid",
1228
+ "icu_provider_macros",
1229
+ "stable_deref_trait",
1230
+ "tinystr",
1231
+ "writeable",
1232
+ "yoke",
1233
+ "zerofrom",
1234
+ "zerovec",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "icu_provider_macros"
1239
+ version = "1.5.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1242
+ dependencies = [
1243
+ "proc-macro2",
1244
+ "quote",
1245
+ "syn",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "idna"
1250
+ version = "1.0.3"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1253
+ dependencies = [
1254
+ "idna_adapter",
1255
+ "smallvec",
1256
+ "utf8_iter",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "idna_adapter"
1261
+ version = "1.2.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1264
+ dependencies = [
1265
+ "icu_normalizer",
1266
+ "icu_properties",
1267
+ ]
1268
+
903
1269
  [[package]]
904
1270
  name = "indexmap"
905
1271
  version = "2.9.0"
@@ -917,12 +1283,27 @@ version = "2.0.6"
917
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
918
1284
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
919
1285
 
1286
+ [[package]]
1287
+ name = "ipnet"
1288
+ version = "2.11.0"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1291
+
920
1292
  [[package]]
921
1293
  name = "is_terminal_polyfill"
922
1294
  version = "1.70.1"
923
1295
  source = "registry+https://github.com/rust-lang/crates.io-index"
924
1296
  checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
925
1297
 
1298
+ [[package]]
1299
+ name = "itertools"
1300
+ version = "0.14.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1303
+ dependencies = [
1304
+ "either",
1305
+ ]
1306
+
926
1307
  [[package]]
927
1308
  name = "itoa"
928
1309
  version = "1.0.15"
@@ -1036,6 +1417,18 @@ version = "0.4.15"
1036
1417
  source = "registry+https://github.com/rust-lang/crates.io-index"
1037
1418
  checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1038
1419
 
1420
+ [[package]]
1421
+ name = "linux-raw-sys"
1422
+ version = "0.9.4"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1425
+
1426
+ [[package]]
1427
+ name = "litemap"
1428
+ version = "0.7.5"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1431
+
1039
1432
  [[package]]
1040
1433
  name = "lock_api"
1041
1434
  version = "0.4.12"
@@ -1140,6 +1533,12 @@ dependencies = [
1140
1533
  "libmimalloc-sys",
1141
1534
  ]
1142
1535
 
1536
+ [[package]]
1537
+ name = "mime"
1538
+ version = "0.3.17"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1541
+
1143
1542
  [[package]]
1144
1543
  name = "minimal-lexical"
1145
1544
  version = "0.2.1"
@@ -1266,12 +1665,51 @@ dependencies = [
1266
1665
  "memchr",
1267
1666
  ]
1268
1667
 
1668
+ [[package]]
1669
+ name = "object_store"
1670
+ version = "0.12.0"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "e9ce831b09395f933addbc56d894d889e4b226eba304d4e7adbab591e26daf1e"
1673
+ dependencies = [
1674
+ "async-trait",
1675
+ "base64",
1676
+ "bytes",
1677
+ "chrono",
1678
+ "form_urlencoded",
1679
+ "futures",
1680
+ "http",
1681
+ "http-body-util",
1682
+ "humantime",
1683
+ "hyper",
1684
+ "itertools",
1685
+ "parking_lot",
1686
+ "percent-encoding",
1687
+ "quick-xml",
1688
+ "rand 0.8.5",
1689
+ "reqwest",
1690
+ "ring",
1691
+ "serde",
1692
+ "serde_json",
1693
+ "serde_urlencoded",
1694
+ "thiserror",
1695
+ "tokio",
1696
+ "tracing",
1697
+ "url",
1698
+ "walkdir",
1699
+ ]
1700
+
1269
1701
  [[package]]
1270
1702
  name = "once_cell"
1271
1703
  version = "1.21.3"
1272
1704
  source = "registry+https://github.com/rust-lang/crates.io-index"
1273
1705
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1274
1706
 
1707
+ [[package]]
1708
+ name = "openssl-probe"
1709
+ version = "0.1.6"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1712
+
1275
1713
  [[package]]
1276
1714
  name = "oxilangtag"
1277
1715
  version = "0.1.5"
@@ -1373,7 +1811,7 @@ dependencies = [
1373
1811
  "libc",
1374
1812
  "redox_syscall",
1375
1813
  "smallvec",
1376
- "windows-targets",
1814
+ "windows-targets 0.52.6",
1377
1815
  ]
1378
1816
 
1379
1817
  [[package]]
@@ -1386,8 +1824,14 @@ dependencies = [
1386
1824
  ]
1387
1825
 
1388
1826
  [[package]]
1389
- name = "peg"
1390
- version = "0.8.5"
1827
+ name = "paste"
1828
+ version = "1.0.15"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1831
+
1832
+ [[package]]
1833
+ name = "peg"
1834
+ version = "0.8.5"
1391
1835
  source = "registry+https://github.com/rust-lang/crates.io-index"
1392
1836
  checksum = "9928cfca101b36ec5163e70049ee5368a8a1c3c6efc9ca9c5f9cc2f816152477"
1393
1837
  dependencies = [
@@ -1485,8 +1929,8 @@ dependencies = [
1485
1929
 
1486
1930
  [[package]]
1487
1931
  name = "polars"
1488
- version = "0.46.0"
1489
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1932
+ version = "0.48.1"
1933
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1490
1934
  dependencies = [
1491
1935
  "getrandom 0.2.16",
1492
1936
  "polars-arrow",
@@ -1505,10 +1949,11 @@ dependencies = [
1505
1949
 
1506
1950
  [[package]]
1507
1951
  name = "polars-arrow"
1508
- version = "0.46.0"
1509
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1952
+ version = "0.48.1"
1953
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1510
1954
  dependencies = [
1511
1955
  "atoi_simd",
1956
+ "bitflags",
1512
1957
  "bytemuck",
1513
1958
  "chrono",
1514
1959
  "chrono-tz",
@@ -1520,14 +1965,13 @@ dependencies = [
1520
1965
  "itoa",
1521
1966
  "lz4",
1522
1967
  "num-traits",
1523
- "parking_lot",
1524
1968
  "polars-arrow-format",
1525
1969
  "polars-error",
1526
1970
  "polars-schema",
1527
1971
  "polars-utils",
1972
+ "serde",
1528
1973
  "simdutf8",
1529
1974
  "streaming-iterator",
1530
- "strength_reduce",
1531
1975
  "strum_macros",
1532
1976
  "version_check",
1533
1977
  "zstd",
@@ -1545,8 +1989,8 @@ dependencies = [
1545
1989
 
1546
1990
  [[package]]
1547
1991
  name = "polars-compute"
1548
- version = "0.46.0"
1549
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1992
+ version = "0.48.1"
1993
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1550
1994
  dependencies = [
1551
1995
  "atoi_simd",
1552
1996
  "bytemuck",
@@ -1561,6 +2005,8 @@ dependencies = [
1561
2005
  "polars-utils",
1562
2006
  "rand 0.8.5",
1563
2007
  "ryu",
2008
+ "serde",
2009
+ "skiplist",
1564
2010
  "strength_reduce",
1565
2011
  "strum_macros",
1566
2012
  "version_check",
@@ -1568,8 +2014,8 @@ dependencies = [
1568
2014
 
1569
2015
  [[package]]
1570
2016
  name = "polars-core"
1571
- version = "0.46.0"
1572
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2017
+ version = "0.48.1"
2018
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1573
2019
  dependencies = [
1574
2020
  "bitflags",
1575
2021
  "bytemuck",
@@ -1592,6 +2038,8 @@ dependencies = [
1592
2038
  "rand_distr",
1593
2039
  "rayon",
1594
2040
  "regex",
2041
+ "serde",
2042
+ "serde_json",
1595
2043
  "strum_macros",
1596
2044
  "version_check",
1597
2045
  "xxhash-rust",
@@ -1599,9 +2047,10 @@ dependencies = [
1599
2047
 
1600
2048
  [[package]]
1601
2049
  name = "polars-error"
1602
- version = "0.46.0"
1603
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2050
+ version = "0.48.1"
2051
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1604
2052
  dependencies = [
2053
+ "object_store",
1605
2054
  "parking_lot",
1606
2055
  "polars-arrow-format",
1607
2056
  "regex",
@@ -1611,8 +2060,8 @@ dependencies = [
1611
2060
 
1612
2061
  [[package]]
1613
2062
  name = "polars-expr"
1614
- version = "0.46.0"
1615
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2063
+ version = "0.48.1"
2064
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1616
2065
  dependencies = [
1617
2066
  "bitflags",
1618
2067
  "hashbrown 0.15.3",
@@ -1633,15 +2082,17 @@ dependencies = [
1633
2082
 
1634
2083
  [[package]]
1635
2084
  name = "polars-io"
1636
- version = "0.46.0"
1637
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2085
+ version = "0.48.1"
2086
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1638
2087
  dependencies = [
1639
2088
  "async-trait",
1640
2089
  "atoi_simd",
2090
+ "blake3",
1641
2091
  "bytes",
1642
2092
  "chrono",
1643
2093
  "chrono-tz",
1644
2094
  "fast-float2",
2095
+ "fs4",
1645
2096
  "futures",
1646
2097
  "glob",
1647
2098
  "hashbrown 0.15.3",
@@ -1650,6 +2101,7 @@ dependencies = [
1650
2101
  "memchr",
1651
2102
  "memmap2",
1652
2103
  "num-traits",
2104
+ "object_store",
1653
2105
  "percent-encoding",
1654
2106
  "polars-arrow",
1655
2107
  "polars-core",
@@ -1661,16 +2113,20 @@ dependencies = [
1661
2113
  "polars-utils",
1662
2114
  "rayon",
1663
2115
  "regex",
2116
+ "reqwest",
1664
2117
  "ryu",
2118
+ "serde",
2119
+ "serde_json",
1665
2120
  "simdutf8",
1666
2121
  "tokio",
1667
2122
  "tokio-util",
2123
+ "url",
1668
2124
  ]
1669
2125
 
1670
2126
  [[package]]
1671
2127
  name = "polars-json"
1672
- version = "0.46.0"
1673
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2128
+ version = "0.48.1"
2129
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1674
2130
  dependencies = [
1675
2131
  "chrono",
1676
2132
  "chrono-tz",
@@ -1690,8 +2146,8 @@ dependencies = [
1690
2146
 
1691
2147
  [[package]]
1692
2148
  name = "polars-lazy"
1693
- version = "0.46.0"
1694
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2149
+ version = "0.48.1"
2150
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1695
2151
  dependencies = [
1696
2152
  "bitflags",
1697
2153
  "chrono",
@@ -1715,9 +2171,10 @@ dependencies = [
1715
2171
 
1716
2172
  [[package]]
1717
2173
  name = "polars-mem-engine"
1718
- version = "0.46.0"
1719
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2174
+ version = "0.48.1"
2175
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1720
2176
  dependencies = [
2177
+ "futures",
1721
2178
  "memmap2",
1722
2179
  "polars-arrow",
1723
2180
  "polars-core",
@@ -1730,12 +2187,13 @@ dependencies = [
1730
2187
  "polars-utils",
1731
2188
  "rayon",
1732
2189
  "recursive",
2190
+ "tokio",
1733
2191
  ]
1734
2192
 
1735
2193
  [[package]]
1736
2194
  name = "polars-ops"
1737
- version = "0.46.0"
1738
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2195
+ version = "0.48.1"
2196
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1739
2197
  dependencies = [
1740
2198
  "argminmax",
1741
2199
  "base64",
@@ -1766,8 +2224,8 @@ dependencies = [
1766
2224
 
1767
2225
  [[package]]
1768
2226
  name = "polars-parquet"
1769
- version = "0.46.0"
1770
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2227
+ version = "0.48.1"
2228
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1771
2229
  dependencies = [
1772
2230
  "async-stream",
1773
2231
  "base64",
@@ -1784,6 +2242,7 @@ dependencies = [
1784
2242
  "polars-error",
1785
2243
  "polars-parquet-format",
1786
2244
  "polars-utils",
2245
+ "serde",
1787
2246
  "simdutf8",
1788
2247
  "snap",
1789
2248
  "streaming-decompression",
@@ -1802,8 +2261,8 @@ dependencies = [
1802
2261
 
1803
2262
  [[package]]
1804
2263
  name = "polars-pipe"
1805
- version = "0.46.0"
1806
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2264
+ version = "0.48.1"
2265
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1807
2266
  dependencies = [
1808
2267
  "crossbeam-channel",
1809
2268
  "crossbeam-queue",
@@ -1827,8 +2286,8 @@ dependencies = [
1827
2286
 
1828
2287
  [[package]]
1829
2288
  name = "polars-plan"
1830
- version = "0.46.0"
1831
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2289
+ version = "0.48.1"
2290
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1832
2291
  dependencies = [
1833
2292
  "bitflags",
1834
2293
  "bytemuck",
@@ -1836,6 +2295,7 @@ dependencies = [
1836
2295
  "chrono",
1837
2296
  "chrono-tz",
1838
2297
  "either",
2298
+ "futures",
1839
2299
  "hashbrown 0.15.3",
1840
2300
  "memmap2",
1841
2301
  "num-traits",
@@ -1857,8 +2317,8 @@ dependencies = [
1857
2317
 
1858
2318
  [[package]]
1859
2319
  name = "polars-row"
1860
- version = "0.46.0"
1861
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2320
+ version = "0.48.1"
2321
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1862
2322
  dependencies = [
1863
2323
  "bitflags",
1864
2324
  "bytemuck",
@@ -1870,19 +2330,20 @@ dependencies = [
1870
2330
 
1871
2331
  [[package]]
1872
2332
  name = "polars-schema"
1873
- version = "0.46.0"
1874
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2333
+ version = "0.48.1"
2334
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1875
2335
  dependencies = [
1876
2336
  "indexmap",
1877
2337
  "polars-error",
1878
2338
  "polars-utils",
2339
+ "serde",
1879
2340
  "version_check",
1880
2341
  ]
1881
2342
 
1882
2343
  [[package]]
1883
2344
  name = "polars-sql"
1884
- version = "0.46.0"
1885
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2345
+ version = "0.48.1"
2346
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1886
2347
  dependencies = [
1887
2348
  "bitflags",
1888
2349
  "hex",
@@ -1901,8 +2362,8 @@ dependencies = [
1901
2362
 
1902
2363
  [[package]]
1903
2364
  name = "polars-stream"
1904
- version = "0.46.0"
1905
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2365
+ version = "0.48.1"
2366
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1906
2367
  dependencies = [
1907
2368
  "async-channel",
1908
2369
  "async-trait",
@@ -1937,8 +2398,8 @@ dependencies = [
1937
2398
 
1938
2399
  [[package]]
1939
2400
  name = "polars-time"
1940
- version = "0.46.0"
1941
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2401
+ version = "0.48.1"
2402
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1942
2403
  dependencies = [
1943
2404
  "atoi_simd",
1944
2405
  "bytemuck",
@@ -1959,12 +2420,14 @@ dependencies = [
1959
2420
 
1960
2421
  [[package]]
1961
2422
  name = "polars-utils"
1962
- version = "0.46.0"
1963
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2423
+ version = "0.48.1"
2424
+ source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1964
2425
  dependencies = [
2426
+ "bincode",
1965
2427
  "bytemuck",
1966
2428
  "bytes",
1967
2429
  "compact_str",
2430
+ "flate2",
1968
2431
  "foldhash",
1969
2432
  "hashbrown 0.15.3",
1970
2433
  "indexmap",
@@ -1976,6 +2439,10 @@ dependencies = [
1976
2439
  "raw-cpuid",
1977
2440
  "rayon",
1978
2441
  "regex",
2442
+ "rmp-serde",
2443
+ "serde",
2444
+ "serde_ignored",
2445
+ "serde_json",
1979
2446
  "slotmap",
1980
2447
  "stacker",
1981
2448
  "sysinfo",
@@ -2035,7 +2502,7 @@ dependencies = [
2035
2502
 
2036
2503
  [[package]]
2037
2504
  name = "py_maplib"
2038
- version = "0.15.20"
2505
+ version = "0.15.33"
2039
2506
  dependencies = [
2040
2507
  "chrono",
2041
2508
  "cimxml",
@@ -2167,6 +2634,61 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
2634
  checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2168
2635
  dependencies = [
2169
2636
  "memchr",
2637
+ "serde",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "quinn"
2642
+ version = "0.11.7"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2645
+ dependencies = [
2646
+ "bytes",
2647
+ "cfg_aliases",
2648
+ "pin-project-lite",
2649
+ "quinn-proto",
2650
+ "quinn-udp",
2651
+ "rustc-hash",
2652
+ "rustls",
2653
+ "socket2",
2654
+ "thiserror",
2655
+ "tokio",
2656
+ "tracing",
2657
+ "web-time",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "quinn-proto"
2662
+ version = "0.11.11"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
2665
+ dependencies = [
2666
+ "bytes",
2667
+ "getrandom 0.3.2",
2668
+ "rand 0.9.1",
2669
+ "ring",
2670
+ "rustc-hash",
2671
+ "rustls",
2672
+ "rustls-pki-types",
2673
+ "slab",
2674
+ "thiserror",
2675
+ "tinyvec",
2676
+ "tracing",
2677
+ "web-time",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "quinn-udp"
2682
+ version = "0.5.12"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
2685
+ dependencies = [
2686
+ "cfg_aliases",
2687
+ "libc",
2688
+ "once_cell",
2689
+ "socket2",
2690
+ "tracing",
2691
+ "windows-sys 0.59.0",
2170
2692
  ]
2171
2693
 
2172
2694
  [[package]]
@@ -2400,23 +2922,105 @@ dependencies = [
2400
2922
  "uuid",
2401
2923
  ]
2402
2924
 
2925
+ [[package]]
2926
+ name = "reqwest"
2927
+ version = "0.12.15"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2930
+ dependencies = [
2931
+ "base64",
2932
+ "bytes",
2933
+ "futures-core",
2934
+ "futures-util",
2935
+ "h2",
2936
+ "http",
2937
+ "http-body",
2938
+ "http-body-util",
2939
+ "hyper",
2940
+ "hyper-rustls",
2941
+ "hyper-util",
2942
+ "ipnet",
2943
+ "js-sys",
2944
+ "log",
2945
+ "mime",
2946
+ "once_cell",
2947
+ "percent-encoding",
2948
+ "pin-project-lite",
2949
+ "quinn",
2950
+ "rustls",
2951
+ "rustls-native-certs",
2952
+ "rustls-pemfile",
2953
+ "rustls-pki-types",
2954
+ "serde",
2955
+ "serde_json",
2956
+ "serde_urlencoded",
2957
+ "sync_wrapper",
2958
+ "tokio",
2959
+ "tokio-rustls",
2960
+ "tokio-util",
2961
+ "tower",
2962
+ "tower-service",
2963
+ "url",
2964
+ "wasm-bindgen",
2965
+ "wasm-bindgen-futures",
2966
+ "wasm-streams",
2967
+ "web-sys",
2968
+ "windows-registry",
2969
+ ]
2970
+
2971
+ [[package]]
2972
+ name = "ring"
2973
+ version = "0.17.14"
2974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2975
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2976
+ dependencies = [
2977
+ "cc",
2978
+ "cfg-if",
2979
+ "getrandom 0.2.16",
2980
+ "libc",
2981
+ "untrusted",
2982
+ "windows-sys 0.52.0",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "rmp"
2987
+ version = "0.8.14"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
2990
+ dependencies = [
2991
+ "byteorder",
2992
+ "num-traits",
2993
+ "paste",
2994
+ ]
2995
+
2996
+ [[package]]
2997
+ name = "rmp-serde"
2998
+ version = "1.3.0"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
3001
+ dependencies = [
3002
+ "byteorder",
3003
+ "rmp",
3004
+ "serde",
3005
+ ]
3006
+
2403
3007
  [[package]]
2404
3008
  name = "rstest"
2405
- version = "0.21.0"
3009
+ version = "0.25.0"
2406
3010
  source = "registry+https://github.com/rust-lang/crates.io-index"
2407
- checksum = "9afd55a67069d6e434a95161415f5beeada95a01c7b815508a82dcb0e1593682"
3011
+ checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
2408
3012
  dependencies = [
2409
- "futures",
2410
3013
  "futures-timer",
3014
+ "futures-util",
2411
3015
  "rstest_macros",
2412
3016
  "rustc_version",
2413
3017
  ]
2414
3018
 
2415
3019
  [[package]]
2416
3020
  name = "rstest_macros"
2417
- version = "0.21.0"
3021
+ version = "0.25.0"
2418
3022
  source = "registry+https://github.com/rust-lang/crates.io-index"
2419
- checksum = "4165dfae59a39dd41d8dec720d3cbfbc71f69744efb480a3920f5d4e0cc6798d"
3023
+ checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
2420
3024
  dependencies = [
2421
3025
  "cfg-if",
2422
3026
  "glob",
@@ -2436,6 +3040,12 @@ version = "0.1.24"
2436
3040
  source = "registry+https://github.com/rust-lang/crates.io-index"
2437
3041
  checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2438
3042
 
3043
+ [[package]]
3044
+ name = "rustc-hash"
3045
+ version = "2.1.1"
3046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3047
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3048
+
2439
3049
  [[package]]
2440
3050
  name = "rustc_version"
2441
3051
  version = "0.4.1"
@@ -2454,10 +3064,79 @@ dependencies = [
2454
3064
  "bitflags",
2455
3065
  "errno",
2456
3066
  "libc",
2457
- "linux-raw-sys",
3067
+ "linux-raw-sys 0.4.15",
3068
+ "windows-sys 0.59.0",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "rustix"
3073
+ version = "1.0.7"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
3076
+ dependencies = [
3077
+ "bitflags",
3078
+ "errno",
3079
+ "libc",
3080
+ "linux-raw-sys 0.9.4",
2458
3081
  "windows-sys 0.59.0",
2459
3082
  ]
2460
3083
 
3084
+ [[package]]
3085
+ name = "rustls"
3086
+ version = "0.23.27"
3087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+ checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
3089
+ dependencies = [
3090
+ "once_cell",
3091
+ "ring",
3092
+ "rustls-pki-types",
3093
+ "rustls-webpki",
3094
+ "subtle",
3095
+ "zeroize",
3096
+ ]
3097
+
3098
+ [[package]]
3099
+ name = "rustls-native-certs"
3100
+ version = "0.8.1"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
3103
+ dependencies = [
3104
+ "openssl-probe",
3105
+ "rustls-pki-types",
3106
+ "schannel",
3107
+ "security-framework",
3108
+ ]
3109
+
3110
+ [[package]]
3111
+ name = "rustls-pemfile"
3112
+ version = "2.2.0"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
3115
+ dependencies = [
3116
+ "rustls-pki-types",
3117
+ ]
3118
+
3119
+ [[package]]
3120
+ name = "rustls-pki-types"
3121
+ version = "1.12.0"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3124
+ dependencies = [
3125
+ "web-time",
3126
+ "zeroize",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "rustls-webpki"
3131
+ version = "0.103.2"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "7149975849f1abb3832b246010ef62ccc80d3a76169517ada7188252b9cfb437"
3134
+ dependencies = [
3135
+ "ring",
3136
+ "rustls-pki-types",
3137
+ "untrusted",
3138
+ ]
3139
+
2461
3140
  [[package]]
2462
3141
  name = "rustversion"
2463
3142
  version = "1.0.20"
@@ -2488,6 +3167,15 @@ dependencies = [
2488
3167
  "sdd",
2489
3168
  ]
2490
3169
 
3170
+ [[package]]
3171
+ name = "schannel"
3172
+ version = "0.1.27"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
3175
+ dependencies = [
3176
+ "windows-sys 0.59.0",
3177
+ ]
3178
+
2491
3179
  [[package]]
2492
3180
  name = "scopeguard"
2493
3181
  version = "1.2.0"
@@ -2500,6 +3188,29 @@ version = "3.0.8"
2500
3188
  source = "registry+https://github.com/rust-lang/crates.io-index"
2501
3189
  checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21"
2502
3190
 
3191
+ [[package]]
3192
+ name = "security-framework"
3193
+ version = "3.2.0"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
3196
+ dependencies = [
3197
+ "bitflags",
3198
+ "core-foundation",
3199
+ "core-foundation-sys",
3200
+ "libc",
3201
+ "security-framework-sys",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "security-framework-sys"
3206
+ version = "2.14.0"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
3209
+ dependencies = [
3210
+ "core-foundation-sys",
3211
+ "libc",
3212
+ ]
3213
+
2503
3214
  [[package]]
2504
3215
  name = "semver"
2505
3216
  version = "1.0.26"
@@ -2526,6 +3237,15 @@ dependencies = [
2526
3237
  "syn",
2527
3238
  ]
2528
3239
 
3240
+ [[package]]
3241
+ name = "serde_ignored"
3242
+ version = "0.1.12"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "b516445dac1e3535b6d658a7b528d771153dfb272ed4180ca4617a20550365ff"
3245
+ dependencies = [
3246
+ "serde",
3247
+ ]
3248
+
2529
3249
  [[package]]
2530
3250
  name = "serde_json"
2531
3251
  version = "1.0.140"
@@ -2538,6 +3258,18 @@ dependencies = [
2538
3258
  "serde",
2539
3259
  ]
2540
3260
 
3261
+ [[package]]
3262
+ name = "serde_urlencoded"
3263
+ version = "0.7.1"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3266
+ dependencies = [
3267
+ "form_urlencoded",
3268
+ "itoa",
3269
+ "ryu",
3270
+ "serde",
3271
+ ]
3272
+
2541
3273
  [[package]]
2542
3274
  name = "serial_test"
2543
3275
  version = "3.2.0"
@@ -2629,6 +3361,15 @@ version = "1.0.1"
2629
3361
  source = "registry+https://github.com/rust-lang/crates.io-index"
2630
3362
  checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2631
3363
 
3364
+ [[package]]
3365
+ name = "skiplist"
3366
+ version = "0.5.1"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "0eec25f46463fcdc5e02f388c2780b1b58e01be81a8378e62ec60931beccc3f6"
3369
+ dependencies = [
3370
+ "rand 0.8.5",
3371
+ ]
3372
+
2632
3373
  [[package]]
2633
3374
  name = "slab"
2634
3375
  version = "0.4.9"
@@ -2692,7 +3433,7 @@ dependencies = [
2692
3433
  "oxiri",
2693
3434
  "oxrdf",
2694
3435
  "peg",
2695
- "rand 0.8.5",
3436
+ "rand 0.9.1",
2696
3437
  "thiserror",
2697
3438
  ]
2698
3439
 
@@ -2720,6 +3461,12 @@ dependencies = [
2720
3461
  "log",
2721
3462
  ]
2722
3463
 
3464
+ [[package]]
3465
+ name = "stable_deref_trait"
3466
+ version = "1.2.0"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3469
+
2723
3470
  [[package]]
2724
3471
  name = "stacker"
2725
3472
  version = "0.1.21"
@@ -2773,6 +3520,12 @@ dependencies = [
2773
3520
  "syn",
2774
3521
  ]
2775
3522
 
3523
+ [[package]]
3524
+ name = "subtle"
3525
+ version = "2.6.1"
3526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3527
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3528
+
2776
3529
  [[package]]
2777
3530
  name = "syn"
2778
3531
  version = "2.0.101"
@@ -2784,6 +3537,26 @@ dependencies = [
2784
3537
  "unicode-ident",
2785
3538
  ]
2786
3539
 
3540
+ [[package]]
3541
+ name = "sync_wrapper"
3542
+ version = "1.0.2"
3543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3544
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3545
+ dependencies = [
3546
+ "futures-core",
3547
+ ]
3548
+
3549
+ [[package]]
3550
+ name = "synstructure"
3551
+ version = "0.13.2"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3554
+ dependencies = [
3555
+ "proc-macro2",
3556
+ "quote",
3557
+ "syn",
3558
+ ]
3559
+
2787
3560
  [[package]]
2788
3561
  name = "sysinfo"
2789
3562
  version = "0.33.1"
@@ -2837,6 +3610,16 @@ dependencies = [
2837
3610
  "syn",
2838
3611
  ]
2839
3612
 
3613
+ [[package]]
3614
+ name = "tinystr"
3615
+ version = "0.7.6"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3618
+ dependencies = [
3619
+ "displaydoc",
3620
+ "zerovec",
3621
+ ]
3622
+
2840
3623
  [[package]]
2841
3624
  name = "tinyvec"
2842
3625
  version = "1.9.0"
@@ -2864,9 +3647,31 @@ dependencies = [
2864
3647
  "mio",
2865
3648
  "pin-project-lite",
2866
3649
  "socket2",
3650
+ "tokio-macros",
2867
3651
  "windows-sys 0.52.0",
2868
3652
  ]
2869
3653
 
3654
+ [[package]]
3655
+ name = "tokio-macros"
3656
+ version = "2.5.0"
3657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3658
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3659
+ dependencies = [
3660
+ "proc-macro2",
3661
+ "quote",
3662
+ "syn",
3663
+ ]
3664
+
3665
+ [[package]]
3666
+ name = "tokio-rustls"
3667
+ version = "0.26.2"
3668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3669
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3670
+ dependencies = [
3671
+ "rustls",
3672
+ "tokio",
3673
+ ]
3674
+
2870
3675
  [[package]]
2871
3676
  name = "tokio-util"
2872
3677
  version = "0.7.15"
@@ -2897,6 +3702,64 @@ dependencies = [
2897
3702
  "winnow",
2898
3703
  ]
2899
3704
 
3705
+ [[package]]
3706
+ name = "tower"
3707
+ version = "0.5.2"
3708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3709
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3710
+ dependencies = [
3711
+ "futures-core",
3712
+ "futures-util",
3713
+ "pin-project-lite",
3714
+ "sync_wrapper",
3715
+ "tokio",
3716
+ "tower-layer",
3717
+ "tower-service",
3718
+ ]
3719
+
3720
+ [[package]]
3721
+ name = "tower-layer"
3722
+ version = "0.3.3"
3723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3724
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3725
+
3726
+ [[package]]
3727
+ name = "tower-service"
3728
+ version = "0.3.3"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3731
+
3732
+ [[package]]
3733
+ name = "tracing"
3734
+ version = "0.1.41"
3735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3736
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3737
+ dependencies = [
3738
+ "pin-project-lite",
3739
+ "tracing-attributes",
3740
+ "tracing-core",
3741
+ ]
3742
+
3743
+ [[package]]
3744
+ name = "tracing-attributes"
3745
+ version = "0.1.28"
3746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3747
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3748
+ dependencies = [
3749
+ "proc-macro2",
3750
+ "quote",
3751
+ "syn",
3752
+ ]
3753
+
3754
+ [[package]]
3755
+ name = "tracing-core"
3756
+ version = "0.1.33"
3757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3758
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3759
+ dependencies = [
3760
+ "once_cell",
3761
+ ]
3762
+
2900
3763
  [[package]]
2901
3764
  name = "triplestore"
2902
3765
  version = "0.5.0"
@@ -2924,6 +3787,12 @@ dependencies = [
2924
3787
  "uuid",
2925
3788
  ]
2926
3789
 
3790
+ [[package]]
3791
+ name = "try-lock"
3792
+ version = "0.2.5"
3793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3794
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3795
+
2927
3796
  [[package]]
2928
3797
  name = "unic-char-range"
2929
3798
  version = "0.9.0"
@@ -2972,6 +3841,35 @@ version = "0.2.4"
2972
3841
  source = "registry+https://github.com/rust-lang/crates.io-index"
2973
3842
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2974
3843
 
3844
+ [[package]]
3845
+ name = "untrusted"
3846
+ version = "0.9.0"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3849
+
3850
+ [[package]]
3851
+ name = "url"
3852
+ version = "2.5.4"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3855
+ dependencies = [
3856
+ "form_urlencoded",
3857
+ "idna",
3858
+ "percent-encoding",
3859
+ ]
3860
+
3861
+ [[package]]
3862
+ name = "utf16_iter"
3863
+ version = "1.0.5"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3866
+
3867
+ [[package]]
3868
+ name = "utf8_iter"
3869
+ version = "1.0.4"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3872
+
2975
3873
  [[package]]
2976
3874
  name = "utf8parse"
2977
3875
  version = "0.2.2"
@@ -2985,6 +3883,7 @@ dependencies = [
2985
3883
  "polars",
2986
3884
  "polars-core",
2987
3885
  "pyo3",
3886
+ "rayon",
2988
3887
  "thiserror",
2989
3888
  ]
2990
3889
 
@@ -3026,6 +3925,15 @@ dependencies = [
3026
3925
  "winapi-util",
3027
3926
  ]
3028
3927
 
3928
+ [[package]]
3929
+ name = "want"
3930
+ version = "0.3.1"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3933
+ dependencies = [
3934
+ "try-lock",
3935
+ ]
3936
+
3029
3937
  [[package]]
3030
3938
  name = "wasi"
3031
3939
  version = "0.11.0+wasi-snapshot-preview1"
@@ -3067,6 +3975,19 @@ dependencies = [
3067
3975
  "wasm-bindgen-shared",
3068
3976
  ]
3069
3977
 
3978
+ [[package]]
3979
+ name = "wasm-bindgen-futures"
3980
+ version = "0.4.50"
3981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3982
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3983
+ dependencies = [
3984
+ "cfg-if",
3985
+ "js-sys",
3986
+ "once_cell",
3987
+ "wasm-bindgen",
3988
+ "web-sys",
3989
+ ]
3990
+
3070
3991
  [[package]]
3071
3992
  name = "wasm-bindgen-macro"
3072
3993
  version = "0.2.100"
@@ -3099,6 +4020,39 @@ dependencies = [
3099
4020
  "unicode-ident",
3100
4021
  ]
3101
4022
 
4023
+ [[package]]
4024
+ name = "wasm-streams"
4025
+ version = "0.4.2"
4026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4027
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4028
+ dependencies = [
4029
+ "futures-util",
4030
+ "js-sys",
4031
+ "wasm-bindgen",
4032
+ "wasm-bindgen-futures",
4033
+ "web-sys",
4034
+ ]
4035
+
4036
+ [[package]]
4037
+ name = "web-sys"
4038
+ version = "0.3.77"
4039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4040
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4041
+ dependencies = [
4042
+ "js-sys",
4043
+ "wasm-bindgen",
4044
+ ]
4045
+
4046
+ [[package]]
4047
+ name = "web-time"
4048
+ version = "1.1.0"
4049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4050
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4051
+ dependencies = [
4052
+ "js-sys",
4053
+ "wasm-bindgen",
4054
+ ]
4055
+
3102
4056
  [[package]]
3103
4057
  name = "winapi"
3104
4058
  version = "0.3.9"
@@ -3137,7 +4091,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
4091
  checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
3138
4092
  dependencies = [
3139
4093
  "windows-core 0.57.0",
3140
- "windows-targets",
4094
+ "windows-targets 0.52.6",
3141
4095
  ]
3142
4096
 
3143
4097
  [[package]]
@@ -3149,7 +4103,7 @@ dependencies = [
3149
4103
  "windows-implement 0.57.0",
3150
4104
  "windows-interface 0.57.0",
3151
4105
  "windows-result 0.1.2",
3152
- "windows-targets",
4106
+ "windows-targets 0.52.6",
3153
4107
  ]
3154
4108
 
3155
4109
  [[package]]
@@ -3162,7 +4116,7 @@ dependencies = [
3162
4116
  "windows-interface 0.59.1",
3163
4117
  "windows-link",
3164
4118
  "windows-result 0.3.2",
3165
- "windows-strings",
4119
+ "windows-strings 0.4.0",
3166
4120
  ]
3167
4121
 
3168
4122
  [[package]]
@@ -3215,13 +4169,24 @@ version = "0.1.1"
3215
4169
  source = "registry+https://github.com/rust-lang/crates.io-index"
3216
4170
  checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3217
4171
 
4172
+ [[package]]
4173
+ name = "windows-registry"
4174
+ version = "0.4.0"
4175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4176
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
4177
+ dependencies = [
4178
+ "windows-result 0.3.2",
4179
+ "windows-strings 0.3.1",
4180
+ "windows-targets 0.53.0",
4181
+ ]
4182
+
3218
4183
  [[package]]
3219
4184
  name = "windows-result"
3220
4185
  version = "0.1.2"
3221
4186
  source = "registry+https://github.com/rust-lang/crates.io-index"
3222
4187
  checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
3223
4188
  dependencies = [
3224
- "windows-targets",
4189
+ "windows-targets 0.52.6",
3225
4190
  ]
3226
4191
 
3227
4192
  [[package]]
@@ -3233,6 +4198,15 @@ dependencies = [
3233
4198
  "windows-link",
3234
4199
  ]
3235
4200
 
4201
+ [[package]]
4202
+ name = "windows-strings"
4203
+ version = "0.3.1"
4204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4205
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4206
+ dependencies = [
4207
+ "windows-link",
4208
+ ]
4209
+
3236
4210
  [[package]]
3237
4211
  name = "windows-strings"
3238
4212
  version = "0.4.0"
@@ -3248,7 +4222,7 @@ version = "0.52.0"
3248
4222
  source = "registry+https://github.com/rust-lang/crates.io-index"
3249
4223
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3250
4224
  dependencies = [
3251
- "windows-targets",
4225
+ "windows-targets 0.52.6",
3252
4226
  ]
3253
4227
 
3254
4228
  [[package]]
@@ -3257,7 +4231,7 @@ version = "0.59.0"
3257
4231
  source = "registry+https://github.com/rust-lang/crates.io-index"
3258
4232
  checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3259
4233
  dependencies = [
3260
- "windows-targets",
4234
+ "windows-targets 0.52.6",
3261
4235
  ]
3262
4236
 
3263
4237
  [[package]]
@@ -3266,14 +4240,30 @@ version = "0.52.6"
3266
4240
  source = "registry+https://github.com/rust-lang/crates.io-index"
3267
4241
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3268
4242
  dependencies = [
3269
- "windows_aarch64_gnullvm",
3270
- "windows_aarch64_msvc",
3271
- "windows_i686_gnu",
3272
- "windows_i686_gnullvm",
3273
- "windows_i686_msvc",
3274
- "windows_x86_64_gnu",
3275
- "windows_x86_64_gnullvm",
3276
- "windows_x86_64_msvc",
4243
+ "windows_aarch64_gnullvm 0.52.6",
4244
+ "windows_aarch64_msvc 0.52.6",
4245
+ "windows_i686_gnu 0.52.6",
4246
+ "windows_i686_gnullvm 0.52.6",
4247
+ "windows_i686_msvc 0.52.6",
4248
+ "windows_x86_64_gnu 0.52.6",
4249
+ "windows_x86_64_gnullvm 0.52.6",
4250
+ "windows_x86_64_msvc 0.52.6",
4251
+ ]
4252
+
4253
+ [[package]]
4254
+ name = "windows-targets"
4255
+ version = "0.53.0"
4256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4257
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
4258
+ dependencies = [
4259
+ "windows_aarch64_gnullvm 0.53.0",
4260
+ "windows_aarch64_msvc 0.53.0",
4261
+ "windows_i686_gnu 0.53.0",
4262
+ "windows_i686_gnullvm 0.53.0",
4263
+ "windows_i686_msvc 0.53.0",
4264
+ "windows_x86_64_gnu 0.53.0",
4265
+ "windows_x86_64_gnullvm 0.53.0",
4266
+ "windows_x86_64_msvc 0.53.0",
3277
4267
  ]
3278
4268
 
3279
4269
  [[package]]
@@ -3282,48 +4272,96 @@ version = "0.52.6"
3282
4272
  source = "registry+https://github.com/rust-lang/crates.io-index"
3283
4273
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3284
4274
 
4275
+ [[package]]
4276
+ name = "windows_aarch64_gnullvm"
4277
+ version = "0.53.0"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4280
+
3285
4281
  [[package]]
3286
4282
  name = "windows_aarch64_msvc"
3287
4283
  version = "0.52.6"
3288
4284
  source = "registry+https://github.com/rust-lang/crates.io-index"
3289
4285
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3290
4286
 
4287
+ [[package]]
4288
+ name = "windows_aarch64_msvc"
4289
+ version = "0.53.0"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4292
+
3291
4293
  [[package]]
3292
4294
  name = "windows_i686_gnu"
3293
4295
  version = "0.52.6"
3294
4296
  source = "registry+https://github.com/rust-lang/crates.io-index"
3295
4297
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3296
4298
 
4299
+ [[package]]
4300
+ name = "windows_i686_gnu"
4301
+ version = "0.53.0"
4302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4303
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4304
+
3297
4305
  [[package]]
3298
4306
  name = "windows_i686_gnullvm"
3299
4307
  version = "0.52.6"
3300
4308
  source = "registry+https://github.com/rust-lang/crates.io-index"
3301
4309
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3302
4310
 
4311
+ [[package]]
4312
+ name = "windows_i686_gnullvm"
4313
+ version = "0.53.0"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4316
+
3303
4317
  [[package]]
3304
4318
  name = "windows_i686_msvc"
3305
4319
  version = "0.52.6"
3306
4320
  source = "registry+https://github.com/rust-lang/crates.io-index"
3307
4321
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3308
4322
 
4323
+ [[package]]
4324
+ name = "windows_i686_msvc"
4325
+ version = "0.53.0"
4326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4327
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4328
+
3309
4329
  [[package]]
3310
4330
  name = "windows_x86_64_gnu"
3311
4331
  version = "0.52.6"
3312
4332
  source = "registry+https://github.com/rust-lang/crates.io-index"
3313
4333
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3314
4334
 
4335
+ [[package]]
4336
+ name = "windows_x86_64_gnu"
4337
+ version = "0.53.0"
4338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4339
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4340
+
3315
4341
  [[package]]
3316
4342
  name = "windows_x86_64_gnullvm"
3317
4343
  version = "0.52.6"
3318
4344
  source = "registry+https://github.com/rust-lang/crates.io-index"
3319
4345
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3320
4346
 
4347
+ [[package]]
4348
+ name = "windows_x86_64_gnullvm"
4349
+ version = "0.53.0"
4350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4351
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4352
+
3321
4353
  [[package]]
3322
4354
  name = "windows_x86_64_msvc"
3323
4355
  version = "0.52.6"
3324
4356
  source = "registry+https://github.com/rust-lang/crates.io-index"
3325
4357
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3326
4358
 
4359
+ [[package]]
4360
+ name = "windows_x86_64_msvc"
4361
+ version = "0.53.0"
4362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4363
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4364
+
3327
4365
  [[package]]
3328
4366
  name = "winnow"
3329
4367
  version = "0.7.9"
@@ -3342,12 +4380,48 @@ dependencies = [
3342
4380
  "bitflags",
3343
4381
  ]
3344
4382
 
4383
+ [[package]]
4384
+ name = "write16"
4385
+ version = "1.0.0"
4386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4387
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4388
+
4389
+ [[package]]
4390
+ name = "writeable"
4391
+ version = "0.5.5"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4394
+
3345
4395
  [[package]]
3346
4396
  name = "xxhash-rust"
3347
4397
  version = "0.8.15"
3348
4398
  source = "registry+https://github.com/rust-lang/crates.io-index"
3349
4399
  checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3350
4400
 
4401
+ [[package]]
4402
+ name = "yoke"
4403
+ version = "0.7.5"
4404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4405
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4406
+ dependencies = [
4407
+ "serde",
4408
+ "stable_deref_trait",
4409
+ "yoke-derive",
4410
+ "zerofrom",
4411
+ ]
4412
+
4413
+ [[package]]
4414
+ name = "yoke-derive"
4415
+ version = "0.7.5"
4416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4417
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4418
+ dependencies = [
4419
+ "proc-macro2",
4420
+ "quote",
4421
+ "syn",
4422
+ "synstructure",
4423
+ ]
4424
+
3351
4425
  [[package]]
3352
4426
  name = "zerocopy"
3353
4427
  version = "0.7.35"
@@ -3388,6 +4462,55 @@ dependencies = [
3388
4462
  "syn",
3389
4463
  ]
3390
4464
 
4465
+ [[package]]
4466
+ name = "zerofrom"
4467
+ version = "0.1.6"
4468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4469
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4470
+ dependencies = [
4471
+ "zerofrom-derive",
4472
+ ]
4473
+
4474
+ [[package]]
4475
+ name = "zerofrom-derive"
4476
+ version = "0.1.6"
4477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4478
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4479
+ dependencies = [
4480
+ "proc-macro2",
4481
+ "quote",
4482
+ "syn",
4483
+ "synstructure",
4484
+ ]
4485
+
4486
+ [[package]]
4487
+ name = "zeroize"
4488
+ version = "1.8.1"
4489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4490
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4491
+
4492
+ [[package]]
4493
+ name = "zerovec"
4494
+ version = "0.10.4"
4495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4496
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4497
+ dependencies = [
4498
+ "yoke",
4499
+ "zerofrom",
4500
+ "zerovec-derive",
4501
+ ]
4502
+
4503
+ [[package]]
4504
+ name = "zerovec-derive"
4505
+ version = "0.10.3"
4506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4507
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4508
+ dependencies = [
4509
+ "proc-macro2",
4510
+ "quote",
4511
+ "syn",
4512
+ ]
4513
+
3391
4514
  [[package]]
3392
4515
  name = "zlib-rs"
3393
4516
  version = "0.5.0"