maplib 0.15.33__tar.gz → 0.17.10__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 (234) hide show
  1. {maplib-0.15.33 → maplib-0.17.10}/Cargo.lock +875 -883
  2. {maplib-0.15.33 → maplib-0.17.10}/Cargo.toml +10 -7
  3. {maplib-0.15.33 → maplib-0.17.10}/PKG-INFO +15 -15
  4. {maplib-0.15.33 → maplib-0.17.10}/README.md +10 -10
  5. {maplib-0.15.33 → maplib-0.17.10}/lib/cimxml/src/export.rs +0 -4
  6. {maplib-0.15.33 → maplib-0.17.10}/lib/datalog/src/inference.rs +0 -4
  7. {maplib-0.15.33 → maplib-0.17.10}/lib/file_io/Cargo.toml +0 -1
  8. {maplib-0.15.33 → maplib-0.17.10}/lib/file_io/src/lib.rs +3 -3
  9. {maplib-0.15.33 → maplib-0.17.10}/lib/fts/src/lib.rs +6 -1
  10. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/Cargo.toml +1 -2
  11. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/errors.rs +2 -0
  12. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/lib.rs +0 -2
  13. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/mapping/constant_terms.rs +19 -9
  14. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/mapping/default.rs +5 -5
  15. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/mapping/expansion/validation.rs +29 -15
  16. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/mapping/expansion.rs +83 -66
  17. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/mapping.rs +65 -114
  18. {maplib-0.15.33 → maplib-0.17.10}/lib/pydf_io/Cargo.toml +1 -1
  19. {maplib-0.15.33 → maplib-0.17.10}/lib/pydf_io/src/to_python.rs +12 -11
  20. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/Cargo.toml +1 -1
  21. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/aggregates.rs +38 -23
  22. maplib-0.17.10/lib/query_processing/src/cats.rs +231 -0
  23. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/constants.rs +4 -2
  24. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/errors.rs +2 -2
  25. maplib-0.17.10/lib/query_processing/src/expressions/comparisons.rs +167 -0
  26. maplib-0.17.10/lib/query_processing/src/expressions/functions.rs +1976 -0
  27. maplib-0.17.10/lib/query_processing/src/expressions/operations.rs +240 -0
  28. maplib-0.17.10/lib/query_processing/src/expressions.rs +631 -0
  29. maplib-0.17.10/lib/query_processing/src/graph_patterns/cats.rs +120 -0
  30. maplib-0.17.10/lib/query_processing/src/graph_patterns/group.rs +33 -0
  31. maplib-0.17.10/lib/query_processing/src/graph_patterns/join.rs +674 -0
  32. maplib-0.17.10/lib/query_processing/src/graph_patterns/order.rs +135 -0
  33. maplib-0.17.10/lib/query_processing/src/graph_patterns/union.rs +149 -0
  34. maplib-0.17.10/lib/query_processing/src/graph_patterns/values.rs +136 -0
  35. maplib-0.17.10/lib/query_processing/src/graph_patterns.rs +324 -0
  36. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/lib.rs +1 -0
  37. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/pushdowns.rs +32 -16
  38. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/type_constraints.rs +76 -28
  39. {maplib-0.15.33 → maplib-0.17.10}/lib/report_mapping/src/lib.rs +4 -5
  40. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/Cargo.toml +4 -4
  41. maplib-0.17.10/lib/representation/src/base_rdf_type.rs +358 -0
  42. maplib-0.17.10/lib/representation/src/cats/decode.rs +234 -0
  43. maplib-0.17.10/lib/representation/src/cats/encode.rs +642 -0
  44. maplib-0.17.10/lib/representation/src/cats/globalize.rs +63 -0
  45. maplib-0.17.10/lib/representation/src/cats/image.rs +197 -0
  46. maplib-0.17.10/lib/representation/src/cats/re_encode.rs +283 -0
  47. maplib-0.17.10/lib/representation/src/cats/split.rs +73 -0
  48. maplib-0.17.10/lib/representation/src/cats.rs +255 -0
  49. maplib-0.17.10/lib/representation/src/formatting.rs +244 -0
  50. maplib-0.17.10/lib/representation/src/lib.rs +79 -0
  51. maplib-0.17.10/lib/representation/src/multitype.rs +317 -0
  52. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/polars_to_rdf.rs +124 -76
  53. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/python.rs +54 -58
  54. maplib-0.17.10/lib/representation/src/rdf_state.rs +176 -0
  55. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/rdf_to_polars.rs +34 -25
  56. maplib-0.17.10/lib/representation/src/rdf_type.rs +11 -0
  57. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/solution_mapping.rs +30 -22
  58. {maplib-0.15.33 → maplib-0.17.10}/lib/shacl/src/lib.rs +2 -5
  59. {maplib-0.15.33 → maplib-0.17.10}/lib/shacl/src/storage.rs +2 -2
  60. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/Cargo.toml +2 -0
  61. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/Cargo.toml +1 -1
  62. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/ast.rs +19 -13
  63. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/constants.rs +5 -0
  64. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/dataset.rs +13 -9
  65. maplib-0.17.10/lib/templates/src/lib.rs +55 -0
  66. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/python.rs +7 -7
  67. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/resolver.rs +5 -3
  68. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/Cargo.toml +5 -5
  69. maplib-0.17.10/lib/triplestore/src/cats.rs +14 -0
  70. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/dblf.rs +167 -195
  71. maplib-0.17.10/lib/triplestore/src/errors.rs +50 -0
  72. maplib-0.17.10/lib/triplestore/src/lib.rs +712 -0
  73. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/native_parquet_write.rs +7 -12
  74. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/query_solutions.rs +5 -13
  75. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/rdfs_inferencing.rs +3 -15
  76. maplib-0.17.10/lib/triplestore/src/sparql/delete.rs +303 -0
  77. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/errors.rs +12 -2
  78. maplib-0.17.10/lib/triplestore/src/sparql/insert.rs +126 -0
  79. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_aggregate.rs +2 -1
  80. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_expressions.rs +35 -8
  81. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +2 -1
  82. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +2 -1
  83. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +4 -1
  84. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +8 -2
  85. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +2 -1
  86. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +18 -5
  87. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +2 -1
  88. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +12 -3
  89. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +73 -47
  90. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +3 -1
  91. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +11 -9
  92. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +39 -23
  93. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +6 -3
  94. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +11 -2
  95. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +9 -16
  96. maplib-0.17.10/lib/triplestore/src/sparql/rewrite/rewrite_cse.rs +306 -0
  97. maplib-0.17.10/lib/triplestore/src/sparql/rewrite/rewrite_pushdown.rs +309 -0
  98. maplib-0.17.10/lib/triplestore/src/sparql/rewrite.rs +58 -0
  99. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql.rs +165 -322
  100. maplib-0.17.10/lib/triplestore/src/storage.rs +1285 -0
  101. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/triples_read.rs +23 -25
  102. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/triples_write/fast_ntriples.rs +2 -2
  103. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/triples_write/serializers.rs +5 -76
  104. maplib-0.17.10/lib/triplestore/src/triples_write.rs +180 -0
  105. {maplib-0.15.33 → maplib-0.17.10}/lib/utils/Cargo.toml +0 -1
  106. {maplib-0.15.33 → maplib-0.17.10}/lib/utils/src/polars.rs +23 -26
  107. {maplib-0.15.33 → maplib-0.17.10}/maplib/__init__.py +4 -4
  108. {maplib-0.15.33 → maplib-0.17.10}/maplib/__init__.pyi +46 -100
  109. {maplib-0.15.33 → maplib-0.17.10}/maplib/adding_triples.py +4 -4
  110. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/Cargo.toml +10 -3
  111. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/README.md +10 -10
  112. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/maplib/__init__.py +4 -4
  113. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/maplib/__init__.pyi +46 -100
  114. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/maplib/adding_triples.py +4 -4
  115. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/src/error.rs +4 -0
  116. maplib-0.17.10/py_maplib/src/lib.rs +1526 -0
  117. maplib-0.17.10/py_maplib/src/shacl.rs +140 -0
  118. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/.gitignore +1 -1
  119. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_basics.py +96 -79
  120. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_blank_nodes_multi.py +29 -28
  121. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_data_validation.py +88 -75
  122. maplib-0.17.10/py_maplib/tests/test_exceptions.py +10 -0
  123. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_integration.py +118 -49
  124. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_multi_expressions.py +288 -62
  125. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_pizza_example.py +77 -24
  126. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_programmatic_pizza_example.py +12 -12
  127. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_rdf_parser.py +3 -3
  128. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_read_write.py +21 -21
  129. maplib-0.15.33/lib/maplib/tests/test_stottr.rs → maplib-0.17.10/py_maplib/tests/test_stottr.py +29 -27
  130. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/test_validate_iris.py +7 -7
  131. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_concat.csv +9 -9
  132. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_many_comp.csv +1 -1
  133. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +1 -1
  134. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/simple_construct_query_something.csv +1 -1
  135. {maplib-0.15.33 → maplib-0.17.10}/pyproject.toml +2 -1
  136. maplib-0.15.33/lib/maplib/tests/stottr_testdata/.gitignore +0 -1
  137. maplib-0.15.33/lib/query_processing/src/expressions.rs +0 -2555
  138. maplib-0.15.33/lib/query_processing/src/graph_patterns.rs +0 -768
  139. maplib-0.15.33/lib/representation/src/formatting.rs +0 -102
  140. maplib-0.15.33/lib/representation/src/lib.rs +0 -454
  141. maplib-0.15.33/lib/representation/src/multitype.rs +0 -969
  142. maplib-0.15.33/lib/templates/src/lib.rs +0 -30
  143. maplib-0.15.33/lib/triplestore/src/errors.rs +0 -81
  144. maplib-0.15.33/lib/triplestore/src/lib.rs +0 -614
  145. maplib-0.15.33/lib/triplestore/src/sparql/pushdowns.rs +0 -402
  146. maplib-0.15.33/lib/triplestore/src/storage.rs +0 -1128
  147. maplib-0.15.33/lib/triplestore/src/triples_write.rs +0 -112
  148. maplib-0.15.33/py_maplib/src/lib.rs +0 -1118
  149. maplib-0.15.33/py_maplib/src/shacl.rs +0 -140
  150. maplib-0.15.33/py_maplib/tests/test_exceptions.py +0 -10
  151. {maplib-0.15.33 → maplib-0.17.10}/LICENSE +0 -0
  152. {maplib-0.15.33 → maplib-0.17.10}/lib/cimxml/Cargo.toml +0 -0
  153. {maplib-0.15.33 → maplib-0.17.10}/lib/cimxml/src/lib.rs +0 -0
  154. {maplib-0.15.33 → maplib-0.17.10}/lib/datalog/Cargo.toml +0 -0
  155. {maplib-0.15.33 → maplib-0.17.10}/lib/datalog/src/ast.rs +0 -0
  156. {maplib-0.15.33 → maplib-0.17.10}/lib/datalog/src/lib.rs +0 -0
  157. {maplib-0.15.33 → maplib-0.17.10}/lib/datalog/src/parser.rs +0 -0
  158. {maplib-0.15.33 → maplib-0.17.10}/lib/fts/Cargo.toml +0 -0
  159. {maplib-0.15.33 → maplib-0.17.10}/lib/maplib/src/mapping/errors.rs +0 -0
  160. {maplib-0.15.33 → maplib-0.17.10}/lib/pydf_io/LICENSE +0 -0
  161. {maplib-0.15.33 → maplib-0.17.10}/lib/pydf_io/README.md +0 -0
  162. {maplib-0.15.33 → maplib-0.17.10}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  163. {maplib-0.15.33 → maplib-0.17.10}/lib/pydf_io/src/lib.rs +0 -0
  164. {maplib-0.15.33 → maplib-0.17.10}/lib/pydf_io/src/to_rust.rs +0 -0
  165. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/LICENSE +0 -0
  166. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/README.md +0 -0
  167. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/exists_helper.rs +0 -0
  168. {maplib-0.15.33 → maplib-0.17.10}/lib/query_processing/src/find_query_variables.rs +0 -0
  169. {maplib-0.15.33 → maplib-0.17.10}/lib/report_mapping/Cargo.toml +0 -0
  170. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/LICENSE +0 -0
  171. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/README.md +0 -0
  172. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/errors.rs +0 -0
  173. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/literals.rs +0 -0
  174. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/query_context.rs +0 -0
  175. {maplib-0.15.33 → maplib-0.17.10}/lib/representation/src/subtypes.rs +0 -0
  176. {maplib-0.15.33 → maplib-0.17.10}/lib/shacl/Cargo.toml +0 -0
  177. {maplib-0.15.33 → maplib-0.17.10}/lib/shacl/src/errors.rs +0 -0
  178. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/LICENSE +0 -0
  179. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/README.md +0 -0
  180. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/algebra.rs +0 -0
  181. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/lib.rs +0 -0
  182. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/parser.rs +0 -0
  183. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/query.rs +0 -0
  184. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/query_context.rs +0 -0
  185. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/remove_sugar.rs +0 -0
  186. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/term.rs +0 -0
  187. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/treehouse.rs +0 -0
  188. {maplib-0.15.33 → maplib-0.17.10}/lib/spargebra/src/update.rs +0 -0
  189. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/compatible.rs +0 -0
  190. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/dataset/errors.rs +0 -0
  191. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/document.rs +0 -0
  192. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/parsing/errors.rs +0 -0
  193. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/parsing/nom_parsing.rs +0 -0
  194. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/parsing/parser_test.rs +0 -0
  195. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/parsing/parsing_ast.rs +0 -0
  196. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/parsing.rs +0 -0
  197. {maplib-0.15.33 → maplib-0.17.10}/lib/templates/src/subtypes_ext.rs +0 -0
  198. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/io_funcs.rs +0 -0
  199. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  200. {maplib-0.15.33 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_order.rs +0 -0
  201. {maplib-0.15.33 → maplib-0.17.10}/lib/utils/src/lib.rs +0 -0
  202. {maplib-0.15.33 → maplib-0.17.10}/maplib/py.typed +0 -0
  203. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/LICENSE +0 -0
  204. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/maplib/.gitignore +0 -0
  205. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/maplib/py.typed +0 -0
  206. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/__init__.py +0 -0
  207. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/out.ttl +0 -0
  208. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/requirements.txt +0 -0
  209. {maplib-0.15.33/lib/maplib/tests/stottr_testdata → maplib-0.17.10/py_maplib/tests/testdata}/expected_easy_case.ttl +0 -0
  210. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  211. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  212. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  213. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  214. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  215. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/larger_query.csv +0 -0
  216. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  217. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  218. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  219. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  220. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  221. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  222. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  223. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  224. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  225. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  226. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  227. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  228. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  229. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  230. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  231. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  232. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  233. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/simple_query.csv +0 -0
  234. {maplib-0.15.33 → maplib-0.17.10}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
@@ -13,21 +13,21 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "adler2"
16
- version = "2.0.0"
16
+ version = "2.0.1"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
19
 
20
20
  [[package]]
21
21
  name = "ahash"
22
- version = "0.8.11"
22
+ version = "0.8.12"
23
23
  source = "registry+https://github.com/rust-lang/crates.io-index"
24
- checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
25
  dependencies = [
26
26
  "cfg-if",
27
- "getrandom 0.2.16",
27
+ "getrandom 0.3.3",
28
28
  "once_cell",
29
29
  "version_check",
30
- "zerocopy 0.7.35",
30
+ "zerocopy",
31
31
  ]
32
32
 
33
33
  [[package]]
@@ -71,12 +71,6 @@ version = "0.2.21"
71
71
  source = "registry+https://github.com/rust-lang/crates.io-index"
72
72
  checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
73
73
 
74
- [[package]]
75
- name = "android-tzdata"
76
- version = "0.1.1"
77
- source = "registry+https://github.com/rust-lang/crates.io-index"
78
- checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
79
-
80
74
  [[package]]
81
75
  name = "android_system_properties"
82
76
  version = "0.1.5"
@@ -86,56 +80,6 @@ dependencies = [
86
80
  "libc",
87
81
  ]
88
82
 
89
- [[package]]
90
- name = "anstream"
91
- version = "0.6.18"
92
- source = "registry+https://github.com/rust-lang/crates.io-index"
93
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
94
- dependencies = [
95
- "anstyle",
96
- "anstyle-parse",
97
- "anstyle-query",
98
- "anstyle-wincon",
99
- "colorchoice",
100
- "is_terminal_polyfill",
101
- "utf8parse",
102
- ]
103
-
104
- [[package]]
105
- name = "anstyle"
106
- version = "1.0.10"
107
- source = "registry+https://github.com/rust-lang/crates.io-index"
108
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
109
-
110
- [[package]]
111
- name = "anstyle-parse"
112
- version = "0.2.6"
113
- source = "registry+https://github.com/rust-lang/crates.io-index"
114
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
115
- dependencies = [
116
- "utf8parse",
117
- ]
118
-
119
- [[package]]
120
- name = "anstyle-query"
121
- version = "1.1.2"
122
- source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
124
- dependencies = [
125
- "windows-sys 0.59.0",
126
- ]
127
-
128
- [[package]]
129
- name = "anstyle-wincon"
130
- version = "3.0.7"
131
- source = "registry+https://github.com/rust-lang/crates.io-index"
132
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
133
- dependencies = [
134
- "anstyle",
135
- "once_cell",
136
- "windows-sys 0.59.0",
137
- ]
138
-
139
83
  [[package]]
140
84
  name = "approx"
141
85
  version = "0.3.2"
@@ -145,12 +89,6 @@ dependencies = [
145
89
  "num-traits",
146
90
  ]
147
91
 
148
- [[package]]
149
- name = "arc-swap"
150
- version = "1.7.1"
151
- source = "registry+https://github.com/rust-lang/crates.io-index"
152
- checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
153
-
154
92
  [[package]]
155
93
  name = "argminmax"
156
94
  version = "0.6.3"
@@ -180,9 +118,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
180
118
 
181
119
  [[package]]
182
120
  name = "async-channel"
183
- version = "2.3.1"
121
+ version = "2.5.0"
184
122
  source = "registry+https://github.com/rust-lang/crates.io-index"
185
- checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
123
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
186
124
  dependencies = [
187
125
  "concurrent-queue",
188
126
  "event-listener-strategy",
@@ -214,9 +152,9 @@ dependencies = [
214
152
 
215
153
  [[package]]
216
154
  name = "async-trait"
217
- version = "0.1.88"
155
+ version = "0.1.89"
218
156
  source = "registry+https://github.com/rust-lang/crates.io-index"
219
- checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
157
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
220
158
  dependencies = [
221
159
  "proc-macro2",
222
160
  "quote",
@@ -225,9 +163,12 @@ dependencies = [
225
163
 
226
164
  [[package]]
227
165
  name = "atoi_simd"
228
- version = "0.16.0"
166
+ version = "0.16.1"
229
167
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "4790f9e8961209112beb783d85449b508673cf4a6a419c8449b210743ac4dbe9"
168
+ checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
169
+ dependencies = [
170
+ "debug_unsafe",
171
+ ]
231
172
 
232
173
  [[package]]
233
174
  name = "atomic-waker"
@@ -237,15 +178,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
237
178
 
238
179
  [[package]]
239
180
  name = "autocfg"
240
- version = "1.4.0"
181
+ version = "1.5.0"
241
182
  source = "registry+https://github.com/rust-lang/crates.io-index"
242
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
183
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
243
184
 
244
185
  [[package]]
245
186
  name = "backtrace"
246
- version = "0.3.74"
187
+ version = "0.3.75"
247
188
  source = "registry+https://github.com/rust-lang/crates.io-index"
248
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
189
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
249
190
  dependencies = [
250
191
  "addr2line",
251
192
  "cfg-if",
@@ -264,18 +205,29 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
264
205
 
265
206
  [[package]]
266
207
  name = "bincode"
267
- version = "1.3.3"
208
+ version = "2.0.1"
268
209
  source = "registry+https://github.com/rust-lang/crates.io-index"
269
- checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
210
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
270
211
  dependencies = [
212
+ "bincode_derive",
271
213
  "serde",
214
+ "unty",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "bincode_derive"
219
+ version = "2.0.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
222
+ dependencies = [
223
+ "virtue",
272
224
  ]
273
225
 
274
226
  [[package]]
275
227
  name = "bitflags"
276
- version = "2.9.0"
228
+ version = "2.9.4"
277
229
  source = "registry+https://github.com/rust-lang/crates.io-index"
278
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
230
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
279
231
  dependencies = [
280
232
  "serde",
281
233
  ]
@@ -293,11 +245,26 @@ dependencies = [
293
245
  "constant_time_eq",
294
246
  ]
295
247
 
248
+ [[package]]
249
+ name = "block-buffer"
250
+ version = "0.10.4"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
253
+ dependencies = [
254
+ "generic-array",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "boxcar"
259
+ version = "0.2.14"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
262
+
296
263
  [[package]]
297
264
  name = "brotli"
298
- version = "7.0.0"
265
+ version = "8.0.2"
299
266
  source = "registry+https://github.com/rust-lang/crates.io-index"
300
- checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
267
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
301
268
  dependencies = [
302
269
  "alloc-no-stdlib",
303
270
  "alloc-stdlib",
@@ -306,9 +273,9 @@ dependencies = [
306
273
 
307
274
  [[package]]
308
275
  name = "brotli-decompressor"
309
- version = "4.0.3"
276
+ version = "5.0.0"
310
277
  source = "registry+https://github.com/rust-lang/crates.io-index"
311
- checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
278
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
312
279
  dependencies = [
313
280
  "alloc-no-stdlib",
314
281
  "alloc-stdlib",
@@ -316,24 +283,24 @@ dependencies = [
316
283
 
317
284
  [[package]]
318
285
  name = "bumpalo"
319
- version = "3.17.0"
286
+ version = "3.19.0"
320
287
  source = "registry+https://github.com/rust-lang/crates.io-index"
321
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
288
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
322
289
 
323
290
  [[package]]
324
291
  name = "bytemuck"
325
- version = "1.23.0"
292
+ version = "1.23.2"
326
293
  source = "registry+https://github.com/rust-lang/crates.io-index"
327
- checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
294
+ checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
328
295
  dependencies = [
329
296
  "bytemuck_derive",
330
297
  ]
331
298
 
332
299
  [[package]]
333
300
  name = "bytemuck_derive"
334
- version = "1.9.3"
301
+ version = "1.10.1"
335
302
  source = "registry+https://github.com/rust-lang/crates.io-index"
336
- checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
303
+ checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29"
337
304
  dependencies = [
338
305
  "proc-macro2",
339
306
  "quote",
@@ -357,19 +324,20 @@ dependencies = [
357
324
 
358
325
  [[package]]
359
326
  name = "castaway"
360
- version = "0.2.3"
327
+ version = "0.2.4"
361
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
362
- checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
329
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
363
330
  dependencies = [
364
331
  "rustversion",
365
332
  ]
366
333
 
367
334
  [[package]]
368
335
  name = "cc"
369
- version = "1.2.21"
336
+ version = "1.2.38"
370
337
  source = "registry+https://github.com/rust-lang/crates.io-index"
371
- checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
338
+ checksum = "80f41ae168f955c12fb8960b057d70d0ca153fb83182b57d86380443527be7e9"
372
339
  dependencies = [
340
+ "find-msvc-tools",
373
341
  "jobserver",
374
342
  "libc",
375
343
  "shlex",
@@ -377,9 +345,9 @@ dependencies = [
377
345
 
378
346
  [[package]]
379
347
  name = "cfg-if"
380
- version = "1.0.0"
348
+ version = "1.0.3"
381
349
  source = "registry+https://github.com/rust-lang/crates.io-index"
382
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
350
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
383
351
 
384
352
  [[package]]
385
353
  name = "cfg_aliases"
@@ -389,40 +357,28 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
389
357
 
390
358
  [[package]]
391
359
  name = "chrono"
392
- version = "0.4.41"
360
+ version = "0.4.42"
393
361
  source = "registry+https://github.com/rust-lang/crates.io-index"
394
- checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
362
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
395
363
  dependencies = [
396
- "android-tzdata",
397
364
  "iana-time-zone",
398
365
  "js-sys",
399
366
  "num-traits",
400
367
  "serde",
401
368
  "wasm-bindgen",
402
- "windows-link",
369
+ "windows-link 0.2.0",
403
370
  ]
404
371
 
405
372
  [[package]]
406
373
  name = "chrono-tz"
407
- version = "0.10.3"
374
+ version = "0.10.4"
408
375
  source = "registry+https://github.com/rust-lang/crates.io-index"
409
- checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
376
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
410
377
  dependencies = [
411
378
  "chrono",
412
- "chrono-tz-build",
413
379
  "phf",
414
380
  ]
415
381
 
416
- [[package]]
417
- name = "chrono-tz-build"
418
- version = "0.4.1"
419
- source = "registry+https://github.com/rust-lang/crates.io-index"
420
- checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
421
- dependencies = [
422
- "parse-zoneinfo",
423
- "phf_codegen",
424
- ]
425
-
426
382
  [[package]]
427
383
  name = "cimxml"
428
384
  version = "0.1.0"
@@ -433,17 +389,11 @@ dependencies = [
433
389
  "triplestore",
434
390
  ]
435
391
 
436
- [[package]]
437
- name = "colorchoice"
438
- version = "1.0.3"
439
- source = "registry+https://github.com/rust-lang/crates.io-index"
440
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
441
-
442
392
  [[package]]
443
393
  name = "comfy-table"
444
- version = "7.1.4"
394
+ version = "7.2.1"
445
395
  source = "registry+https://github.com/rust-lang/crates.io-index"
446
- checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
396
+ checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
447
397
  dependencies = [
448
398
  "crossterm",
449
399
  "unicode-segmentation",
@@ -452,9 +402,9 @@ dependencies = [
452
402
 
453
403
  [[package]]
454
404
  name = "compact_str"
455
- version = "0.8.1"
405
+ version = "0.9.0"
456
406
  source = "registry+https://github.com/rust-lang/crates.io-index"
457
- checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
407
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
458
408
  dependencies = [
459
409
  "castaway",
460
410
  "cfg-if",
@@ -482,9 +432,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
482
432
 
483
433
  [[package]]
484
434
  name = "core-foundation"
485
- version = "0.10.0"
435
+ version = "0.10.1"
486
436
  source = "registry+https://github.com/rust-lang/crates.io-index"
487
- checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
437
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
488
438
  dependencies = [
489
439
  "core-foundation-sys",
490
440
  "libc",
@@ -496,11 +446,20 @@ version = "0.8.7"
496
446
  source = "registry+https://github.com/rust-lang/crates.io-index"
497
447
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
498
448
 
449
+ [[package]]
450
+ name = "cpufeatures"
451
+ version = "0.2.17"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
454
+ dependencies = [
455
+ "libc",
456
+ ]
457
+
499
458
  [[package]]
500
459
  name = "crc32fast"
501
- version = "1.4.2"
460
+ version = "1.5.0"
502
461
  source = "registry+https://github.com/rust-lang/crates.io-index"
503
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
462
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
504
463
  dependencies = [
505
464
  "cfg-if",
506
465
  ]
@@ -550,14 +509,15 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
550
509
 
551
510
  [[package]]
552
511
  name = "crossterm"
553
- version = "0.28.1"
512
+ version = "0.29.0"
554
513
  source = "registry+https://github.com/rust-lang/crates.io-index"
555
- checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
514
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
556
515
  dependencies = [
557
516
  "bitflags",
558
517
  "crossterm_winapi",
518
+ "document-features",
559
519
  "parking_lot",
560
- "rustix 0.38.44",
520
+ "rustix",
561
521
  "winapi",
562
522
  ]
563
523
 
@@ -570,6 +530,16 @@ dependencies = [
570
530
  "winapi",
571
531
  ]
572
532
 
533
+ [[package]]
534
+ name = "crypto-common"
535
+ version = "0.1.6"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
538
+ dependencies = [
539
+ "generic-array",
540
+ "typenum",
541
+ ]
542
+
573
543
  [[package]]
574
544
  name = "datalog"
575
545
  version = "0.1.0"
@@ -582,62 +552,52 @@ dependencies = [
582
552
  ]
583
553
 
584
554
  [[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
-
595
- [[package]]
596
- name = "dyn-clone"
597
- version = "1.0.19"
555
+ name = "debug_unsafe"
556
+ version = "0.1.3"
598
557
  source = "registry+https://github.com/rust-lang/crates.io-index"
599
- checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
558
+ checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
600
559
 
601
560
  [[package]]
602
- name = "either"
603
- version = "1.15.0"
561
+ name = "digest"
562
+ version = "0.10.7"
604
563
  source = "registry+https://github.com/rust-lang/crates.io-index"
605
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
564
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
565
+ dependencies = [
566
+ "block-buffer",
567
+ "crypto-common",
568
+ ]
606
569
 
607
570
  [[package]]
608
- name = "enum_dispatch"
609
- version = "0.3.13"
571
+ name = "displaydoc"
572
+ version = "0.2.5"
610
573
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
574
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
612
575
  dependencies = [
613
- "once_cell",
614
576
  "proc-macro2",
615
577
  "quote",
616
578
  "syn",
617
579
  ]
618
580
 
619
581
  [[package]]
620
- name = "env_filter"
621
- version = "0.1.3"
582
+ name = "document-features"
583
+ version = "0.2.11"
622
584
  source = "registry+https://github.com/rust-lang/crates.io-index"
623
- checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
585
+ checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
624
586
  dependencies = [
625
- "log",
626
- "regex",
587
+ "litrs",
627
588
  ]
628
589
 
629
590
  [[package]]
630
- name = "env_logger"
631
- version = "0.11.8"
591
+ name = "dyn-clone"
592
+ version = "1.0.20"
632
593
  source = "registry+https://github.com/rust-lang/crates.io-index"
633
- checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
634
- dependencies = [
635
- "anstream",
636
- "anstyle",
637
- "env_filter",
638
- "jiff",
639
- "log",
640
- ]
594
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
595
+
596
+ [[package]]
597
+ name = "either"
598
+ version = "1.15.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
641
601
 
642
602
  [[package]]
643
603
  name = "equivalent"
@@ -647,25 +607,25 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
647
607
 
648
608
  [[package]]
649
609
  name = "errno"
650
- version = "0.3.11"
610
+ version = "0.3.14"
651
611
  source = "registry+https://github.com/rust-lang/crates.io-index"
652
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
612
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
653
613
  dependencies = [
654
614
  "libc",
655
- "windows-sys 0.59.0",
615
+ "windows-sys 0.61.0",
656
616
  ]
657
617
 
658
618
  [[package]]
659
619
  name = "ethnum"
660
- version = "1.5.1"
620
+ version = "1.5.2"
661
621
  source = "registry+https://github.com/rust-lang/crates.io-index"
662
- checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
622
+ checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
663
623
 
664
624
  [[package]]
665
625
  name = "event-listener"
666
- version = "5.4.0"
626
+ version = "5.4.1"
667
627
  source = "registry+https://github.com/rust-lang/crates.io-index"
668
- checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
628
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
669
629
  dependencies = [
670
630
  "concurrent-queue",
671
631
  "parking",
@@ -700,14 +660,19 @@ version = "0.5.0"
700
660
  dependencies = [
701
661
  "polars",
702
662
  "thiserror",
703
- "uuid",
704
663
  ]
705
664
 
665
+ [[package]]
666
+ name = "find-msvc-tools"
667
+ version = "0.1.2"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959"
670
+
706
671
  [[package]]
707
672
  name = "flate2"
708
- version = "1.1.1"
673
+ version = "1.1.2"
709
674
  source = "registry+https://github.com/rust-lang/crates.io-index"
710
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
675
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
711
676
  dependencies = [
712
677
  "crc32fast",
713
678
  "libz-rs-sys",
@@ -737,9 +702,9 @@ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
737
702
 
738
703
  [[package]]
739
704
  name = "form_urlencoded"
740
- version = "1.2.1"
705
+ version = "1.2.2"
741
706
  source = "registry+https://github.com/rust-lang/crates.io-index"
742
- checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
707
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
743
708
  dependencies = [
744
709
  "percent-encoding",
745
710
  ]
@@ -750,7 +715,7 @@ version = "0.13.1"
750
715
  source = "registry+https://github.com/rust-lang/crates.io-index"
751
716
  checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
752
717
  dependencies = [
753
- "rustix 1.0.7",
718
+ "rustix",
754
719
  "windows-sys 0.59.0",
755
720
  ]
756
721
 
@@ -879,6 +844,16 @@ dependencies = [
879
844
  "slab",
880
845
  ]
881
846
 
847
+ [[package]]
848
+ name = "generic-array"
849
+ version = "0.14.7"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
852
+ dependencies = [
853
+ "typenum",
854
+ "version_check",
855
+ ]
856
+
882
857
  [[package]]
883
858
  name = "getrandom"
884
859
  version = "0.2.16"
@@ -888,21 +863,21 @@ dependencies = [
888
863
  "cfg-if",
889
864
  "js-sys",
890
865
  "libc",
891
- "wasi 0.11.0+wasi-snapshot-preview1",
866
+ "wasi 0.11.1+wasi-snapshot-preview1",
892
867
  "wasm-bindgen",
893
868
  ]
894
869
 
895
870
  [[package]]
896
871
  name = "getrandom"
897
- version = "0.3.2"
872
+ version = "0.3.3"
898
873
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
874
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
900
875
  dependencies = [
901
876
  "cfg-if",
902
877
  "js-sys",
903
878
  "libc",
904
879
  "r-efi",
905
- "wasi 0.14.2+wasi-0.2.4",
880
+ "wasi 0.14.7+wasi-0.2.4",
906
881
  "wasm-bindgen",
907
882
  ]
908
883
 
@@ -914,15 +889,15 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
914
889
 
915
890
  [[package]]
916
891
  name = "glob"
917
- version = "0.3.2"
892
+ version = "0.3.3"
918
893
  source = "registry+https://github.com/rust-lang/crates.io-index"
919
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
894
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
920
895
 
921
896
  [[package]]
922
897
  name = "h2"
923
- version = "0.4.10"
898
+ version = "0.4.12"
924
899
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
900
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
926
901
  dependencies = [
927
902
  "atomic-waker",
928
903
  "bytes",
@@ -939,38 +914,32 @@ dependencies = [
939
914
 
940
915
  [[package]]
941
916
  name = "halfbrown"
942
- version = "0.2.5"
917
+ version = "0.3.0"
943
918
  source = "registry+https://github.com/rust-lang/crates.io-index"
944
- checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
919
+ checksum = "aa2c385c6df70fd180bbb673d93039dbd2cd34e41d782600bdf6e1ca7bce39aa"
945
920
  dependencies = [
946
- "hashbrown 0.14.5",
921
+ "hashbrown 0.15.5",
947
922
  "serde",
948
923
  ]
949
924
 
950
925
  [[package]]
951
926
  name = "hashbrown"
952
- version = "0.14.5"
927
+ version = "0.15.5"
953
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
929
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
955
930
  dependencies = [
956
- "ahash",
957
931
  "allocator-api2",
932
+ "equivalent",
933
+ "foldhash",
958
934
  "rayon",
959
935
  "serde",
960
936
  ]
961
937
 
962
938
  [[package]]
963
939
  name = "hashbrown"
964
- version = "0.15.3"
940
+ version = "0.16.0"
965
941
  source = "registry+https://github.com/rust-lang/crates.io-index"
966
- checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
967
- dependencies = [
968
- "allocator-api2",
969
- "equivalent",
970
- "foldhash",
971
- "rayon",
972
- "serde",
973
- ]
942
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
974
943
 
975
944
  [[package]]
976
945
  name = "heck"
@@ -980,9 +949,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
980
949
 
981
950
  [[package]]
982
951
  name = "hermit-abi"
983
- version = "0.3.9"
952
+ version = "0.5.2"
984
953
  source = "registry+https://github.com/rust-lang/crates.io-index"
985
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
954
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
986
955
 
987
956
  [[package]]
988
957
  name = "hex"
@@ -1041,25 +1010,27 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1041
1010
 
1042
1011
  [[package]]
1043
1012
  name = "humantime"
1044
- version = "2.2.0"
1013
+ version = "2.3.0"
1045
1014
  source = "registry+https://github.com/rust-lang/crates.io-index"
1046
- checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1015
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1047
1016
 
1048
1017
  [[package]]
1049
1018
  name = "hyper"
1050
- version = "1.6.0"
1019
+ version = "1.7.0"
1051
1020
  source = "registry+https://github.com/rust-lang/crates.io-index"
1052
- checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1021
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1053
1022
  dependencies = [
1023
+ "atomic-waker",
1054
1024
  "bytes",
1055
1025
  "futures-channel",
1056
- "futures-util",
1026
+ "futures-core",
1057
1027
  "h2",
1058
1028
  "http",
1059
1029
  "http-body",
1060
1030
  "httparse",
1061
1031
  "itoa",
1062
1032
  "pin-project-lite",
1033
+ "pin-utils",
1063
1034
  "smallvec",
1064
1035
  "tokio",
1065
1036
  "want",
@@ -1067,11 +1038,10 @@ dependencies = [
1067
1038
 
1068
1039
  [[package]]
1069
1040
  name = "hyper-rustls"
1070
- version = "0.27.5"
1041
+ version = "0.27.7"
1071
1042
  source = "registry+https://github.com/rust-lang/crates.io-index"
1072
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1043
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1073
1044
  dependencies = [
1074
- "futures-util",
1075
1045
  "http",
1076
1046
  "hyper",
1077
1047
  "hyper-util",
@@ -1085,17 +1055,21 @@ dependencies = [
1085
1055
 
1086
1056
  [[package]]
1087
1057
  name = "hyper-util"
1088
- version = "0.1.11"
1058
+ version = "0.1.17"
1089
1059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1090
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1060
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1091
1061
  dependencies = [
1062
+ "base64",
1092
1063
  "bytes",
1093
1064
  "futures-channel",
1065
+ "futures-core",
1094
1066
  "futures-util",
1095
1067
  "http",
1096
1068
  "http-body",
1097
1069
  "hyper",
1070
+ "ipnet",
1098
1071
  "libc",
1072
+ "percent-encoding",
1099
1073
  "pin-project-lite",
1100
1074
  "socket2",
1101
1075
  "tokio",
@@ -1105,9 +1079,9 @@ dependencies = [
1105
1079
 
1106
1080
  [[package]]
1107
1081
  name = "iana-time-zone"
1108
- version = "0.1.63"
1082
+ version = "0.1.64"
1109
1083
  source = "registry+https://github.com/rust-lang/crates.io-index"
1110
- checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1084
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1111
1085
  dependencies = [
1112
1086
  "android_system_properties",
1113
1087
  "core-foundation-sys",
@@ -1115,7 +1089,7 @@ dependencies = [
1115
1089
  "js-sys",
1116
1090
  "log",
1117
1091
  "wasm-bindgen",
1118
- "windows-core 0.61.0",
1092
+ "windows-core",
1119
1093
  ]
1120
1094
 
1121
1095
  [[package]]
@@ -1129,21 +1103,22 @@ dependencies = [
1129
1103
 
1130
1104
  [[package]]
1131
1105
  name = "icu_collections"
1132
- version = "1.5.0"
1106
+ version = "2.0.0"
1133
1107
  source = "registry+https://github.com/rust-lang/crates.io-index"
1134
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1108
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1135
1109
  dependencies = [
1136
1110
  "displaydoc",
1111
+ "potential_utf",
1137
1112
  "yoke",
1138
1113
  "zerofrom",
1139
1114
  "zerovec",
1140
1115
  ]
1141
1116
 
1142
1117
  [[package]]
1143
- name = "icu_locid"
1144
- version = "1.5.0"
1118
+ name = "icu_locale_core"
1119
+ version = "2.0.0"
1145
1120
  source = "registry+https://github.com/rust-lang/crates.io-index"
1146
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1121
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1147
1122
  dependencies = [
1148
1123
  "displaydoc",
1149
1124
  "litemap",
@@ -1152,31 +1127,11 @@ dependencies = [
1152
1127
  "zerovec",
1153
1128
  ]
1154
1129
 
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
1130
  [[package]]
1176
1131
  name = "icu_normalizer"
1177
- version = "1.5.0"
1132
+ version = "2.0.0"
1178
1133
  source = "registry+https://github.com/rust-lang/crates.io-index"
1179
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1134
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1180
1135
  dependencies = [
1181
1136
  "displaydoc",
1182
1137
  "icu_collections",
@@ -1184,72 +1139,59 @@ dependencies = [
1184
1139
  "icu_properties",
1185
1140
  "icu_provider",
1186
1141
  "smallvec",
1187
- "utf16_iter",
1188
- "utf8_iter",
1189
- "write16",
1190
1142
  "zerovec",
1191
1143
  ]
1192
1144
 
1193
1145
  [[package]]
1194
1146
  name = "icu_normalizer_data"
1195
- version = "1.5.1"
1147
+ version = "2.0.0"
1196
1148
  source = "registry+https://github.com/rust-lang/crates.io-index"
1197
- checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1149
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1198
1150
 
1199
1151
  [[package]]
1200
1152
  name = "icu_properties"
1201
- version = "1.5.1"
1153
+ version = "2.0.1"
1202
1154
  source = "registry+https://github.com/rust-lang/crates.io-index"
1203
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1155
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1204
1156
  dependencies = [
1205
1157
  "displaydoc",
1206
1158
  "icu_collections",
1207
- "icu_locid_transform",
1159
+ "icu_locale_core",
1208
1160
  "icu_properties_data",
1209
1161
  "icu_provider",
1210
- "tinystr",
1162
+ "potential_utf",
1163
+ "zerotrie",
1211
1164
  "zerovec",
1212
1165
  ]
1213
1166
 
1214
1167
  [[package]]
1215
1168
  name = "icu_properties_data"
1216
- version = "1.5.1"
1169
+ version = "2.0.1"
1217
1170
  source = "registry+https://github.com/rust-lang/crates.io-index"
1218
- checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1171
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1219
1172
 
1220
1173
  [[package]]
1221
1174
  name = "icu_provider"
1222
- version = "1.5.0"
1175
+ version = "2.0.0"
1223
1176
  source = "registry+https://github.com/rust-lang/crates.io-index"
1224
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1177
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1225
1178
  dependencies = [
1226
1179
  "displaydoc",
1227
- "icu_locid",
1228
- "icu_provider_macros",
1180
+ "icu_locale_core",
1229
1181
  "stable_deref_trait",
1230
1182
  "tinystr",
1231
1183
  "writeable",
1232
1184
  "yoke",
1233
1185
  "zerofrom",
1186
+ "zerotrie",
1234
1187
  "zerovec",
1235
1188
  ]
1236
1189
 
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
1190
  [[package]]
1249
1191
  name = "idna"
1250
- version = "1.0.3"
1192
+ version = "1.1.0"
1251
1193
  source = "registry+https://github.com/rust-lang/crates.io-index"
1252
- checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1194
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1253
1195
  dependencies = [
1254
1196
  "idna_adapter",
1255
1197
  "smallvec",
@@ -1258,9 +1200,9 @@ dependencies = [
1258
1200
 
1259
1201
  [[package]]
1260
1202
  name = "idna_adapter"
1261
- version = "1.2.0"
1203
+ version = "1.2.1"
1262
1204
  source = "registry+https://github.com/rust-lang/crates.io-index"
1263
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1205
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1264
1206
  dependencies = [
1265
1207
  "icu_normalizer",
1266
1208
  "icu_properties",
@@ -1268,13 +1210,14 @@ dependencies = [
1268
1210
 
1269
1211
  [[package]]
1270
1212
  name = "indexmap"
1271
- version = "2.9.0"
1213
+ version = "2.11.4"
1272
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1273
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1215
+ checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
1274
1216
  dependencies = [
1275
1217
  "equivalent",
1276
- "hashbrown 0.15.3",
1218
+ "hashbrown 0.16.0",
1277
1219
  "serde",
1220
+ "serde_core",
1278
1221
  ]
1279
1222
 
1280
1223
  [[package]]
@@ -1283,6 +1226,17 @@ version = "2.0.6"
1283
1226
  source = "registry+https://github.com/rust-lang/crates.io-index"
1284
1227
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1285
1228
 
1229
+ [[package]]
1230
+ name = "io-uring"
1231
+ version = "0.7.10"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
1234
+ dependencies = [
1235
+ "bitflags",
1236
+ "cfg-if",
1237
+ "libc",
1238
+ ]
1239
+
1286
1240
  [[package]]
1287
1241
  name = "ipnet"
1288
1242
  version = "2.11.0"
@@ -1290,10 +1244,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
1244
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1291
1245
 
1292
1246
  [[package]]
1293
- name = "is_terminal_polyfill"
1294
- version = "1.70.1"
1247
+ name = "iri-string"
1248
+ version = "0.7.8"
1295
1249
  source = "registry+https://github.com/rust-lang/crates.io-index"
1296
- checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1250
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1251
+ dependencies = [
1252
+ "memchr",
1253
+ "serde",
1254
+ ]
1297
1255
 
1298
1256
  [[package]]
1299
1257
  name = "itertools"
@@ -1330,45 +1288,21 @@ dependencies = [
1330
1288
  "libc",
1331
1289
  ]
1332
1290
 
1333
- [[package]]
1334
- name = "jiff"
1335
- version = "0.2.13"
1336
- source = "registry+https://github.com/rust-lang/crates.io-index"
1337
- checksum = "f02000660d30638906021176af16b17498bd0d12813dbfe7b276d8bc7f3c0806"
1338
- dependencies = [
1339
- "jiff-static",
1340
- "log",
1341
- "portable-atomic",
1342
- "portable-atomic-util",
1343
- "serde",
1344
- ]
1345
-
1346
- [[package]]
1347
- name = "jiff-static"
1348
- version = "0.2.13"
1349
- source = "registry+https://github.com/rust-lang/crates.io-index"
1350
- checksum = "f3c30758ddd7188629c6713fc45d1188af4f44c90582311d0c8d8c9907f60c48"
1351
- dependencies = [
1352
- "proc-macro2",
1353
- "quote",
1354
- "syn",
1355
- ]
1356
-
1357
1291
  [[package]]
1358
1292
  name = "jobserver"
1359
- version = "0.1.33"
1293
+ version = "0.1.34"
1360
1294
  source = "registry+https://github.com/rust-lang/crates.io-index"
1361
- checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1295
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1362
1296
  dependencies = [
1363
- "getrandom 0.3.2",
1297
+ "getrandom 0.3.3",
1364
1298
  "libc",
1365
1299
  ]
1366
1300
 
1367
1301
  [[package]]
1368
1302
  name = "js-sys"
1369
- version = "0.3.77"
1303
+ version = "0.3.80"
1370
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1371
- checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1305
+ checksum = "852f13bec5eba4ba9afbeb93fd7c13fe56147f055939ae21c43a29a0ecb2702e"
1372
1306
  dependencies = [
1373
1307
  "once_cell",
1374
1308
  "wasm-bindgen",
@@ -1380,23 +1314,29 @@ version = "0.2.2"
1380
1314
  source = "registry+https://github.com/rust-lang/crates.io-index"
1381
1315
  checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
1382
1316
 
1317
+ [[package]]
1318
+ name = "lazy_static"
1319
+ version = "1.5.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1322
+
1383
1323
  [[package]]
1384
1324
  name = "libc"
1385
- version = "0.2.172"
1325
+ version = "0.2.175"
1386
1326
  source = "registry+https://github.com/rust-lang/crates.io-index"
1387
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1327
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1388
1328
 
1389
1329
  [[package]]
1390
1330
  name = "libm"
1391
- version = "0.2.14"
1331
+ version = "0.2.15"
1392
1332
  source = "registry+https://github.com/rust-lang/crates.io-index"
1393
- checksum = "a25169bd5913a4b437588a7e3d127cd6e90127b60e0ffbd834a38f1599e016b8"
1333
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1394
1334
 
1395
1335
  [[package]]
1396
1336
  name = "libmimalloc-sys"
1397
- version = "0.1.42"
1337
+ version = "0.1.44"
1398
1338
  source = "registry+https://github.com/rust-lang/crates.io-index"
1399
- checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
1339
+ checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
1400
1340
  dependencies = [
1401
1341
  "cc",
1402
1342
  "libc",
@@ -1404,36 +1344,36 @@ dependencies = [
1404
1344
 
1405
1345
  [[package]]
1406
1346
  name = "libz-rs-sys"
1407
- version = "0.5.0"
1347
+ version = "0.5.2"
1408
1348
  source = "registry+https://github.com/rust-lang/crates.io-index"
1409
- checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
1349
+ checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
1410
1350
  dependencies = [
1411
1351
  "zlib-rs",
1412
1352
  ]
1413
1353
 
1414
1354
  [[package]]
1415
1355
  name = "linux-raw-sys"
1416
- version = "0.4.15"
1356
+ version = "0.11.0"
1417
1357
  source = "registry+https://github.com/rust-lang/crates.io-index"
1418
- checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1358
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1419
1359
 
1420
1360
  [[package]]
1421
- name = "linux-raw-sys"
1422
- version = "0.9.4"
1361
+ name = "litemap"
1362
+ version = "0.8.0"
1423
1363
  source = "registry+https://github.com/rust-lang/crates.io-index"
1424
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1364
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1425
1365
 
1426
1366
  [[package]]
1427
- name = "litemap"
1428
- version = "0.7.5"
1367
+ name = "litrs"
1368
+ version = "0.4.2"
1429
1369
  source = "registry+https://github.com/rust-lang/crates.io-index"
1430
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1370
+ checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed"
1431
1371
 
1432
1372
  [[package]]
1433
1373
  name = "lock_api"
1434
- version = "0.4.12"
1374
+ version = "0.4.13"
1435
1375
  source = "registry+https://github.com/rust-lang/crates.io-index"
1436
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1376
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1437
1377
  dependencies = [
1438
1378
  "autocfg",
1439
1379
  "scopeguard",
@@ -1441,9 +1381,15 @@ dependencies = [
1441
1381
 
1442
1382
  [[package]]
1443
1383
  name = "log"
1444
- version = "0.4.27"
1384
+ version = "0.4.28"
1445
1385
  source = "registry+https://github.com/rust-lang/crates.io-index"
1446
- checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1386
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1387
+
1388
+ [[package]]
1389
+ name = "lru-slab"
1390
+ version = "0.1.2"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1447
1393
 
1448
1394
  [[package]]
1449
1395
  name = "lz4"
@@ -1472,8 +1418,6 @@ dependencies = [
1472
1418
  "chrono-tz",
1473
1419
  "cimxml",
1474
1420
  "datalog",
1475
- "env_logger",
1476
- "log",
1477
1421
  "oxiri",
1478
1422
  "oxrdf",
1479
1423
  "oxrdfio",
@@ -1486,15 +1430,25 @@ dependencies = [
1486
1430
  "shacl",
1487
1431
  "templates",
1488
1432
  "thiserror",
1433
+ "tracing",
1489
1434
  "triplestore",
1490
1435
  "uuid",
1491
1436
  ]
1492
1437
 
1438
+ [[package]]
1439
+ name = "matchers"
1440
+ version = "0.2.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1443
+ dependencies = [
1444
+ "regex-automata",
1445
+ ]
1446
+
1493
1447
  [[package]]
1494
1448
  name = "matrixmultiply"
1495
- version = "0.3.9"
1449
+ version = "0.3.10"
1496
1450
  source = "registry+https://github.com/rust-lang/crates.io-index"
1497
- checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
1451
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1498
1452
  dependencies = [
1499
1453
  "autocfg",
1500
1454
  "rawpointer",
@@ -1502,15 +1456,15 @@ dependencies = [
1502
1456
 
1503
1457
  [[package]]
1504
1458
  name = "memchr"
1505
- version = "2.7.4"
1459
+ version = "2.7.5"
1506
1460
  source = "registry+https://github.com/rust-lang/crates.io-index"
1507
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1461
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1508
1462
 
1509
1463
  [[package]]
1510
1464
  name = "memmap2"
1511
- version = "0.9.5"
1465
+ version = "0.9.8"
1512
1466
  source = "registry+https://github.com/rust-lang/crates.io-index"
1513
- checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
1467
+ checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
1514
1468
  dependencies = [
1515
1469
  "libc",
1516
1470
  ]
@@ -1526,19 +1480,13 @@ dependencies = [
1526
1480
 
1527
1481
  [[package]]
1528
1482
  name = "mimalloc"
1529
- version = "0.1.46"
1483
+ version = "0.1.48"
1530
1484
  source = "registry+https://github.com/rust-lang/crates.io-index"
1531
- checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
1485
+ checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
1532
1486
  dependencies = [
1533
1487
  "libmimalloc-sys",
1534
1488
  ]
1535
1489
 
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
-
1542
1490
  [[package]]
1543
1491
  name = "minimal-lexical"
1544
1492
  version = "0.2.1"
@@ -1547,22 +1495,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1547
1495
 
1548
1496
  [[package]]
1549
1497
  name = "miniz_oxide"
1550
- version = "0.8.8"
1498
+ version = "0.8.9"
1551
1499
  source = "registry+https://github.com/rust-lang/crates.io-index"
1552
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1500
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1553
1501
  dependencies = [
1554
1502
  "adler2",
1555
1503
  ]
1556
1504
 
1557
1505
  [[package]]
1558
1506
  name = "mio"
1559
- version = "1.0.3"
1507
+ version = "1.0.4"
1560
1508
  source = "registry+https://github.com/rust-lang/crates.io-index"
1561
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1509
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1562
1510
  dependencies = [
1563
1511
  "libc",
1564
- "wasi 0.11.0+wasi-snapshot-preview1",
1565
- "windows-sys 0.52.0",
1512
+ "wasi 0.11.1+wasi-snapshot-preview1",
1513
+ "windows-sys 0.59.0",
1566
1514
  ]
1567
1515
 
1568
1516
  [[package]]
@@ -1580,6 +1528,12 @@ dependencies = [
1580
1528
  "rawpointer",
1581
1529
  ]
1582
1530
 
1531
+ [[package]]
1532
+ name = "nohash-hasher"
1533
+ version = "0.2.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1536
+
1583
1537
  [[package]]
1584
1538
  name = "nom"
1585
1539
  version = "7.1.3"
@@ -1600,12 +1554,12 @@ dependencies = [
1600
1554
  ]
1601
1555
 
1602
1556
  [[package]]
1603
- name = "ntapi"
1604
- version = "0.4.1"
1557
+ name = "nu-ansi-term"
1558
+ version = "0.50.1"
1605
1559
  source = "registry+https://github.com/rust-lang/crates.io-index"
1606
- checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1560
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1607
1561
  dependencies = [
1608
- "winapi",
1562
+ "windows-sys 0.52.0",
1609
1563
  ]
1610
1564
 
1611
1565
  [[package]]
@@ -1648,9 +1602,9 @@ dependencies = [
1648
1602
 
1649
1603
  [[package]]
1650
1604
  name = "num_cpus"
1651
- version = "1.16.0"
1605
+ version = "1.17.0"
1652
1606
  source = "registry+https://github.com/rust-lang/crates.io-index"
1653
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1607
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1654
1608
  dependencies = [
1655
1609
  "hermit-abi",
1656
1610
  "libc",
@@ -1667,9 +1621,9 @@ dependencies = [
1667
1621
 
1668
1622
  [[package]]
1669
1623
  name = "object_store"
1670
- version = "0.12.0"
1624
+ version = "0.12.3"
1671
1625
  source = "registry+https://github.com/rust-lang/crates.io-index"
1672
- checksum = "e9ce831b09395f933addbc56d894d889e4b226eba304d4e7adbab591e26daf1e"
1626
+ checksum = "efc4f07659e11cd45a341cd24d71e683e3be65d9ff1f8150061678fe60437496"
1673
1627
  dependencies = [
1674
1628
  "async-trait",
1675
1629
  "base64",
@@ -1684,8 +1638,8 @@ dependencies = [
1684
1638
  "itertools",
1685
1639
  "parking_lot",
1686
1640
  "percent-encoding",
1687
- "quick-xml",
1688
- "rand 0.8.5",
1641
+ "quick-xml 0.38.3",
1642
+ "rand 0.9.2",
1689
1643
  "reqwest",
1690
1644
  "ring",
1691
1645
  "serde",
@@ -1696,6 +1650,8 @@ dependencies = [
1696
1650
  "tracing",
1697
1651
  "url",
1698
1652
  "walkdir",
1653
+ "wasm-bindgen-futures",
1654
+ "web-time",
1699
1655
  ]
1700
1656
 
1701
1657
  [[package]]
@@ -1725,6 +1681,18 @@ version = "0.2.11"
1725
1681
  source = "registry+https://github.com/rust-lang/crates.io-index"
1726
1682
  checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
1727
1683
 
1684
+ [[package]]
1685
+ name = "oxjsonld"
1686
+ version = "0.1.0"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "13a1a66dc569350f3f4e5eff8a8e1a72b0c9e6ad395bb5805493cb7a2fda185f"
1689
+ dependencies = [
1690
+ "json-event-parser",
1691
+ "oxiri",
1692
+ "oxrdf",
1693
+ "thiserror",
1694
+ ]
1695
+
1728
1696
  [[package]]
1729
1697
  name = "oxrdf"
1730
1698
  version = "0.2.4"
@@ -1740,10 +1708,11 @@ dependencies = [
1740
1708
 
1741
1709
  [[package]]
1742
1710
  name = "oxrdfio"
1743
- version = "0.1.7"
1711
+ version = "0.1.8"
1744
1712
  source = "registry+https://github.com/rust-lang/crates.io-index"
1745
- checksum = "47d45d81e8e5313e13f88da6c040f5edcd5aa48e91d1cdf0972f5bc79362890d"
1713
+ checksum = "14d33dd87769786a0bb7de342865e33bf0c6e9872fa76f1ede23e944fdc77898"
1746
1714
  dependencies = [
1715
+ "oxjsonld",
1747
1716
  "oxrdf",
1748
1717
  "oxrdfxml",
1749
1718
  "oxttl",
@@ -1752,14 +1721,14 @@ dependencies = [
1752
1721
 
1753
1722
  [[package]]
1754
1723
  name = "oxrdfxml"
1755
- version = "0.1.6"
1724
+ version = "0.1.7"
1756
1725
  source = "registry+https://github.com/rust-lang/crates.io-index"
1757
- checksum = "7e00a36021b71d74281cf9ffbbda57210bb9cb84b7f28bda50a3ee9641b6ce5d"
1726
+ checksum = "d8d4bf9c5331127f01efbd1245d90fd75b7c546a97cb3e95461121ce1ad5b1c8"
1758
1727
  dependencies = [
1759
1728
  "oxilangtag",
1760
1729
  "oxiri",
1761
1730
  "oxrdf",
1762
- "quick-xml",
1731
+ "quick-xml 0.37.5",
1763
1732
  "thiserror",
1764
1733
  ]
1765
1734
 
@@ -1774,9 +1743,9 @@ dependencies = [
1774
1743
 
1775
1744
  [[package]]
1776
1745
  name = "oxttl"
1777
- version = "0.1.7"
1746
+ version = "0.1.8"
1778
1747
  source = "registry+https://github.com/rust-lang/crates.io-index"
1779
- checksum = "2bc2f05b9179f1033582fe3ae58a96cb4311dd1a2116791c3236117d5427f275"
1748
+ checksum = "0d385f1776d7cace455ef6b7c54407838eff902ca897303d06eb12a26f4cf8a0"
1780
1749
  dependencies = [
1781
1750
  "memchr",
1782
1751
  "oxilangtag",
@@ -1793,9 +1762,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1793
1762
 
1794
1763
  [[package]]
1795
1764
  name = "parking_lot"
1796
- version = "0.12.3"
1765
+ version = "0.12.4"
1797
1766
  source = "registry+https://github.com/rust-lang/crates.io-index"
1798
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1767
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1799
1768
  dependencies = [
1800
1769
  "lock_api",
1801
1770
  "parking_lot_core",
@@ -1803,9 +1772,9 @@ dependencies = [
1803
1772
 
1804
1773
  [[package]]
1805
1774
  name = "parking_lot_core"
1806
- version = "0.9.10"
1775
+ version = "0.9.11"
1807
1776
  source = "registry+https://github.com/rust-lang/crates.io-index"
1808
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1777
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1809
1778
  dependencies = [
1810
1779
  "cfg-if",
1811
1780
  "libc",
@@ -1814,15 +1783,6 @@ dependencies = [
1814
1783
  "windows-targets 0.52.6",
1815
1784
  ]
1816
1785
 
1817
- [[package]]
1818
- name = "parse-zoneinfo"
1819
- version = "0.3.1"
1820
- source = "registry+https://github.com/rust-lang/crates.io-index"
1821
- checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
1822
- dependencies = [
1823
- "regex",
1824
- ]
1825
-
1826
1786
  [[package]]
1827
1787
  name = "paste"
1828
1788
  version = "1.0.15"
@@ -1858,44 +1818,24 @@ checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
1858
1818
 
1859
1819
  [[package]]
1860
1820
  name = "percent-encoding"
1861
- version = "2.3.1"
1821
+ version = "2.3.2"
1862
1822
  source = "registry+https://github.com/rust-lang/crates.io-index"
1863
- checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1823
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1864
1824
 
1865
1825
  [[package]]
1866
1826
  name = "phf"
1867
- version = "0.11.3"
1868
- source = "registry+https://github.com/rust-lang/crates.io-index"
1869
- checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1870
- dependencies = [
1871
- "phf_shared",
1872
- ]
1873
-
1874
- [[package]]
1875
- name = "phf_codegen"
1876
- version = "0.11.3"
1827
+ version = "0.12.1"
1877
1828
  source = "registry+https://github.com/rust-lang/crates.io-index"
1878
- checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1829
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1879
1830
  dependencies = [
1880
- "phf_generator",
1881
1831
  "phf_shared",
1882
1832
  ]
1883
1833
 
1884
- [[package]]
1885
- name = "phf_generator"
1886
- version = "0.11.3"
1887
- source = "registry+https://github.com/rust-lang/crates.io-index"
1888
- checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1889
- dependencies = [
1890
- "phf_shared",
1891
- "rand 0.8.5",
1892
- ]
1893
-
1894
1834
  [[package]]
1895
1835
  name = "phf_shared"
1896
- version = "0.11.3"
1836
+ version = "0.12.1"
1897
1837
  source = "registry+https://github.com/rust-lang/crates.io-index"
1898
- checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1838
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1899
1839
  dependencies = [
1900
1840
  "siphasher",
1901
1841
  ]
@@ -1920,19 +1860,22 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1920
1860
 
1921
1861
  [[package]]
1922
1862
  name = "planus"
1923
- version = "0.3.1"
1863
+ version = "1.1.1"
1924
1864
  source = "registry+https://github.com/rust-lang/crates.io-index"
1925
- checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
1865
+ checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
1926
1866
  dependencies = [
1927
1867
  "array-init-cursor",
1868
+ "hashbrown 0.15.5",
1928
1869
  ]
1929
1870
 
1930
1871
  [[package]]
1931
1872
  name = "polars"
1932
- version = "0.48.1"
1933
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1873
+ version = "0.51.0"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "a5f7feb5d56b954e691dff22a8b2d78d77433dcc93c35fe21c3777fdc121b697"
1934
1876
  dependencies = [
1935
1877
  "getrandom 0.2.16",
1878
+ "getrandom 0.3.3",
1936
1879
  "polars-arrow",
1937
1880
  "polars-core",
1938
1881
  "polars-error",
@@ -1949,8 +1892,9 @@ dependencies = [
1949
1892
 
1950
1893
  [[package]]
1951
1894
  name = "polars-arrow"
1952
- version = "0.48.1"
1953
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1895
+ version = "0.51.0"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "32b4fed2343961b3eea3db2cee165540c3e1ad9d5782350cc55a9e76cf440148"
1954
1898
  dependencies = [
1955
1899
  "atoi_simd",
1956
1900
  "bitflags",
@@ -1961,7 +1905,8 @@ dependencies = [
1961
1905
  "either",
1962
1906
  "ethnum",
1963
1907
  "getrandom 0.2.16",
1964
- "hashbrown 0.15.3",
1908
+ "getrandom 0.3.3",
1909
+ "hashbrown 0.15.5",
1965
1910
  "itoa",
1966
1911
  "lz4",
1967
1912
  "num-traits",
@@ -1979,9 +1924,9 @@ dependencies = [
1979
1924
 
1980
1925
  [[package]]
1981
1926
  name = "polars-arrow-format"
1982
- version = "0.1.0"
1927
+ version = "0.2.1"
1983
1928
  source = "registry+https://github.com/rust-lang/crates.io-index"
1984
- checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
1929
+ checksum = "a556ac0ee744e61e167f34c1eb0013ce740e0ee6cd8c158b2ec0b518f10e6675"
1985
1930
  dependencies = [
1986
1931
  "planus",
1987
1932
  "serde",
@@ -1989,21 +1934,22 @@ dependencies = [
1989
1934
 
1990
1935
  [[package]]
1991
1936
  name = "polars-compute"
1992
- version = "0.48.1"
1993
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1937
+ version = "0.51.0"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "138785beda4e4a90a025219f09d0d15a671b2be9091513ede58e05db6ad4413f"
1994
1940
  dependencies = [
1995
1941
  "atoi_simd",
1996
1942
  "bytemuck",
1997
1943
  "chrono",
1998
1944
  "either",
1999
1945
  "fast-float2",
2000
- "hashbrown 0.15.3",
1946
+ "hashbrown 0.15.5",
2001
1947
  "itoa",
2002
1948
  "num-traits",
2003
1949
  "polars-arrow",
2004
1950
  "polars-error",
2005
1951
  "polars-utils",
2006
- "rand 0.8.5",
1952
+ "rand 0.9.2",
2007
1953
  "ryu",
2008
1954
  "serde",
2009
1955
  "skiplist",
@@ -2014,41 +1960,60 @@ dependencies = [
2014
1960
 
2015
1961
  [[package]]
2016
1962
  name = "polars-core"
2017
- version = "0.48.1"
2018
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
1963
+ version = "0.51.0"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "e77b1f08ef6dbb032bb1d0d3365464be950df9905f6827a95b24c4ca5518901d"
2019
1966
  dependencies = [
2020
1967
  "bitflags",
1968
+ "boxcar",
2021
1969
  "bytemuck",
2022
1970
  "chrono",
2023
1971
  "chrono-tz",
2024
1972
  "comfy-table",
2025
1973
  "either",
2026
- "hashbrown 0.14.5",
2027
- "hashbrown 0.15.3",
1974
+ "hashbrown 0.15.5",
2028
1975
  "indexmap",
2029
1976
  "itoa",
2030
1977
  "num-traits",
2031
1978
  "polars-arrow",
2032
1979
  "polars-compute",
1980
+ "polars-dtype",
2033
1981
  "polars-error",
2034
1982
  "polars-row",
2035
1983
  "polars-schema",
2036
1984
  "polars-utils",
2037
- "rand 0.8.5",
1985
+ "rand 0.9.2",
2038
1986
  "rand_distr",
2039
1987
  "rayon",
2040
1988
  "regex",
2041
1989
  "serde",
2042
1990
  "serde_json",
2043
1991
  "strum_macros",
1992
+ "uuid",
2044
1993
  "version_check",
2045
1994
  "xxhash-rust",
2046
1995
  ]
2047
1996
 
1997
+ [[package]]
1998
+ name = "polars-dtype"
1999
+ version = "0.51.0"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "89c43d0ea57168be4546c4d8064479ed8b29a9c79c31a0c7c367ee734b9b7158"
2002
+ dependencies = [
2003
+ "boxcar",
2004
+ "hashbrown 0.15.5",
2005
+ "polars-arrow",
2006
+ "polars-error",
2007
+ "polars-utils",
2008
+ "serde",
2009
+ "uuid",
2010
+ ]
2011
+
2048
2012
  [[package]]
2049
2013
  name = "polars-error"
2050
- version = "0.48.1"
2051
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2014
+ version = "0.51.0"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "b9cb5d98f59f8b94673ee391840440ad9f0d2170afced95fc98aa86f895563c0"
2052
2017
  dependencies = [
2053
2018
  "object_store",
2054
2019
  "parking_lot",
@@ -2060,11 +2025,12 @@ dependencies = [
2060
2025
 
2061
2026
  [[package]]
2062
2027
  name = "polars-expr"
2063
- version = "0.48.1"
2064
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2028
+ version = "0.51.0"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "343931b818cf136349135ba11dbc18c27683b52c3477b1ba8ca606cf5ab1965c"
2065
2031
  dependencies = [
2066
2032
  "bitflags",
2067
- "hashbrown 0.15.3",
2033
+ "hashbrown 0.15.5",
2068
2034
  "num-traits",
2069
2035
  "polars-arrow",
2070
2036
  "polars-compute",
@@ -2075,15 +2041,16 @@ dependencies = [
2075
2041
  "polars-row",
2076
2042
  "polars-time",
2077
2043
  "polars-utils",
2078
- "rand 0.8.5",
2044
+ "rand 0.9.2",
2079
2045
  "rayon",
2080
2046
  "recursive",
2081
2047
  ]
2082
2048
 
2083
2049
  [[package]]
2084
2050
  name = "polars-io"
2085
- version = "0.48.1"
2086
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2051
+ version = "0.51.0"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "10388c64b8155122488229a881d1c6f4fdc393bc988e764ab51b182fcb2307e4"
2087
2054
  dependencies = [
2088
2055
  "async-trait",
2089
2056
  "atoi_simd",
@@ -2095,7 +2062,7 @@ dependencies = [
2095
2062
  "fs4",
2096
2063
  "futures",
2097
2064
  "glob",
2098
- "hashbrown 0.15.3",
2065
+ "hashbrown 0.15.5",
2099
2066
  "home",
2100
2067
  "itoa",
2101
2068
  "memchr",
@@ -2125,13 +2092,14 @@ dependencies = [
2125
2092
 
2126
2093
  [[package]]
2127
2094
  name = "polars-json"
2128
- version = "0.48.1"
2129
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2095
+ version = "0.51.0"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "b26d1a04292a82183c8eba94fdf1584f200bfac5ac2f4a6c5652c8c8ed3bb41c"
2130
2098
  dependencies = [
2131
2099
  "chrono",
2132
2100
  "chrono-tz",
2133
2101
  "fallible-streaming-iterator",
2134
- "hashbrown 0.15.3",
2102
+ "hashbrown 0.15.5",
2135
2103
  "indexmap",
2136
2104
  "itoa",
2137
2105
  "num-traits",
@@ -2146,8 +2114,9 @@ dependencies = [
2146
2114
 
2147
2115
  [[package]]
2148
2116
  name = "polars-lazy"
2149
- version = "0.48.1"
2150
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2117
+ version = "0.51.0"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "0fb6e2c6c2fa4ea0c660df1c06cf56960c81e7c2683877995bae3d4e3d408147"
2151
2120
  dependencies = [
2152
2121
  "bitflags",
2153
2122
  "chrono",
@@ -2160,7 +2129,6 @@ dependencies = [
2160
2129
  "polars-io",
2161
2130
  "polars-mem-engine",
2162
2131
  "polars-ops",
2163
- "polars-pipe",
2164
2132
  "polars-plan",
2165
2133
  "polars-stream",
2166
2134
  "polars-time",
@@ -2171,8 +2139,9 @@ dependencies = [
2171
2139
 
2172
2140
  [[package]]
2173
2141
  name = "polars-mem-engine"
2174
- version = "0.48.1"
2175
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2142
+ version = "0.51.0"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "20a856e98e253587c28d8132a5e7e5a75cb2c44731ca090f1481d45f1d123771"
2176
2145
  dependencies = [
2177
2146
  "futures",
2178
2147
  "memmap2",
@@ -2192,8 +2161,9 @@ dependencies = [
2192
2161
 
2193
2162
  [[package]]
2194
2163
  name = "polars-ops"
2195
- version = "0.48.1"
2196
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2164
+ version = "0.51.0"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "acf6062173fdc9ba05775548beb66e76643a148d9aeadc9984ed712bc4babd76"
2197
2167
  dependencies = [
2198
2168
  "argminmax",
2199
2169
  "base64",
@@ -2201,7 +2171,7 @@ dependencies = [
2201
2171
  "chrono",
2202
2172
  "chrono-tz",
2203
2173
  "either",
2204
- "hashbrown 0.15.3",
2174
+ "hashbrown 0.15.5",
2205
2175
  "hex",
2206
2176
  "indexmap",
2207
2177
  "libm",
@@ -2213,6 +2183,7 @@ dependencies = [
2213
2183
  "polars-error",
2214
2184
  "polars-schema",
2215
2185
  "polars-utils",
2186
+ "rand 0.9.2",
2216
2187
  "rayon",
2217
2188
  "regex",
2218
2189
  "regex-syntax",
@@ -2224,8 +2195,9 @@ dependencies = [
2224
2195
 
2225
2196
  [[package]]
2226
2197
  name = "polars-parquet"
2227
- version = "0.48.1"
2228
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2198
+ version = "0.51.0"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "cc1d769180dec070df0dc4b89299b364bf2cfe32b218ecc4ddd8f1a49ae60669"
2229
2201
  dependencies = [
2230
2202
  "async-stream",
2231
2203
  "base64",
@@ -2234,7 +2206,7 @@ dependencies = [
2234
2206
  "ethnum",
2235
2207
  "flate2",
2236
2208
  "futures",
2237
- "hashbrown 0.15.3",
2209
+ "hashbrown 0.15.5",
2238
2210
  "lz4",
2239
2211
  "num-traits",
2240
2212
  "polars-arrow",
@@ -2259,35 +2231,11 @@ dependencies = [
2259
2231
  "futures",
2260
2232
  ]
2261
2233
 
2262
- [[package]]
2263
- name = "polars-pipe"
2264
- version = "0.48.1"
2265
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2266
- dependencies = [
2267
- "crossbeam-channel",
2268
- "crossbeam-queue",
2269
- "enum_dispatch",
2270
- "futures",
2271
- "hashbrown 0.15.3",
2272
- "num-traits",
2273
- "polars-arrow",
2274
- "polars-compute",
2275
- "polars-core",
2276
- "polars-expr",
2277
- "polars-io",
2278
- "polars-ops",
2279
- "polars-plan",
2280
- "polars-row",
2281
- "polars-utils",
2282
- "rayon",
2283
- "uuid",
2284
- "version_check",
2285
- ]
2286
-
2287
2234
  [[package]]
2288
2235
  name = "polars-plan"
2289
- version = "0.48.1"
2290
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2236
+ version = "0.51.0"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "1cd3a2e33ae4484fe407ab2d2ba5684f0889d1ccf3ad6b844103c03638e6d0a0"
2291
2239
  dependencies = [
2292
2240
  "bitflags",
2293
2241
  "bytemuck",
@@ -2296,13 +2244,14 @@ dependencies = [
2296
2244
  "chrono-tz",
2297
2245
  "either",
2298
2246
  "futures",
2299
- "hashbrown 0.15.3",
2247
+ "hashbrown 0.15.5",
2300
2248
  "memmap2",
2301
2249
  "num-traits",
2302
2250
  "percent-encoding",
2303
2251
  "polars-arrow",
2304
2252
  "polars-compute",
2305
2253
  "polars-core",
2254
+ "polars-error",
2306
2255
  "polars-io",
2307
2256
  "polars-ops",
2308
2257
  "polars-parquet",
@@ -2311,27 +2260,31 @@ dependencies = [
2311
2260
  "rayon",
2312
2261
  "recursive",
2313
2262
  "regex",
2263
+ "sha2",
2314
2264
  "strum_macros",
2315
2265
  "version_check",
2316
2266
  ]
2317
2267
 
2318
2268
  [[package]]
2319
2269
  name = "polars-row"
2320
- version = "0.48.1"
2321
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2270
+ version = "0.51.0"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "18734f17e0e348724df3ae65f3ee744c681117c04b041cac969dfceb05edabc0"
2322
2273
  dependencies = [
2323
2274
  "bitflags",
2324
2275
  "bytemuck",
2325
2276
  "polars-arrow",
2326
2277
  "polars-compute",
2278
+ "polars-dtype",
2327
2279
  "polars-error",
2328
2280
  "polars-utils",
2329
2281
  ]
2330
2282
 
2331
2283
  [[package]]
2332
2284
  name = "polars-schema"
2333
- version = "0.48.1"
2334
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2285
+ version = "0.51.0"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "8e6c1ab13e04d5167661a9854ed1ea0482b2ed9b8a0f1118dabed7cd994a85e3"
2335
2288
  dependencies = [
2336
2289
  "indexmap",
2337
2290
  "polars-error",
@@ -2342,8 +2295,9 @@ dependencies = [
2342
2295
 
2343
2296
  [[package]]
2344
2297
  name = "polars-sql"
2345
- version = "0.48.1"
2346
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2298
+ version = "0.51.0"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "c4e7766da02cc1d464994404d3e88a7a0ccd4933df3627c325480fbd9bbc0a11"
2347
2301
  dependencies = [
2348
2302
  "bitflags",
2349
2303
  "hex",
@@ -2354,7 +2308,7 @@ dependencies = [
2354
2308
  "polars-plan",
2355
2309
  "polars-time",
2356
2310
  "polars-utils",
2357
- "rand 0.8.5",
2311
+ "rand 0.9.2",
2358
2312
  "regex",
2359
2313
  "serde",
2360
2314
  "sqlparser",
@@ -2362,8 +2316,9 @@ dependencies = [
2362
2316
 
2363
2317
  [[package]]
2364
2318
  name = "polars-stream"
2365
- version = "0.48.1"
2366
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2319
+ version = "0.51.0"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "31f6c6ca1ea01f9dea424d167e4f33f5ec44cd67fbfac9efd40575ed20521f14"
2367
2322
  dependencies = [
2368
2323
  "async-channel",
2369
2324
  "async-trait",
@@ -2388,18 +2343,20 @@ dependencies = [
2388
2343
  "polars-parquet",
2389
2344
  "polars-plan",
2390
2345
  "polars-utils",
2391
- "rand 0.8.5",
2346
+ "rand 0.9.2",
2392
2347
  "rayon",
2393
2348
  "recursive",
2394
2349
  "slotmap",
2395
2350
  "tokio",
2351
+ "tokio-util",
2396
2352
  "version_check",
2397
2353
  ]
2398
2354
 
2399
2355
  [[package]]
2400
2356
  name = "polars-time"
2401
- version = "0.48.1"
2402
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2357
+ version = "0.51.0"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "f6a3a6e279a7a984a0b83715660f9e880590c6129ec2104396bfa710bcd76dee"
2403
2360
  dependencies = [
2404
2361
  "atoi_simd",
2405
2362
  "bytemuck",
@@ -2420,40 +2377,42 @@ dependencies = [
2420
2377
 
2421
2378
  [[package]]
2422
2379
  name = "polars-utils"
2423
- version = "0.48.1"
2424
- source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
2380
+ version = "0.51.0"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "57b267021b0e5422d7fbc70fd79e51b9f9a8466c585779373a18b0199e973f29"
2425
2383
  dependencies = [
2426
2384
  "bincode",
2427
2385
  "bytemuck",
2428
2386
  "bytes",
2429
2387
  "compact_str",
2388
+ "either",
2430
2389
  "flate2",
2431
2390
  "foldhash",
2432
- "hashbrown 0.15.3",
2391
+ "hashbrown 0.15.5",
2433
2392
  "indexmap",
2434
2393
  "libc",
2435
2394
  "memmap2",
2436
2395
  "num-traits",
2437
2396
  "polars-error",
2438
- "rand 0.8.5",
2397
+ "rand 0.9.2",
2439
2398
  "raw-cpuid",
2440
2399
  "rayon",
2441
2400
  "regex",
2442
2401
  "rmp-serde",
2443
2402
  "serde",
2444
- "serde_ignored",
2445
2403
  "serde_json",
2404
+ "serde_stacker",
2446
2405
  "slotmap",
2447
2406
  "stacker",
2448
- "sysinfo",
2407
+ "uuid",
2449
2408
  "version_check",
2450
2409
  ]
2451
2410
 
2452
2411
  [[package]]
2453
2412
  name = "portable-atomic"
2454
- version = "1.11.0"
2413
+ version = "1.11.1"
2455
2414
  source = "registry+https://github.com/rust-lang/crates.io-index"
2456
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2415
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2457
2416
 
2458
2417
  [[package]]
2459
2418
  name = "portable-atomic-util"
@@ -2464,29 +2423,38 @@ dependencies = [
2464
2423
  "portable-atomic",
2465
2424
  ]
2466
2425
 
2426
+ [[package]]
2427
+ name = "potential_utf"
2428
+ version = "0.1.3"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2431
+ dependencies = [
2432
+ "zerovec",
2433
+ ]
2434
+
2467
2435
  [[package]]
2468
2436
  name = "ppv-lite86"
2469
2437
  version = "0.2.21"
2470
2438
  source = "registry+https://github.com/rust-lang/crates.io-index"
2471
2439
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2472
2440
  dependencies = [
2473
- "zerocopy 0.8.25",
2441
+ "zerocopy",
2474
2442
  ]
2475
2443
 
2476
2444
  [[package]]
2477
2445
  name = "proc-macro-crate"
2478
- version = "3.3.0"
2446
+ version = "3.4.0"
2479
2447
  source = "registry+https://github.com/rust-lang/crates.io-index"
2480
- checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2448
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2481
2449
  dependencies = [
2482
2450
  "toml_edit",
2483
2451
  ]
2484
2452
 
2485
2453
  [[package]]
2486
2454
  name = "proc-macro2"
2487
- version = "1.0.95"
2455
+ version = "1.0.101"
2488
2456
  source = "registry+https://github.com/rust-lang/crates.io-index"
2489
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2457
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2490
2458
  dependencies = [
2491
2459
  "unicode-ident",
2492
2460
  ]
@@ -2502,7 +2470,7 @@ dependencies = [
2502
2470
 
2503
2471
  [[package]]
2504
2472
  name = "py_maplib"
2505
- version = "0.15.33"
2473
+ version = "0.17.10"
2506
2474
  dependencies = [
2507
2475
  "chrono",
2508
2476
  "cimxml",
@@ -2515,12 +2483,14 @@ dependencies = [
2515
2483
  "polars",
2516
2484
  "pydf_io",
2517
2485
  "pyo3",
2518
- "pyo3-log",
2519
2486
  "report_mapping",
2520
2487
  "representation",
2521
2488
  "shacl",
2522
2489
  "templates",
2523
2490
  "thiserror",
2491
+ "tracing",
2492
+ "tracing-log",
2493
+ "tracing-subscriber",
2524
2494
  "triplestore",
2525
2495
  "uuid",
2526
2496
  ]
@@ -2538,11 +2508,10 @@ dependencies = [
2538
2508
 
2539
2509
  [[package]]
2540
2510
  name = "pyo3"
2541
- version = "0.24.2"
2511
+ version = "0.25.1"
2542
2512
  source = "registry+https://github.com/rust-lang/crates.io-index"
2543
- checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2513
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
2544
2514
  dependencies = [
2545
- "cfg-if",
2546
2515
  "chrono",
2547
2516
  "chrono-tz",
2548
2517
  "indoc",
@@ -2558,9 +2527,9 @@ dependencies = [
2558
2527
 
2559
2528
  [[package]]
2560
2529
  name = "pyo3-build-config"
2561
- version = "0.24.2"
2530
+ version = "0.25.1"
2562
2531
  source = "registry+https://github.com/rust-lang/crates.io-index"
2563
- checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
2532
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
2564
2533
  dependencies = [
2565
2534
  "once_cell",
2566
2535
  "target-lexicon",
@@ -2568,30 +2537,19 @@ dependencies = [
2568
2537
 
2569
2538
  [[package]]
2570
2539
  name = "pyo3-ffi"
2571
- version = "0.24.2"
2540
+ version = "0.25.1"
2572
2541
  source = "registry+https://github.com/rust-lang/crates.io-index"
2573
- checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
2542
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
2574
2543
  dependencies = [
2575
2544
  "libc",
2576
2545
  "pyo3-build-config",
2577
2546
  ]
2578
2547
 
2579
- [[package]]
2580
- name = "pyo3-log"
2581
- version = "0.12.3"
2582
- source = "registry+https://github.com/rust-lang/crates.io-index"
2583
- checksum = "7079e412e909af5d6be7c04a7f29f6a2837a080410e1c529c9dee2c367383db4"
2584
- dependencies = [
2585
- "arc-swap",
2586
- "log",
2587
- "pyo3",
2588
- ]
2589
-
2590
2548
  [[package]]
2591
2549
  name = "pyo3-macros"
2592
- version = "0.24.2"
2550
+ version = "0.25.1"
2593
2551
  source = "registry+https://github.com/rust-lang/crates.io-index"
2594
- checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
2552
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
2595
2553
  dependencies = [
2596
2554
  "proc-macro2",
2597
2555
  "pyo3-macros-backend",
@@ -2601,9 +2559,9 @@ dependencies = [
2601
2559
 
2602
2560
  [[package]]
2603
2561
  name = "pyo3-macros-backend"
2604
- version = "0.24.2"
2562
+ version = "0.25.1"
2605
2563
  source = "registry+https://github.com/rust-lang/crates.io-index"
2606
- checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2564
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
2607
2565
  dependencies = [
2608
2566
  "heck",
2609
2567
  "proc-macro2",
@@ -2616,7 +2574,6 @@ dependencies = [
2616
2574
  name = "query_processing"
2617
2575
  version = "0.3.12"
2618
2576
  dependencies = [
2619
- "log",
2620
2577
  "oxrdf",
2621
2578
  "polars",
2622
2579
  "rayon",
@@ -2624,6 +2581,7 @@ dependencies = [
2624
2581
  "rstest",
2625
2582
  "spargebra",
2626
2583
  "thiserror",
2584
+ "tracing",
2627
2585
  "uuid",
2628
2586
  ]
2629
2587
 
@@ -2632,6 +2590,15 @@ name = "quick-xml"
2632
2590
  version = "0.37.5"
2633
2591
  source = "registry+https://github.com/rust-lang/crates.io-index"
2634
2592
  checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2593
+ dependencies = [
2594
+ "memchr",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "quick-xml"
2599
+ version = "0.38.3"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
2635
2602
  dependencies = [
2636
2603
  "memchr",
2637
2604
  "serde",
@@ -2639,9 +2606,9 @@ dependencies = [
2639
2606
 
2640
2607
  [[package]]
2641
2608
  name = "quinn"
2642
- version = "0.11.7"
2609
+ version = "0.11.9"
2643
2610
  source = "registry+https://github.com/rust-lang/crates.io-index"
2644
- checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2611
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2645
2612
  dependencies = [
2646
2613
  "bytes",
2647
2614
  "cfg_aliases",
@@ -2659,13 +2626,14 @@ dependencies = [
2659
2626
 
2660
2627
  [[package]]
2661
2628
  name = "quinn-proto"
2662
- version = "0.11.11"
2629
+ version = "0.11.13"
2663
2630
  source = "registry+https://github.com/rust-lang/crates.io-index"
2664
- checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
2631
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2665
2632
  dependencies = [
2666
2633
  "bytes",
2667
- "getrandom 0.3.2",
2668
- "rand 0.9.1",
2634
+ "getrandom 0.3.3",
2635
+ "lru-slab",
2636
+ "rand 0.9.2",
2669
2637
  "ring",
2670
2638
  "rustc-hash",
2671
2639
  "rustls",
@@ -2679,16 +2647,16 @@ dependencies = [
2679
2647
 
2680
2648
  [[package]]
2681
2649
  name = "quinn-udp"
2682
- version = "0.5.12"
2650
+ version = "0.5.14"
2683
2651
  source = "registry+https://github.com/rust-lang/crates.io-index"
2684
- checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
2652
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2685
2653
  dependencies = [
2686
2654
  "cfg_aliases",
2687
2655
  "libc",
2688
2656
  "once_cell",
2689
2657
  "socket2",
2690
2658
  "tracing",
2691
- "windows-sys 0.59.0",
2659
+ "windows-sys 0.60.2",
2692
2660
  ]
2693
2661
 
2694
2662
  [[package]]
@@ -2702,9 +2670,9 @@ dependencies = [
2702
2670
 
2703
2671
  [[package]]
2704
2672
  name = "r-efi"
2705
- version = "5.2.0"
2673
+ version = "5.3.0"
2706
2674
  source = "registry+https://github.com/rust-lang/crates.io-index"
2707
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2675
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2708
2676
 
2709
2677
  [[package]]
2710
2678
  name = "rand"
@@ -2719,9 +2687,9 @@ dependencies = [
2719
2687
 
2720
2688
  [[package]]
2721
2689
  name = "rand"
2722
- version = "0.9.1"
2690
+ version = "0.9.2"
2723
2691
  source = "registry+https://github.com/rust-lang/crates.io-index"
2724
- checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2692
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2725
2693
  dependencies = [
2726
2694
  "rand_chacha 0.9.0",
2727
2695
  "rand_core 0.9.3",
@@ -2762,24 +2730,24 @@ version = "0.9.3"
2762
2730
  source = "registry+https://github.com/rust-lang/crates.io-index"
2763
2731
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2764
2732
  dependencies = [
2765
- "getrandom 0.3.2",
2733
+ "getrandom 0.3.3",
2766
2734
  ]
2767
2735
 
2768
2736
  [[package]]
2769
2737
  name = "rand_distr"
2770
- version = "0.4.3"
2738
+ version = "0.5.1"
2771
2739
  source = "registry+https://github.com/rust-lang/crates.io-index"
2772
- checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2740
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2773
2741
  dependencies = [
2774
2742
  "num-traits",
2775
- "rand 0.8.5",
2743
+ "rand 0.9.2",
2776
2744
  ]
2777
2745
 
2778
2746
  [[package]]
2779
2747
  name = "raw-cpuid"
2780
- version = "11.5.0"
2748
+ version = "11.6.0"
2781
2749
  source = "registry+https://github.com/rust-lang/crates.io-index"
2782
- checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
2750
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2783
2751
  dependencies = [
2784
2752
  "bitflags",
2785
2753
  ]
@@ -2792,9 +2760,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2792
2760
 
2793
2761
  [[package]]
2794
2762
  name = "rayon"
2795
- version = "1.10.0"
2763
+ version = "1.11.0"
2796
2764
  source = "registry+https://github.com/rust-lang/crates.io-index"
2797
- checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2765
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2798
2766
  dependencies = [
2799
2767
  "either",
2800
2768
  "rayon-core",
@@ -2802,9 +2770,9 @@ dependencies = [
2802
2770
 
2803
2771
  [[package]]
2804
2772
  name = "rayon-core"
2805
- version = "1.12.1"
2773
+ version = "1.13.0"
2806
2774
  source = "registry+https://github.com/rust-lang/crates.io-index"
2807
- checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2775
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2808
2776
  dependencies = [
2809
2777
  "crossbeam-deque",
2810
2778
  "crossbeam-utils",
@@ -2832,9 +2800,9 @@ dependencies = [
2832
2800
 
2833
2801
  [[package]]
2834
2802
  name = "redox_syscall"
2835
- version = "0.5.12"
2803
+ version = "0.5.17"
2836
2804
  source = "registry+https://github.com/rust-lang/crates.io-index"
2837
- checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
2805
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
2838
2806
  dependencies = [
2839
2807
  "bitflags",
2840
2808
  ]
@@ -2861,9 +2829,9 @@ dependencies = [
2861
2829
 
2862
2830
  [[package]]
2863
2831
  name = "regex"
2864
- version = "1.11.1"
2832
+ version = "1.11.2"
2865
2833
  source = "registry+https://github.com/rust-lang/crates.io-index"
2866
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2834
+ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
2867
2835
  dependencies = [
2868
2836
  "aho-corasick",
2869
2837
  "memchr",
@@ -2873,9 +2841,9 @@ dependencies = [
2873
2841
 
2874
2842
  [[package]]
2875
2843
  name = "regex-automata"
2876
- version = "0.4.9"
2844
+ version = "0.4.10"
2877
2845
  source = "registry+https://github.com/rust-lang/crates.io-index"
2878
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2846
+ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
2879
2847
  dependencies = [
2880
2848
  "aho-corasick",
2881
2849
  "memchr",
@@ -2884,9 +2852,9 @@ dependencies = [
2884
2852
 
2885
2853
  [[package]]
2886
2854
  name = "regex-syntax"
2887
- version = "0.8.5"
2855
+ version = "0.8.6"
2888
2856
  source = "registry+https://github.com/rust-lang/crates.io-index"
2889
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2857
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
2890
2858
 
2891
2859
  [[package]]
2892
2860
  name = "relative-path"
@@ -2909,24 +2877,24 @@ version = "0.6.10"
2909
2877
  dependencies = [
2910
2878
  "chrono",
2911
2879
  "chrono-tz",
2912
- "log",
2880
+ "nohash-hasher",
2913
2881
  "oxrdf",
2914
2882
  "oxsdatatypes",
2915
2883
  "polars",
2916
2884
  "pyo3",
2917
2885
  "rayon",
2918
- "serde",
2919
2886
  "spargebra",
2920
2887
  "thiserror",
2888
+ "tracing",
2921
2889
  "utils",
2922
2890
  "uuid",
2923
2891
  ]
2924
2892
 
2925
2893
  [[package]]
2926
2894
  name = "reqwest"
2927
- version = "0.12.15"
2895
+ version = "0.12.23"
2928
2896
  source = "registry+https://github.com/rust-lang/crates.io-index"
2929
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2897
+ checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
2930
2898
  dependencies = [
2931
2899
  "base64",
2932
2900
  "bytes",
@@ -2939,17 +2907,13 @@ dependencies = [
2939
2907
  "hyper",
2940
2908
  "hyper-rustls",
2941
2909
  "hyper-util",
2942
- "ipnet",
2943
2910
  "js-sys",
2944
2911
  "log",
2945
- "mime",
2946
- "once_cell",
2947
2912
  "percent-encoding",
2948
2913
  "pin-project-lite",
2949
2914
  "quinn",
2950
2915
  "rustls",
2951
2916
  "rustls-native-certs",
2952
- "rustls-pemfile",
2953
2917
  "rustls-pki-types",
2954
2918
  "serde",
2955
2919
  "serde_json",
@@ -2959,13 +2923,13 @@ dependencies = [
2959
2923
  "tokio-rustls",
2960
2924
  "tokio-util",
2961
2925
  "tower",
2926
+ "tower-http",
2962
2927
  "tower-service",
2963
2928
  "url",
2964
2929
  "wasm-bindgen",
2965
2930
  "wasm-bindgen-futures",
2966
2931
  "wasm-streams",
2967
2932
  "web-sys",
2968
- "windows-registry",
2969
2933
  ]
2970
2934
 
2971
2935
  [[package]]
@@ -3036,9 +3000,9 @@ dependencies = [
3036
3000
 
3037
3001
  [[package]]
3038
3002
  name = "rustc-demangle"
3039
- version = "0.1.24"
3003
+ version = "0.1.26"
3040
3004
  source = "registry+https://github.com/rust-lang/crates.io-index"
3041
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3005
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
3042
3006
 
3043
3007
  [[package]]
3044
3008
  name = "rustc-hash"
@@ -3057,35 +3021,22 @@ dependencies = [
3057
3021
 
3058
3022
  [[package]]
3059
3023
  name = "rustix"
3060
- version = "0.38.44"
3061
- source = "registry+https://github.com/rust-lang/crates.io-index"
3062
- checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3063
- dependencies = [
3064
- "bitflags",
3065
- "errno",
3066
- "libc",
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"
3024
+ version = "1.1.2"
3074
3025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3075
- checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
3026
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3076
3027
  dependencies = [
3077
3028
  "bitflags",
3078
3029
  "errno",
3079
3030
  "libc",
3080
- "linux-raw-sys 0.9.4",
3081
- "windows-sys 0.59.0",
3031
+ "linux-raw-sys",
3032
+ "windows-sys 0.61.0",
3082
3033
  ]
3083
3034
 
3084
3035
  [[package]]
3085
3036
  name = "rustls"
3086
- version = "0.23.27"
3037
+ version = "0.23.32"
3087
3038
  source = "registry+https://github.com/rust-lang/crates.io-index"
3088
- checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
3039
+ checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40"
3089
3040
  dependencies = [
3090
3041
  "once_cell",
3091
3042
  "ring",
@@ -3103,17 +3054,8 @@ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
3103
3054
  dependencies = [
3104
3055
  "openssl-probe",
3105
3056
  "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",
3057
+ "schannel",
3058
+ "security-framework",
3117
3059
  ]
3118
3060
 
3119
3061
  [[package]]
@@ -3128,9 +3070,9 @@ dependencies = [
3128
3070
 
3129
3071
  [[package]]
3130
3072
  name = "rustls-webpki"
3131
- version = "0.103.2"
3073
+ version = "0.103.6"
3132
3074
  source = "registry+https://github.com/rust-lang/crates.io-index"
3133
- checksum = "7149975849f1abb3832b246010ef62ccc80d3a76169517ada7188252b9cfb437"
3075
+ checksum = "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb"
3134
3076
  dependencies = [
3135
3077
  "ring",
3136
3078
  "rustls-pki-types",
@@ -3139,9 +3081,9 @@ dependencies = [
3139
3081
 
3140
3082
  [[package]]
3141
3083
  name = "rustversion"
3142
- version = "1.0.20"
3084
+ version = "1.0.22"
3143
3085
  source = "registry+https://github.com/rust-lang/crates.io-index"
3144
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3086
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3145
3087
 
3146
3088
  [[package]]
3147
3089
  name = "ryu"
@@ -3160,20 +3102,20 @@ dependencies = [
3160
3102
 
3161
3103
  [[package]]
3162
3104
  name = "scc"
3163
- version = "2.3.4"
3105
+ version = "2.4.0"
3164
3106
  source = "registry+https://github.com/rust-lang/crates.io-index"
3165
- checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
3107
+ checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
3166
3108
  dependencies = [
3167
3109
  "sdd",
3168
3110
  ]
3169
3111
 
3170
3112
  [[package]]
3171
3113
  name = "schannel"
3172
- version = "0.1.27"
3114
+ version = "0.1.28"
3173
3115
  source = "registry+https://github.com/rust-lang/crates.io-index"
3174
- checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
3116
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3175
3117
  dependencies = [
3176
- "windows-sys 0.59.0",
3118
+ "windows-sys 0.61.0",
3177
3119
  ]
3178
3120
 
3179
3121
  [[package]]
@@ -3184,15 +3126,15 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3184
3126
 
3185
3127
  [[package]]
3186
3128
  name = "sdd"
3187
- version = "3.0.8"
3129
+ version = "3.0.10"
3188
3130
  source = "registry+https://github.com/rust-lang/crates.io-index"
3189
- checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21"
3131
+ checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
3190
3132
 
3191
3133
  [[package]]
3192
3134
  name = "security-framework"
3193
- version = "3.2.0"
3135
+ version = "3.5.0"
3194
3136
  source = "registry+https://github.com/rust-lang/crates.io-index"
3195
- checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
3137
+ checksum = "cc198e42d9b7510827939c9a15f5062a0c913f3371d765977e586d2fe6c16f4a"
3196
3138
  dependencies = [
3197
3139
  "bitflags",
3198
3140
  "core-foundation",
@@ -3203,9 +3145,9 @@ dependencies = [
3203
3145
 
3204
3146
  [[package]]
3205
3147
  name = "security-framework-sys"
3206
- version = "2.14.0"
3148
+ version = "2.15.0"
3207
3149
  source = "registry+https://github.com/rust-lang/crates.io-index"
3208
- checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
3150
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3209
3151
  dependencies = [
3210
3152
  "core-foundation-sys",
3211
3153
  "libc",
@@ -3213,24 +3155,34 @@ dependencies = [
3213
3155
 
3214
3156
  [[package]]
3215
3157
  name = "semver"
3216
- version = "1.0.26"
3158
+ version = "1.0.27"
3217
3159
  source = "registry+https://github.com/rust-lang/crates.io-index"
3218
- checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3160
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3219
3161
 
3220
3162
  [[package]]
3221
3163
  name = "serde"
3222
- version = "1.0.219"
3164
+ version = "1.0.226"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "0dca6411025b24b60bfa7ec1fe1f8e710ac09782dca409ee8237ba74b51295fd"
3167
+ dependencies = [
3168
+ "serde_core",
3169
+ "serde_derive",
3170
+ ]
3171
+
3172
+ [[package]]
3173
+ name = "serde_core"
3174
+ version = "1.0.226"
3223
3175
  source = "registry+https://github.com/rust-lang/crates.io-index"
3224
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
3176
+ checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
3225
3177
  dependencies = [
3226
3178
  "serde_derive",
3227
3179
  ]
3228
3180
 
3229
3181
  [[package]]
3230
3182
  name = "serde_derive"
3231
- version = "1.0.219"
3183
+ version = "1.0.226"
3232
3184
  source = "registry+https://github.com/rust-lang/crates.io-index"
3233
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3185
+ checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
3234
3186
  dependencies = [
3235
3187
  "proc-macro2",
3236
3188
  "quote",
@@ -3238,24 +3190,27 @@ dependencies = [
3238
3190
  ]
3239
3191
 
3240
3192
  [[package]]
3241
- name = "serde_ignored"
3242
- version = "0.1.12"
3193
+ name = "serde_json"
3194
+ version = "1.0.145"
3243
3195
  source = "registry+https://github.com/rust-lang/crates.io-index"
3244
- checksum = "b516445dac1e3535b6d658a7b528d771153dfb272ed4180ca4617a20550365ff"
3196
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3245
3197
  dependencies = [
3198
+ "itoa",
3199
+ "memchr",
3200
+ "ryu",
3246
3201
  "serde",
3202
+ "serde_core",
3247
3203
  ]
3248
3204
 
3249
3205
  [[package]]
3250
- name = "serde_json"
3251
- version = "1.0.140"
3206
+ name = "serde_stacker"
3207
+ version = "0.1.14"
3252
3208
  source = "registry+https://github.com/rust-lang/crates.io-index"
3253
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
3209
+ checksum = "d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a"
3254
3210
  dependencies = [
3255
- "itoa",
3256
- "memchr",
3257
- "ryu",
3258
3211
  "serde",
3212
+ "serde_core",
3213
+ "stacker",
3259
3214
  ]
3260
3215
 
3261
3216
  [[package]]
@@ -3295,6 +3250,17 @@ dependencies = [
3295
3250
  "syn",
3296
3251
  ]
3297
3252
 
3253
+ [[package]]
3254
+ name = "sha2"
3255
+ version = "0.10.9"
3256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3257
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3258
+ dependencies = [
3259
+ "cfg-if",
3260
+ "cpufeatures",
3261
+ "digest",
3262
+ ]
3263
+
3298
3264
  [[package]]
3299
3265
  name = "shacl"
3300
3266
  version = "0.1.0"
@@ -3307,6 +3273,15 @@ dependencies = [
3307
3273
  "triplestore",
3308
3274
  ]
3309
3275
 
3276
+ [[package]]
3277
+ name = "sharded-slab"
3278
+ version = "0.1.7"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3281
+ dependencies = [
3282
+ "lazy_static",
3283
+ ]
3284
+
3310
3285
  [[package]]
3311
3286
  name = "shlex"
3312
3287
  version = "1.3.0"
@@ -3315,9 +3290,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3315
3290
 
3316
3291
  [[package]]
3317
3292
  name = "signal-hook"
3318
- version = "0.3.17"
3293
+ version = "0.3.18"
3319
3294
  source = "registry+https://github.com/rust-lang/crates.io-index"
3320
- checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
3295
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
3321
3296
  dependencies = [
3322
3297
  "libc",
3323
3298
  "signal-hook-registry",
@@ -3325,21 +3300,21 @@ dependencies = [
3325
3300
 
3326
3301
  [[package]]
3327
3302
  name = "signal-hook-registry"
3328
- version = "1.4.5"
3303
+ version = "1.4.6"
3329
3304
  source = "registry+https://github.com/rust-lang/crates.io-index"
3330
- checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
3305
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3331
3306
  dependencies = [
3332
3307
  "libc",
3333
3308
  ]
3334
3309
 
3335
3310
  [[package]]
3336
3311
  name = "simd-json"
3337
- version = "0.14.3"
3312
+ version = "0.15.1"
3338
3313
  source = "registry+https://github.com/rust-lang/crates.io-index"
3339
- checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
3314
+ checksum = "c962f626b54771990066e5435ec8331d1462576cd2d1e62f24076ae014f92112"
3340
3315
  dependencies = [
3341
3316
  "ahash",
3342
- "getrandom 0.2.16",
3317
+ "getrandom 0.3.3",
3343
3318
  "halfbrown",
3344
3319
  "once_cell",
3345
3320
  "ref-cast",
@@ -3363,21 +3338,19 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3363
3338
 
3364
3339
  [[package]]
3365
3340
  name = "skiplist"
3366
- version = "0.5.1"
3341
+ version = "0.6.0"
3367
3342
  source = "registry+https://github.com/rust-lang/crates.io-index"
3368
- checksum = "0eec25f46463fcdc5e02f388c2780b1b58e01be81a8378e62ec60931beccc3f6"
3343
+ checksum = "f354fd282d3177c2951004953e2fdc4cb342fa159bbee8b829852b6a081c8ea1"
3369
3344
  dependencies = [
3370
- "rand 0.8.5",
3345
+ "rand 0.9.2",
3346
+ "thiserror",
3371
3347
  ]
3372
3348
 
3373
3349
  [[package]]
3374
3350
  name = "slab"
3375
- version = "0.4.9"
3351
+ version = "0.4.11"
3376
3352
  source = "registry+https://github.com/rust-lang/crates.io-index"
3377
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3378
- dependencies = [
3379
- "autocfg",
3380
- ]
3353
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3381
3354
 
3382
3355
  [[package]]
3383
3356
  name = "slotmap"
@@ -3390,9 +3363,9 @@ dependencies = [
3390
3363
 
3391
3364
  [[package]]
3392
3365
  name = "smallvec"
3393
- version = "1.15.0"
3366
+ version = "1.15.1"
3394
3367
  source = "registry+https://github.com/rust-lang/crates.io-index"
3395
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3368
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3396
3369
 
3397
3370
  [[package]]
3398
3371
  name = "snap"
@@ -3402,24 +3375,24 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
3402
3375
 
3403
3376
  [[package]]
3404
3377
  name = "socket2"
3405
- version = "0.5.9"
3378
+ version = "0.6.0"
3406
3379
  source = "registry+https://github.com/rust-lang/crates.io-index"
3407
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3380
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
3408
3381
  dependencies = [
3409
3382
  "libc",
3410
- "windows-sys 0.52.0",
3383
+ "windows-sys 0.59.0",
3411
3384
  ]
3412
3385
 
3413
3386
  [[package]]
3414
3387
  name = "sparesults"
3415
- version = "0.2.4"
3388
+ version = "0.2.5"
3416
3389
  source = "registry+https://github.com/rust-lang/crates.io-index"
3417
- checksum = "4b845f8f37245959132c0561bb737c28eb9c0b693b92535fc5c3965a9390724d"
3390
+ checksum = "f478f5ead16b6136bccee7a52ea43a615f8512086708f515e26ce33e0b184036"
3418
3391
  dependencies = [
3419
3392
  "json-event-parser",
3420
3393
  "memchr",
3421
3394
  "oxrdf",
3422
- "quick-xml",
3395
+ "quick-xml 0.37.5",
3423
3396
  "thiserror",
3424
3397
  ]
3425
3398
 
@@ -3433,7 +3406,7 @@ dependencies = [
3433
3406
  "oxiri",
3434
3407
  "oxrdf",
3435
3408
  "peg",
3436
- "rand 0.9.1",
3409
+ "rand 0.9.2",
3437
3410
  "thiserror",
3438
3411
  ]
3439
3412
 
@@ -3509,14 +3482,13 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
3509
3482
 
3510
3483
  [[package]]
3511
3484
  name = "strum_macros"
3512
- version = "0.26.4"
3485
+ version = "0.27.2"
3513
3486
  source = "registry+https://github.com/rust-lang/crates.io-index"
3514
- checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3487
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
3515
3488
  dependencies = [
3516
3489
  "heck",
3517
3490
  "proc-macro2",
3518
3491
  "quote",
3519
- "rustversion",
3520
3492
  "syn",
3521
3493
  ]
3522
3494
 
@@ -3528,9 +3500,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3528
3500
 
3529
3501
  [[package]]
3530
3502
  name = "syn"
3531
- version = "2.0.101"
3503
+ version = "2.0.106"
3532
3504
  source = "registry+https://github.com/rust-lang/crates.io-index"
3533
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
3505
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
3534
3506
  dependencies = [
3535
3507
  "proc-macro2",
3536
3508
  "quote",
@@ -3557,64 +3529,60 @@ dependencies = [
3557
3529
  "syn",
3558
3530
  ]
3559
3531
 
3560
- [[package]]
3561
- name = "sysinfo"
3562
- version = "0.33.1"
3563
- source = "registry+https://github.com/rust-lang/crates.io-index"
3564
- checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
3565
- dependencies = [
3566
- "core-foundation-sys",
3567
- "libc",
3568
- "memchr",
3569
- "ntapi",
3570
- "windows",
3571
- ]
3572
-
3573
3532
  [[package]]
3574
3533
  name = "target-lexicon"
3575
- version = "0.13.2"
3534
+ version = "0.13.3"
3576
3535
  source = "registry+https://github.com/rust-lang/crates.io-index"
3577
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
3536
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
3578
3537
 
3579
3538
  [[package]]
3580
3539
  name = "templates"
3581
3540
  version = "0.1.0"
3582
3541
  dependencies = [
3583
- "log",
3584
3542
  "nom",
3585
3543
  "oxrdf",
3586
3544
  "pyo3",
3587
3545
  "representation",
3588
3546
  "thiserror",
3547
+ "tracing",
3589
3548
  "unic-char-range",
3590
3549
  "walkdir",
3591
3550
  ]
3592
3551
 
3593
3552
  [[package]]
3594
3553
  name = "thiserror"
3595
- version = "2.0.12"
3554
+ version = "2.0.16"
3596
3555
  source = "registry+https://github.com/rust-lang/crates.io-index"
3597
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3556
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
3598
3557
  dependencies = [
3599
3558
  "thiserror-impl",
3600
3559
  ]
3601
3560
 
3602
3561
  [[package]]
3603
3562
  name = "thiserror-impl"
3604
- version = "2.0.12"
3563
+ version = "2.0.16"
3605
3564
  source = "registry+https://github.com/rust-lang/crates.io-index"
3606
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3565
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
3607
3566
  dependencies = [
3608
3567
  "proc-macro2",
3609
3568
  "quote",
3610
3569
  "syn",
3611
3570
  ]
3612
3571
 
3572
+ [[package]]
3573
+ name = "thread_local"
3574
+ version = "1.1.9"
3575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3576
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3577
+ dependencies = [
3578
+ "cfg-if",
3579
+ ]
3580
+
3613
3581
  [[package]]
3614
3582
  name = "tinystr"
3615
- version = "0.7.6"
3583
+ version = "0.8.1"
3616
3584
  source = "registry+https://github.com/rust-lang/crates.io-index"
3617
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3585
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3618
3586
  dependencies = [
3619
3587
  "displaydoc",
3620
3588
  "zerovec",
@@ -3622,9 +3590,9 @@ dependencies = [
3622
3590
 
3623
3591
  [[package]]
3624
3592
  name = "tinyvec"
3625
- version = "1.9.0"
3593
+ version = "1.10.0"
3626
3594
  source = "registry+https://github.com/rust-lang/crates.io-index"
3627
- checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3595
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3628
3596
  dependencies = [
3629
3597
  "tinyvec_macros",
3630
3598
  ]
@@ -3637,18 +3605,20 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3637
3605
 
3638
3606
  [[package]]
3639
3607
  name = "tokio"
3640
- version = "1.45.0"
3608
+ version = "1.47.1"
3641
3609
  source = "registry+https://github.com/rust-lang/crates.io-index"
3642
- checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
3610
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
3643
3611
  dependencies = [
3644
3612
  "backtrace",
3645
3613
  "bytes",
3614
+ "io-uring",
3646
3615
  "libc",
3647
3616
  "mio",
3648
3617
  "pin-project-lite",
3618
+ "slab",
3649
3619
  "socket2",
3650
3620
  "tokio-macros",
3651
- "windows-sys 0.52.0",
3621
+ "windows-sys 0.59.0",
3652
3622
  ]
3653
3623
 
3654
3624
  [[package]]
@@ -3664,9 +3634,9 @@ dependencies = [
3664
3634
 
3665
3635
  [[package]]
3666
3636
  name = "tokio-rustls"
3667
- version = "0.26.2"
3637
+ version = "0.26.3"
3668
3638
  source = "registry+https://github.com/rust-lang/crates.io-index"
3669
- checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3639
+ checksum = "05f63835928ca123f1bef57abbcd23bb2ba0ac9ae1235f1e65bda0d06e7786bd"
3670
3640
  dependencies = [
3671
3641
  "rustls",
3672
3642
  "tokio",
@@ -3674,31 +3644,45 @@ dependencies = [
3674
3644
 
3675
3645
  [[package]]
3676
3646
  name = "tokio-util"
3677
- version = "0.7.15"
3647
+ version = "0.7.16"
3678
3648
  source = "registry+https://github.com/rust-lang/crates.io-index"
3679
- checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3649
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
3680
3650
  dependencies = [
3681
3651
  "bytes",
3682
3652
  "futures-core",
3683
3653
  "futures-sink",
3654
+ "futures-util",
3684
3655
  "pin-project-lite",
3685
3656
  "tokio",
3686
3657
  ]
3687
3658
 
3688
3659
  [[package]]
3689
3660
  name = "toml_datetime"
3690
- version = "0.6.9"
3661
+ version = "0.7.2"
3691
3662
  source = "registry+https://github.com/rust-lang/crates.io-index"
3692
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
3663
+ checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1"
3664
+ dependencies = [
3665
+ "serde_core",
3666
+ ]
3693
3667
 
3694
3668
  [[package]]
3695
3669
  name = "toml_edit"
3696
- version = "0.22.26"
3670
+ version = "0.23.6"
3697
3671
  source = "registry+https://github.com/rust-lang/crates.io-index"
3698
- checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
3672
+ checksum = "f3effe7c0e86fdff4f69cdd2ccc1b96f933e24811c5441d44904e8683e27184b"
3699
3673
  dependencies = [
3700
3674
  "indexmap",
3701
3675
  "toml_datetime",
3676
+ "toml_parser",
3677
+ "winnow",
3678
+ ]
3679
+
3680
+ [[package]]
3681
+ name = "toml_parser"
3682
+ version = "1.0.3"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627"
3685
+ dependencies = [
3702
3686
  "winnow",
3703
3687
  ]
3704
3688
 
@@ -3717,6 +3701,24 @@ dependencies = [
3717
3701
  "tower-service",
3718
3702
  ]
3719
3703
 
3704
+ [[package]]
3705
+ name = "tower-http"
3706
+ version = "0.6.6"
3707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3708
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3709
+ dependencies = [
3710
+ "bitflags",
3711
+ "bytes",
3712
+ "futures-util",
3713
+ "http",
3714
+ "http-body",
3715
+ "iri-string",
3716
+ "pin-project-lite",
3717
+ "tower",
3718
+ "tower-layer",
3719
+ "tower-service",
3720
+ ]
3721
+
3720
3722
  [[package]]
3721
3723
  name = "tower-layer"
3722
3724
  version = "0.3.3"
@@ -3735,6 +3737,7 @@ version = "0.1.41"
3735
3737
  source = "registry+https://github.com/rust-lang/crates.io-index"
3736
3738
  checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3737
3739
  dependencies = [
3740
+ "log",
3738
3741
  "pin-project-lite",
3739
3742
  "tracing-attributes",
3740
3743
  "tracing-core",
@@ -3742,9 +3745,9 @@ dependencies = [
3742
3745
 
3743
3746
  [[package]]
3744
3747
  name = "tracing-attributes"
3745
- version = "0.1.28"
3748
+ version = "0.1.30"
3746
3749
  source = "registry+https://github.com/rust-lang/crates.io-index"
3747
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3750
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3748
3751
  dependencies = [
3749
3752
  "proc-macro2",
3750
3753
  "quote",
@@ -3753,11 +3756,41 @@ dependencies = [
3753
3756
 
3754
3757
  [[package]]
3755
3758
  name = "tracing-core"
3756
- version = "0.1.33"
3759
+ version = "0.1.34"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3762
+ dependencies = [
3763
+ "once_cell",
3764
+ "valuable",
3765
+ ]
3766
+
3767
+ [[package]]
3768
+ name = "tracing-log"
3769
+ version = "0.2.0"
3770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3771
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3772
+ dependencies = [
3773
+ "log",
3774
+ "once_cell",
3775
+ "tracing-core",
3776
+ ]
3777
+
3778
+ [[package]]
3779
+ name = "tracing-subscriber"
3780
+ version = "0.3.20"
3757
3781
  source = "registry+https://github.com/rust-lang/crates.io-index"
3758
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3782
+ checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
3759
3783
  dependencies = [
3784
+ "matchers",
3785
+ "nu-ansi-term",
3760
3786
  "once_cell",
3787
+ "regex-automata",
3788
+ "sharded-slab",
3789
+ "smallvec",
3790
+ "thread_local",
3791
+ "tracing",
3792
+ "tracing-core",
3793
+ "tracing-log",
3761
3794
  ]
3762
3795
 
3763
3796
  [[package]]
@@ -3767,7 +3800,6 @@ dependencies = [
3767
3800
  "file_io",
3768
3801
  "fts",
3769
3802
  "itoa",
3770
- "log",
3771
3803
  "memmap2",
3772
3804
  "oxrdf",
3773
3805
  "oxrdfio",
@@ -3783,6 +3815,7 @@ dependencies = [
3783
3815
  "spargebra",
3784
3816
  "sprs",
3785
3817
  "thiserror",
3818
+ "tracing",
3786
3819
  "utils",
3787
3820
  "uuid",
3788
3821
  ]
@@ -3793,6 +3826,12 @@ version = "0.2.5"
3793
3826
  source = "registry+https://github.com/rust-lang/crates.io-index"
3794
3827
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3795
3828
 
3829
+ [[package]]
3830
+ name = "typenum"
3831
+ version = "1.18.0"
3832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3833
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3834
+
3796
3835
  [[package]]
3797
3836
  name = "unic-char-range"
3798
3837
  version = "0.9.0"
@@ -3801,9 +3840,9 @@ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
3801
3840
 
3802
3841
  [[package]]
3803
3842
  name = "unicode-ident"
3804
- version = "1.0.18"
3843
+ version = "1.0.19"
3805
3844
  source = "registry+https://github.com/rust-lang/crates.io-index"
3806
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3845
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
3807
3846
 
3808
3847
  [[package]]
3809
3848
  name = "unicode-normalization"
@@ -3831,9 +3870,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3831
3870
 
3832
3871
  [[package]]
3833
3872
  name = "unicode-width"
3834
- version = "0.2.0"
3873
+ version = "0.2.1"
3835
3874
  source = "registry+https://github.com/rust-lang/crates.io-index"
3836
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3875
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
3837
3876
 
3838
3877
  [[package]]
3839
3878
  name = "unindent"
@@ -3847,41 +3886,35 @@ version = "0.9.0"
3847
3886
  source = "registry+https://github.com/rust-lang/crates.io-index"
3848
3887
  checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3849
3888
 
3889
+ [[package]]
3890
+ name = "unty"
3891
+ version = "0.0.4"
3892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3893
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
3894
+
3850
3895
  [[package]]
3851
3896
  name = "url"
3852
- version = "2.5.4"
3897
+ version = "2.5.7"
3853
3898
  source = "registry+https://github.com/rust-lang/crates.io-index"
3854
- checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3899
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3855
3900
  dependencies = [
3856
3901
  "form_urlencoded",
3857
3902
  "idna",
3858
3903
  "percent-encoding",
3904
+ "serde",
3859
3905
  ]
3860
3906
 
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
3907
  [[package]]
3868
3908
  name = "utf8_iter"
3869
3909
  version = "1.0.4"
3870
3910
  source = "registry+https://github.com/rust-lang/crates.io-index"
3871
3911
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3872
3912
 
3873
- [[package]]
3874
- name = "utf8parse"
3875
- version = "0.2.2"
3876
- source = "registry+https://github.com/rust-lang/crates.io-index"
3877
- checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3878
-
3879
3913
  [[package]]
3880
3914
  name = "utils"
3881
3915
  version = "0.1.0"
3882
3916
  dependencies = [
3883
3917
  "polars",
3884
- "polars-core",
3885
3918
  "pyo3",
3886
3919
  "rayon",
3887
3920
  "thiserror",
@@ -3889,19 +3922,28 @@ dependencies = [
3889
3922
 
3890
3923
  [[package]]
3891
3924
  name = "uuid"
3892
- version = "1.16.0"
3925
+ version = "1.18.1"
3893
3926
  source = "registry+https://github.com/rust-lang/crates.io-index"
3894
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3927
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
3895
3928
  dependencies = [
3896
- "getrandom 0.3.2",
3897
- "rand 0.9.1",
3929
+ "getrandom 0.3.3",
3930
+ "js-sys",
3931
+ "rand 0.9.2",
3932
+ "serde",
3933
+ "wasm-bindgen",
3898
3934
  ]
3899
3935
 
3936
+ [[package]]
3937
+ name = "valuable"
3938
+ version = "0.1.1"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3941
+
3900
3942
  [[package]]
3901
3943
  name = "value-trait"
3902
- version = "0.10.1"
3944
+ version = "0.11.0"
3903
3945
  source = "registry+https://github.com/rust-lang/crates.io-index"
3904
- checksum = "9170e001f458781e92711d2ad666110f153e4e50bfd5cbd02db6547625714187"
3946
+ checksum = "0508fce11ad19e0aab49ce20b6bec7f8f82902ded31df1c9fc61b90f0eb396b8"
3905
3947
  dependencies = [
3906
3948
  "float-cmp",
3907
3949
  "halfbrown",
@@ -3915,6 +3957,12 @@ version = "0.9.5"
3915
3957
  source = "registry+https://github.com/rust-lang/crates.io-index"
3916
3958
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3917
3959
 
3960
+ [[package]]
3961
+ name = "virtue"
3962
+ version = "0.0.18"
3963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3964
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
3965
+
3918
3966
  [[package]]
3919
3967
  name = "walkdir"
3920
3968
  version = "2.5.0"
@@ -3936,36 +3984,46 @@ dependencies = [
3936
3984
 
3937
3985
  [[package]]
3938
3986
  name = "wasi"
3939
- version = "0.11.0+wasi-snapshot-preview1"
3987
+ version = "0.11.1+wasi-snapshot-preview1"
3940
3988
  source = "registry+https://github.com/rust-lang/crates.io-index"
3941
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3989
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3942
3990
 
3943
3991
  [[package]]
3944
3992
  name = "wasi"
3945
- version = "0.14.2+wasi-0.2.4"
3993
+ version = "0.14.7+wasi-0.2.4"
3994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3995
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
3996
+ dependencies = [
3997
+ "wasip2",
3998
+ ]
3999
+
4000
+ [[package]]
4001
+ name = "wasip2"
4002
+ version = "1.0.1+wasi-0.2.4"
3946
4003
  source = "registry+https://github.com/rust-lang/crates.io-index"
3947
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
4004
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3948
4005
  dependencies = [
3949
- "wit-bindgen-rt",
4006
+ "wit-bindgen",
3950
4007
  ]
3951
4008
 
3952
4009
  [[package]]
3953
4010
  name = "wasm-bindgen"
3954
- version = "0.2.100"
4011
+ version = "0.2.103"
3955
4012
  source = "registry+https://github.com/rust-lang/crates.io-index"
3956
- checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
4013
+ checksum = "ab10a69fbd0a177f5f649ad4d8d3305499c42bab9aef2f7ff592d0ec8f833819"
3957
4014
  dependencies = [
3958
4015
  "cfg-if",
3959
4016
  "once_cell",
3960
4017
  "rustversion",
3961
4018
  "wasm-bindgen-macro",
4019
+ "wasm-bindgen-shared",
3962
4020
  ]
3963
4021
 
3964
4022
  [[package]]
3965
4023
  name = "wasm-bindgen-backend"
3966
- version = "0.2.100"
4024
+ version = "0.2.103"
3967
4025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3968
- checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
4026
+ checksum = "0bb702423545a6007bbc368fde243ba47ca275e549c8a28617f56f6ba53b1d1c"
3969
4027
  dependencies = [
3970
4028
  "bumpalo",
3971
4029
  "log",
@@ -3977,9 +4035,9 @@ dependencies = [
3977
4035
 
3978
4036
  [[package]]
3979
4037
  name = "wasm-bindgen-futures"
3980
- version = "0.4.50"
4038
+ version = "0.4.53"
3981
4039
  source = "registry+https://github.com/rust-lang/crates.io-index"
3982
- checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
4040
+ checksum = "a0b221ff421256839509adbb55998214a70d829d3a28c69b4a6672e9d2a42f67"
3983
4041
  dependencies = [
3984
4042
  "cfg-if",
3985
4043
  "js-sys",
@@ -3990,9 +4048,9 @@ dependencies = [
3990
4048
 
3991
4049
  [[package]]
3992
4050
  name = "wasm-bindgen-macro"
3993
- version = "0.2.100"
4051
+ version = "0.2.103"
3994
4052
  source = "registry+https://github.com/rust-lang/crates.io-index"
3995
- checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
4053
+ checksum = "fc65f4f411d91494355917b605e1480033152658d71f722a90647f56a70c88a0"
3996
4054
  dependencies = [
3997
4055
  "quote",
3998
4056
  "wasm-bindgen-macro-support",
@@ -4000,9 +4058,9 @@ dependencies = [
4000
4058
 
4001
4059
  [[package]]
4002
4060
  name = "wasm-bindgen-macro-support"
4003
- version = "0.2.100"
4061
+ version = "0.2.103"
4004
4062
  source = "registry+https://github.com/rust-lang/crates.io-index"
4005
- checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4063
+ checksum = "ffc003a991398a8ee604a401e194b6b3a39677b3173d6e74495eb51b82e99a32"
4006
4064
  dependencies = [
4007
4065
  "proc-macro2",
4008
4066
  "quote",
@@ -4013,9 +4071,9 @@ dependencies = [
4013
4071
 
4014
4072
  [[package]]
4015
4073
  name = "wasm-bindgen-shared"
4016
- version = "0.2.100"
4074
+ version = "0.2.103"
4017
4075
  source = "registry+https://github.com/rust-lang/crates.io-index"
4018
- checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4076
+ checksum = "293c37f4efa430ca14db3721dfbe48d8c33308096bd44d80ebaa775ab71ba1cf"
4019
4077
  dependencies = [
4020
4078
  "unicode-ident",
4021
4079
  ]
@@ -4035,9 +4093,9 @@ dependencies = [
4035
4093
 
4036
4094
  [[package]]
4037
4095
  name = "web-sys"
4038
- version = "0.3.77"
4096
+ version = "0.3.80"
4039
4097
  source = "registry+https://github.com/rust-lang/crates.io-index"
4040
- checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4098
+ checksum = "fbe734895e869dc429d78c4b433f8d17d95f8d05317440b4fad5ab2d33e596dc"
4041
4099
  dependencies = [
4042
4100
  "js-sys",
4043
4101
  "wasm-bindgen",
@@ -4071,11 +4129,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4071
4129
 
4072
4130
  [[package]]
4073
4131
  name = "winapi-util"
4074
- version = "0.1.9"
4132
+ version = "0.1.11"
4075
4133
  source = "registry+https://github.com/rust-lang/crates.io-index"
4076
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4134
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4077
4135
  dependencies = [
4078
- "windows-sys 0.59.0",
4136
+ "windows-sys 0.61.0",
4079
4137
  ]
4080
4138
 
4081
4139
  [[package]]
@@ -4084,50 +4142,17 @@ version = "0.4.0"
4084
4142
  source = "registry+https://github.com/rust-lang/crates.io-index"
4085
4143
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4086
4144
 
4087
- [[package]]
4088
- name = "windows"
4089
- version = "0.57.0"
4090
- source = "registry+https://github.com/rust-lang/crates.io-index"
4091
- checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
4092
- dependencies = [
4093
- "windows-core 0.57.0",
4094
- "windows-targets 0.52.6",
4095
- ]
4096
-
4097
- [[package]]
4098
- name = "windows-core"
4099
- version = "0.57.0"
4100
- source = "registry+https://github.com/rust-lang/crates.io-index"
4101
- checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
4102
- dependencies = [
4103
- "windows-implement 0.57.0",
4104
- "windows-interface 0.57.0",
4105
- "windows-result 0.1.2",
4106
- "windows-targets 0.52.6",
4107
- ]
4108
-
4109
4145
  [[package]]
4110
4146
  name = "windows-core"
4111
- version = "0.61.0"
4112
- source = "registry+https://github.com/rust-lang/crates.io-index"
4113
- checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
4114
- dependencies = [
4115
- "windows-implement 0.60.0",
4116
- "windows-interface 0.59.1",
4117
- "windows-link",
4118
- "windows-result 0.3.2",
4119
- "windows-strings 0.4.0",
4120
- ]
4121
-
4122
- [[package]]
4123
- name = "windows-implement"
4124
- version = "0.57.0"
4147
+ version = "0.62.0"
4125
4148
  source = "registry+https://github.com/rust-lang/crates.io-index"
4126
- checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
4149
+ checksum = "57fe7168f7de578d2d8a05b07fd61870d2e73b4020e9f49aa00da8471723497c"
4127
4150
  dependencies = [
4128
- "proc-macro2",
4129
- "quote",
4130
- "syn",
4151
+ "windows-implement",
4152
+ "windows-interface",
4153
+ "windows-link 0.2.0",
4154
+ "windows-result",
4155
+ "windows-strings",
4131
4156
  ]
4132
4157
 
4133
4158
  [[package]]
@@ -4141,17 +4166,6 @@ dependencies = [
4141
4166
  "syn",
4142
4167
  ]
4143
4168
 
4144
- [[package]]
4145
- name = "windows-interface"
4146
- version = "0.57.0"
4147
- source = "registry+https://github.com/rust-lang/crates.io-index"
4148
- checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
4149
- dependencies = [
4150
- "proc-macro2",
4151
- "quote",
4152
- "syn",
4153
- ]
4154
-
4155
4169
  [[package]]
4156
4170
  name = "windows-interface"
4157
4171
  version = "0.59.1"
@@ -4165,73 +4179,68 @@ dependencies = [
4165
4179
 
4166
4180
  [[package]]
4167
4181
  name = "windows-link"
4168
- version = "0.1.1"
4182
+ version = "0.1.3"
4169
4183
  source = "registry+https://github.com/rust-lang/crates.io-index"
4170
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4184
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4171
4185
 
4172
4186
  [[package]]
4173
- name = "windows-registry"
4174
- version = "0.4.0"
4187
+ name = "windows-link"
4188
+ version = "0.2.0"
4175
4189
  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
- ]
4190
+ checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
4182
4191
 
4183
4192
  [[package]]
4184
4193
  name = "windows-result"
4185
- version = "0.1.2"
4194
+ version = "0.4.0"
4186
4195
  source = "registry+https://github.com/rust-lang/crates.io-index"
4187
- checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
4196
+ checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
4188
4197
  dependencies = [
4189
- "windows-targets 0.52.6",
4198
+ "windows-link 0.2.0",
4190
4199
  ]
4191
4200
 
4192
4201
  [[package]]
4193
- name = "windows-result"
4194
- version = "0.3.2"
4202
+ name = "windows-strings"
4203
+ version = "0.5.0"
4195
4204
  source = "registry+https://github.com/rust-lang/crates.io-index"
4196
- checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
4205
+ checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
4197
4206
  dependencies = [
4198
- "windows-link",
4207
+ "windows-link 0.2.0",
4199
4208
  ]
4200
4209
 
4201
4210
  [[package]]
4202
- name = "windows-strings"
4203
- version = "0.3.1"
4211
+ name = "windows-sys"
4212
+ version = "0.52.0"
4204
4213
  source = "registry+https://github.com/rust-lang/crates.io-index"
4205
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4214
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4206
4215
  dependencies = [
4207
- "windows-link",
4216
+ "windows-targets 0.52.6",
4208
4217
  ]
4209
4218
 
4210
4219
  [[package]]
4211
- name = "windows-strings"
4212
- version = "0.4.0"
4220
+ name = "windows-sys"
4221
+ version = "0.59.0"
4213
4222
  source = "registry+https://github.com/rust-lang/crates.io-index"
4214
- checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
4223
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4215
4224
  dependencies = [
4216
- "windows-link",
4225
+ "windows-targets 0.52.6",
4217
4226
  ]
4218
4227
 
4219
4228
  [[package]]
4220
4229
  name = "windows-sys"
4221
- version = "0.52.0"
4230
+ version = "0.60.2"
4222
4231
  source = "registry+https://github.com/rust-lang/crates.io-index"
4223
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4232
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4224
4233
  dependencies = [
4225
- "windows-targets 0.52.6",
4234
+ "windows-targets 0.53.3",
4226
4235
  ]
4227
4236
 
4228
4237
  [[package]]
4229
4238
  name = "windows-sys"
4230
- version = "0.59.0"
4239
+ version = "0.61.0"
4231
4240
  source = "registry+https://github.com/rust-lang/crates.io-index"
4232
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4241
+ checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
4233
4242
  dependencies = [
4234
- "windows-targets 0.52.6",
4243
+ "windows-link 0.2.0",
4235
4244
  ]
4236
4245
 
4237
4246
  [[package]]
@@ -4252,10 +4261,11 @@ dependencies = [
4252
4261
 
4253
4262
  [[package]]
4254
4263
  name = "windows-targets"
4255
- version = "0.53.0"
4264
+ version = "0.53.3"
4256
4265
  source = "registry+https://github.com/rust-lang/crates.io-index"
4257
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
4266
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
4258
4267
  dependencies = [
4268
+ "windows-link 0.1.3",
4259
4269
  "windows_aarch64_gnullvm 0.53.0",
4260
4270
  "windows_aarch64_msvc 0.53.0",
4261
4271
  "windows_i686_gnu 0.53.0",
@@ -4364,33 +4374,24 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4364
4374
 
4365
4375
  [[package]]
4366
4376
  name = "winnow"
4367
- version = "0.7.9"
4377
+ version = "0.7.13"
4368
4378
  source = "registry+https://github.com/rust-lang/crates.io-index"
4369
- checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3"
4379
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
4370
4380
  dependencies = [
4371
4381
  "memchr",
4372
4382
  ]
4373
4383
 
4374
4384
  [[package]]
4375
- name = "wit-bindgen-rt"
4376
- version = "0.39.0"
4377
- source = "registry+https://github.com/rust-lang/crates.io-index"
4378
- checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4379
- dependencies = [
4380
- "bitflags",
4381
- ]
4382
-
4383
- [[package]]
4384
- name = "write16"
4385
- version = "1.0.0"
4385
+ name = "wit-bindgen"
4386
+ version = "0.46.0"
4386
4387
  source = "registry+https://github.com/rust-lang/crates.io-index"
4387
- checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4388
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4388
4389
 
4389
4390
  [[package]]
4390
4391
  name = "writeable"
4391
- version = "0.5.5"
4392
+ version = "0.6.1"
4392
4393
  source = "registry+https://github.com/rust-lang/crates.io-index"
4393
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4394
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4394
4395
 
4395
4396
  [[package]]
4396
4397
  name = "xxhash-rust"
@@ -4400,9 +4401,9 @@ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
4400
4401
 
4401
4402
  [[package]]
4402
4403
  name = "yoke"
4403
- version = "0.7.5"
4404
+ version = "0.8.0"
4404
4405
  source = "registry+https://github.com/rust-lang/crates.io-index"
4405
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4406
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4406
4407
  dependencies = [
4407
4408
  "serde",
4408
4409
  "stable_deref_trait",
@@ -4412,9 +4413,9 @@ dependencies = [
4412
4413
 
4413
4414
  [[package]]
4414
4415
  name = "yoke-derive"
4415
- version = "0.7.5"
4416
+ version = "0.8.0"
4416
4417
  source = "registry+https://github.com/rust-lang/crates.io-index"
4417
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4418
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4418
4419
  dependencies = [
4419
4420
  "proc-macro2",
4420
4421
  "quote",
@@ -4424,38 +4425,18 @@ dependencies = [
4424
4425
 
4425
4426
  [[package]]
4426
4427
  name = "zerocopy"
4427
- version = "0.7.35"
4428
- source = "registry+https://github.com/rust-lang/crates.io-index"
4429
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4430
- dependencies = [
4431
- "zerocopy-derive 0.7.35",
4432
- ]
4433
-
4434
- [[package]]
4435
- name = "zerocopy"
4436
- version = "0.8.25"
4437
- source = "registry+https://github.com/rust-lang/crates.io-index"
4438
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
4439
- dependencies = [
4440
- "zerocopy-derive 0.8.25",
4441
- ]
4442
-
4443
- [[package]]
4444
- name = "zerocopy-derive"
4445
- version = "0.7.35"
4428
+ version = "0.8.27"
4446
4429
  source = "registry+https://github.com/rust-lang/crates.io-index"
4447
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4430
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
4448
4431
  dependencies = [
4449
- "proc-macro2",
4450
- "quote",
4451
- "syn",
4432
+ "zerocopy-derive",
4452
4433
  ]
4453
4434
 
4454
4435
  [[package]]
4455
4436
  name = "zerocopy-derive"
4456
- version = "0.8.25"
4437
+ version = "0.8.27"
4457
4438
  source = "registry+https://github.com/rust-lang/crates.io-index"
4458
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
4439
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
4459
4440
  dependencies = [
4460
4441
  "proc-macro2",
4461
4442
  "quote",
@@ -4489,11 +4470,22 @@ version = "1.8.1"
4489
4470
  source = "registry+https://github.com/rust-lang/crates.io-index"
4490
4471
  checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4491
4472
 
4473
+ [[package]]
4474
+ name = "zerotrie"
4475
+ version = "0.2.2"
4476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4477
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4478
+ dependencies = [
4479
+ "displaydoc",
4480
+ "yoke",
4481
+ "zerofrom",
4482
+ ]
4483
+
4492
4484
  [[package]]
4493
4485
  name = "zerovec"
4494
- version = "0.10.4"
4486
+ version = "0.11.4"
4495
4487
  source = "registry+https://github.com/rust-lang/crates.io-index"
4496
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4488
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
4497
4489
  dependencies = [
4498
4490
  "yoke",
4499
4491
  "zerofrom",
@@ -4502,9 +4494,9 @@ dependencies = [
4502
4494
 
4503
4495
  [[package]]
4504
4496
  name = "zerovec-derive"
4505
- version = "0.10.3"
4497
+ version = "0.11.1"
4506
4498
  source = "registry+https://github.com/rust-lang/crates.io-index"
4507
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4499
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4508
4500
  dependencies = [
4509
4501
  "proc-macro2",
4510
4502
  "quote",
@@ -4513,9 +4505,9 @@ dependencies = [
4513
4505
 
4514
4506
  [[package]]
4515
4507
  name = "zlib-rs"
4516
- version = "0.5.0"
4508
+ version = "0.5.2"
4517
4509
  source = "registry+https://github.com/rust-lang/crates.io-index"
4518
- checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
4510
+ checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
4519
4511
 
4520
4512
  [[package]]
4521
4513
  name = "zstd"
@@ -4537,9 +4529,9 @@ dependencies = [
4537
4529
 
4538
4530
  [[package]]
4539
4531
  name = "zstd-sys"
4540
- version = "2.0.15+zstd.1.5.7"
4532
+ version = "2.0.16+zstd.1.5.7"
4541
4533
  source = "registry+https://github.com/rust-lang/crates.io-index"
4542
- checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4534
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4543
4535
  dependencies = [
4544
4536
  "cc",
4545
4537
  "pkg-config",