maplib 0.15.20__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 (240) hide show
  1. {maplib-0.15.20 → maplib-0.17.10}/Cargo.lock +1788 -673
  2. maplib-0.17.10/Cargo.toml +52 -0
  3. {maplib-0.15.20 → maplib-0.17.10}/PKG-INFO +16 -14
  4. {maplib-0.15.20 → maplib-0.17.10}/README.md +10 -10
  5. {maplib-0.15.20 → maplib-0.17.10}/lib/cimxml/src/export.rs +0 -4
  6. {maplib-0.15.20 → maplib-0.17.10}/lib/datalog/src/inference.rs +1 -5
  7. {maplib-0.15.20 → maplib-0.17.10}/lib/file_io/Cargo.toml +1 -2
  8. {maplib-0.15.20 → maplib-0.17.10}/lib/file_io/src/lib.rs +6 -6
  9. {maplib-0.15.20 → maplib-0.17.10}/lib/fts/src/lib.rs +6 -1
  10. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/Cargo.toml +1 -2
  11. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/errors.rs +2 -0
  12. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/lib.rs +0 -2
  13. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/mapping/constant_terms.rs +19 -9
  14. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/mapping/default.rs +6 -6
  15. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/mapping/errors.rs +17 -27
  16. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/mapping/expansion/validation.rs +29 -15
  17. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/mapping/expansion.rs +98 -71
  18. {maplib-0.15.20 → maplib-0.17.10}/lib/maplib/src/mapping.rs +82 -111
  19. {maplib-0.15.20 → maplib-0.17.10}/lib/pydf_io/Cargo.toml +1 -1
  20. {maplib-0.15.20 → maplib-0.17.10}/lib/pydf_io/src/to_python.rs +12 -11
  21. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/Cargo.toml +1 -1
  22. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/aggregates.rs +38 -23
  23. maplib-0.17.10/lib/query_processing/src/cats.rs +231 -0
  24. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/constants.rs +4 -2
  25. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/errors.rs +2 -2
  26. maplib-0.17.10/lib/query_processing/src/expressions/comparisons.rs +167 -0
  27. maplib-0.17.10/lib/query_processing/src/expressions/functions.rs +1976 -0
  28. maplib-0.17.10/lib/query_processing/src/expressions/operations.rs +240 -0
  29. maplib-0.17.10/lib/query_processing/src/expressions.rs +631 -0
  30. maplib-0.17.10/lib/query_processing/src/graph_patterns/cats.rs +120 -0
  31. maplib-0.17.10/lib/query_processing/src/graph_patterns/group.rs +33 -0
  32. maplib-0.17.10/lib/query_processing/src/graph_patterns/join.rs +674 -0
  33. maplib-0.17.10/lib/query_processing/src/graph_patterns/order.rs +135 -0
  34. maplib-0.17.10/lib/query_processing/src/graph_patterns/union.rs +149 -0
  35. maplib-0.17.10/lib/query_processing/src/graph_patterns/values.rs +136 -0
  36. maplib-0.17.10/lib/query_processing/src/graph_patterns.rs +324 -0
  37. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/lib.rs +1 -0
  38. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/pushdowns.rs +32 -16
  39. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/type_constraints.rs +76 -28
  40. {maplib-0.15.20 → maplib-0.17.10}/lib/report_mapping/src/lib.rs +4 -5
  41. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/Cargo.toml +5 -5
  42. maplib-0.17.10/lib/representation/src/base_rdf_type.rs +358 -0
  43. maplib-0.17.10/lib/representation/src/cats/decode.rs +234 -0
  44. maplib-0.17.10/lib/representation/src/cats/encode.rs +642 -0
  45. maplib-0.17.10/lib/representation/src/cats/globalize.rs +63 -0
  46. maplib-0.17.10/lib/representation/src/cats/image.rs +197 -0
  47. maplib-0.17.10/lib/representation/src/cats/re_encode.rs +283 -0
  48. maplib-0.17.10/lib/representation/src/cats/split.rs +73 -0
  49. maplib-0.17.10/lib/representation/src/cats.rs +255 -0
  50. maplib-0.17.10/lib/representation/src/formatting.rs +244 -0
  51. maplib-0.17.10/lib/representation/src/lib.rs +79 -0
  52. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/literals.rs +2 -3
  53. maplib-0.17.10/lib/representation/src/multitype.rs +317 -0
  54. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/polars_to_rdf.rs +126 -79
  55. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/python.rs +64 -67
  56. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/query_context.rs +5 -5
  57. maplib-0.17.10/lib/representation/src/rdf_state.rs +176 -0
  58. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/rdf_to_polars.rs +53 -43
  59. maplib-0.17.10/lib/representation/src/rdf_type.rs +11 -0
  60. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/solution_mapping.rs +38 -23
  61. {maplib-0.15.20 → maplib-0.17.10}/lib/shacl/src/lib.rs +3 -6
  62. {maplib-0.15.20 → maplib-0.17.10}/lib/shacl/src/storage.rs +2 -2
  63. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/query_context.rs +5 -5
  64. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/treehouse.rs +8 -8
  65. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/Cargo.toml +1 -1
  66. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/ast.rs +27 -57
  67. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/constants.rs +5 -0
  68. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/dataset/errors.rs +6 -8
  69. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/dataset.rs +14 -13
  70. maplib-0.17.10/lib/templates/src/lib.rs +55 -0
  71. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/parsing/errors.rs +2 -3
  72. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/parsing/nom_parsing.rs +3 -3
  73. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/python.rs +8 -8
  74. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/resolver.rs +8 -10
  75. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/Cargo.toml +5 -5
  76. maplib-0.17.10/lib/triplestore/src/cats.rs +14 -0
  77. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/dblf.rs +176 -192
  78. maplib-0.17.10/lib/triplestore/src/errors.rs +50 -0
  79. maplib-0.17.10/lib/triplestore/src/lib.rs +712 -0
  80. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/native_parquet_write.rs +6 -7
  81. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/query_solutions.rs +10 -18
  82. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/rdfs_inferencing.rs +3 -15
  83. maplib-0.17.10/lib/triplestore/src/sparql/delete.rs +303 -0
  84. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/errors.rs +12 -2
  85. maplib-0.17.10/lib/triplestore/src/sparql/insert.rs +126 -0
  86. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_aggregate.rs +6 -5
  87. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_expressions.rs +72 -45
  88. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +6 -4
  89. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +7 -5
  90. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +9 -5
  91. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +22 -9
  92. maplib-0.17.10/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +335 -0
  93. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +24 -10
  94. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +7 -5
  95. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +17 -7
  96. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +81 -53
  97. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +7 -4
  98. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +12 -10
  99. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +45 -26
  100. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +11 -7
  101. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +12 -3
  102. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +26 -33
  103. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_order.rs +5 -5
  104. maplib-0.17.10/lib/triplestore/src/sparql/rewrite/rewrite_cse.rs +306 -0
  105. maplib-0.17.10/lib/triplestore/src/sparql/rewrite/rewrite_pushdown.rs +309 -0
  106. maplib-0.17.10/lib/triplestore/src/sparql/rewrite.rs +58 -0
  107. maplib-0.17.10/lib/triplestore/src/sparql.rs +684 -0
  108. maplib-0.17.10/lib/triplestore/src/storage.rs +1285 -0
  109. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/triples_read.rs +31 -28
  110. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/triples_write/fast_ntriples.rs +2 -2
  111. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/triples_write/serializers.rs +5 -76
  112. maplib-0.17.10/lib/triplestore/src/triples_write.rs +180 -0
  113. {maplib-0.15.20 → maplib-0.17.10}/lib/utils/Cargo.toml +1 -2
  114. maplib-0.17.10/lib/utils/src/polars.rs +118 -0
  115. {maplib-0.15.20 → maplib-0.17.10}/maplib/__init__.py +16 -16
  116. {maplib-0.15.20 → maplib-0.17.10}/maplib/__init__.pyi +96 -117
  117. maplib-0.15.20/maplib/add_triples.py → maplib-0.17.10/maplib/adding_triples.py +4 -4
  118. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/Cargo.toml +11 -4
  119. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/README.md +10 -10
  120. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/maplib/__init__.py +16 -16
  121. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/maplib/__init__.pyi +96 -117
  122. maplib-0.15.20/py_maplib/maplib/add_triples.py → maplib-0.17.10/py_maplib/maplib/adding_triples.py +4 -4
  123. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/src/error.rs +5 -1
  124. maplib-0.17.10/py_maplib/src/lib.rs +1526 -0
  125. maplib-0.17.10/py_maplib/src/shacl.rs +140 -0
  126. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/.gitignore +1 -1
  127. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_basics.py +183 -104
  128. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_blank_nodes_multi.py +58 -38
  129. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_data_validation.py +97 -81
  130. maplib-0.17.10/py_maplib/tests/test_exceptions.py +10 -0
  131. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_integration.py +140 -54
  132. maplib-0.17.10/py_maplib/tests/test_multi_expressions.py +1401 -0
  133. maplib-0.17.10/py_maplib/tests/test_pizza_example.py +318 -0
  134. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_programmatic_pizza_example.py +21 -18
  135. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_rdf_parser.py +3 -3
  136. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_read_write.py +21 -21
  137. maplib-0.15.20/lib/maplib/tests/test_stottr.rs → maplib-0.17.10/py_maplib/tests/test_stottr.py +37 -28
  138. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/test_validate_iris.py +7 -7
  139. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_concat.csv +9 -9
  140. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_many_comp.csv +1 -1
  141. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +1 -1
  142. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/simple_construct_query_something.csv +1 -1
  143. {maplib-0.15.20 → maplib-0.17.10}/pyproject.toml +5 -1
  144. maplib-0.15.20/Cargo.toml +0 -49
  145. maplib-0.15.20/lib/maplib/tests/stottr_testdata/.gitignore +0 -1
  146. maplib-0.15.20/lib/query_processing/src/expressions.rs +0 -2023
  147. maplib-0.15.20/lib/query_processing/src/graph_patterns.rs +0 -756
  148. maplib-0.15.20/lib/representation/src/formatting.rs +0 -104
  149. maplib-0.15.20/lib/representation/src/lib.rs +0 -453
  150. maplib-0.15.20/lib/representation/src/multitype.rs +0 -963
  151. maplib-0.15.20/lib/templates/src/lib.rs +0 -30
  152. maplib-0.15.20/lib/triplestore/src/errors.rs +0 -81
  153. maplib-0.15.20/lib/triplestore/src/lib.rs +0 -528
  154. maplib-0.15.20/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +0 -44
  155. maplib-0.15.20/lib/triplestore/src/sparql/pushdowns.rs +0 -402
  156. maplib-0.15.20/lib/triplestore/src/sparql.rs +0 -446
  157. maplib-0.15.20/lib/triplestore/src/storage.rs +0 -806
  158. maplib-0.15.20/lib/triplestore/src/triples_write.rs +0 -112
  159. maplib-0.15.20/lib/utils/src/polars.rs +0 -55
  160. maplib-0.15.20/py_maplib/src/lib.rs +0 -1077
  161. maplib-0.15.20/py_maplib/src/shacl.rs +0 -140
  162. maplib-0.15.20/py_maplib/tests/test_exceptions.py +0 -9
  163. maplib-0.15.20/py_maplib/tests/test_multi_expressions.py +0 -675
  164. maplib-0.15.20/py_maplib/tests/test_pizza_example.py +0 -152
  165. {maplib-0.15.20 → maplib-0.17.10}/LICENSE +0 -0
  166. {maplib-0.15.20 → maplib-0.17.10}/lib/cimxml/Cargo.toml +0 -0
  167. {maplib-0.15.20 → maplib-0.17.10}/lib/cimxml/src/lib.rs +0 -0
  168. {maplib-0.15.20 → maplib-0.17.10}/lib/datalog/Cargo.toml +0 -0
  169. {maplib-0.15.20 → maplib-0.17.10}/lib/datalog/src/ast.rs +0 -0
  170. {maplib-0.15.20 → maplib-0.17.10}/lib/datalog/src/lib.rs +0 -0
  171. {maplib-0.15.20 → maplib-0.17.10}/lib/datalog/src/parser.rs +0 -0
  172. {maplib-0.15.20 → maplib-0.17.10}/lib/fts/Cargo.toml +0 -0
  173. {maplib-0.15.20 → maplib-0.17.10}/lib/pydf_io/LICENSE +0 -0
  174. {maplib-0.15.20 → maplib-0.17.10}/lib/pydf_io/README.md +0 -0
  175. {maplib-0.15.20 → maplib-0.17.10}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  176. {maplib-0.15.20 → maplib-0.17.10}/lib/pydf_io/src/lib.rs +0 -0
  177. {maplib-0.15.20 → maplib-0.17.10}/lib/pydf_io/src/to_rust.rs +0 -0
  178. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/LICENSE +0 -0
  179. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/README.md +0 -0
  180. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/exists_helper.rs +0 -0
  181. {maplib-0.15.20 → maplib-0.17.10}/lib/query_processing/src/find_query_variables.rs +0 -0
  182. {maplib-0.15.20 → maplib-0.17.10}/lib/report_mapping/Cargo.toml +0 -0
  183. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/LICENSE +0 -0
  184. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/README.md +0 -0
  185. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/errors.rs +0 -0
  186. {maplib-0.15.20 → maplib-0.17.10}/lib/representation/src/subtypes.rs +0 -0
  187. {maplib-0.15.20 → maplib-0.17.10}/lib/shacl/Cargo.toml +0 -0
  188. {maplib-0.15.20 → maplib-0.17.10}/lib/shacl/src/errors.rs +0 -0
  189. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/Cargo.toml +1 -1
  190. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/LICENSE +0 -0
  191. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/README.md +0 -0
  192. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/algebra.rs +0 -0
  193. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/lib.rs +0 -0
  194. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/parser.rs +0 -0
  195. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/query.rs +0 -0
  196. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/remove_sugar.rs +0 -0
  197. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/term.rs +0 -0
  198. {maplib-0.15.20 → maplib-0.17.10}/lib/spargebra/src/update.rs +0 -0
  199. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/compatible.rs +0 -0
  200. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/document.rs +0 -0
  201. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/parsing/parser_test.rs +0 -0
  202. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/parsing/parsing_ast.rs +0 -0
  203. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/parsing.rs +0 -0
  204. {maplib-0.15.20 → maplib-0.17.10}/lib/templates/src/subtypes_ext.rs +0 -0
  205. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/io_funcs.rs +0 -0
  206. {maplib-0.15.20 → maplib-0.17.10}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  207. {maplib-0.15.20 → maplib-0.17.10}/lib/utils/src/lib.rs +0 -0
  208. {maplib-0.15.20 → maplib-0.17.10}/maplib/py.typed +0 -0
  209. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/LICENSE +0 -0
  210. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/maplib/.gitignore +0 -0
  211. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/maplib/py.typed +0 -0
  212. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/__init__.py +0 -0
  213. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/out.ttl +0 -0
  214. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/requirements.txt +0 -0
  215. {maplib-0.15.20/lib/maplib/tests/stottr_testdata → maplib-0.17.10/py_maplib/tests/testdata}/expected_easy_case.ttl +0 -0
  216. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  217. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  218. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  219. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  220. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  221. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/larger_query.csv +0 -0
  222. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  223. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  224. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  225. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  226. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  227. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  228. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  229. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  230. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  231. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  232. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  233. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  234. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  235. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  236. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  237. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  238. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  239. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/simple_query.csv +0 -0
  240. {maplib-0.15.20 → maplib-0.17.10}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
@@ -1,6 +1,6 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "addr2line"
@@ -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,17 +89,11 @@ 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
- version = "0.6.2"
94
+ version = "0.6.3"
157
95
  source = "registry+https://github.com/rust-lang/crates.io-index"
158
- checksum = "52424b59d69d69d5056d508b260553afd91c57e21849579cd1f50ee8b8b88eaa"
96
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
159
97
  dependencies = [
160
98
  "num-traits",
161
99
  ]
@@ -166,11 +104,23 @@ version = "0.2.1"
166
104
  source = "registry+https://github.com/rust-lang/crates.io-index"
167
105
  checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
168
106
 
107
+ [[package]]
108
+ name = "arrayref"
109
+ version = "0.3.9"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
112
+
113
+ [[package]]
114
+ name = "arrayvec"
115
+ version = "0.7.6"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
118
+
169
119
  [[package]]
170
120
  name = "async-channel"
171
- version = "2.3.1"
121
+ version = "2.5.0"
172
122
  source = "registry+https://github.com/rust-lang/crates.io-index"
173
- checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
123
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
174
124
  dependencies = [
175
125
  "concurrent-queue",
176
126
  "event-listener-strategy",
@@ -202,9 +152,9 @@ dependencies = [
202
152
 
203
153
  [[package]]
204
154
  name = "async-trait"
205
- version = "0.1.88"
155
+ version = "0.1.89"
206
156
  source = "registry+https://github.com/rust-lang/crates.io-index"
207
- checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
157
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
208
158
  dependencies = [
209
159
  "proc-macro2",
210
160
  "quote",
@@ -213,9 +163,12 @@ dependencies = [
213
163
 
214
164
  [[package]]
215
165
  name = "atoi_simd"
216
- version = "0.16.0"
166
+ version = "0.16.1"
217
167
  source = "registry+https://github.com/rust-lang/crates.io-index"
218
- checksum = "4790f9e8961209112beb783d85449b508673cf4a6a419c8449b210743ac4dbe9"
168
+ checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
169
+ dependencies = [
170
+ "debug_unsafe",
171
+ ]
219
172
 
220
173
  [[package]]
221
174
  name = "atomic-waker"
@@ -225,15 +178,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
225
178
 
226
179
  [[package]]
227
180
  name = "autocfg"
228
- version = "1.4.0"
181
+ version = "1.5.0"
229
182
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
183
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
231
184
 
232
185
  [[package]]
233
186
  name = "backtrace"
234
- version = "0.3.74"
187
+ version = "0.3.75"
235
188
  source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
189
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
237
190
  dependencies = [
238
191
  "addr2line",
239
192
  "cfg-if",
@@ -241,7 +194,7 @@ dependencies = [
241
194
  "miniz_oxide",
242
195
  "object",
243
196
  "rustc-demangle",
244
- "windows-targets",
197
+ "windows-targets 0.52.6",
245
198
  ]
246
199
 
247
200
  [[package]]
@@ -250,17 +203,68 @@ version = "0.22.1"
250
203
  source = "registry+https://github.com/rust-lang/crates.io-index"
251
204
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
252
205
 
206
+ [[package]]
207
+ name = "bincode"
208
+ version = "2.0.1"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
211
+ dependencies = [
212
+ "bincode_derive",
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",
224
+ ]
225
+
253
226
  [[package]]
254
227
  name = "bitflags"
255
- version = "2.9.0"
228
+ version = "2.9.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
231
+ dependencies = [
232
+ "serde",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "blake3"
237
+ version = "1.8.2"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
240
+ dependencies = [
241
+ "arrayref",
242
+ "arrayvec",
243
+ "cc",
244
+ "cfg-if",
245
+ "constant_time_eq",
246
+ ]
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"
256
260
  source = "registry+https://github.com/rust-lang/crates.io-index"
257
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
261
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
258
262
 
259
263
  [[package]]
260
264
  name = "brotli"
261
- version = "7.0.0"
265
+ version = "8.0.2"
262
266
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
- checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
267
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
264
268
  dependencies = [
265
269
  "alloc-no-stdlib",
266
270
  "alloc-stdlib",
@@ -269,9 +273,9 @@ dependencies = [
269
273
 
270
274
  [[package]]
271
275
  name = "brotli-decompressor"
272
- version = "4.0.3"
276
+ version = "5.0.0"
273
277
  source = "registry+https://github.com/rust-lang/crates.io-index"
274
- checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
278
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
275
279
  dependencies = [
276
280
  "alloc-no-stdlib",
277
281
  "alloc-stdlib",
@@ -279,30 +283,36 @@ dependencies = [
279
283
 
280
284
  [[package]]
281
285
  name = "bumpalo"
282
- version = "3.17.0"
286
+ version = "3.19.0"
283
287
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
288
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
285
289
 
286
290
  [[package]]
287
291
  name = "bytemuck"
288
- version = "1.23.0"
292
+ version = "1.23.2"
289
293
  source = "registry+https://github.com/rust-lang/crates.io-index"
290
- checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
294
+ checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
291
295
  dependencies = [
292
296
  "bytemuck_derive",
293
297
  ]
294
298
 
295
299
  [[package]]
296
300
  name = "bytemuck_derive"
297
- version = "1.9.3"
301
+ version = "1.10.1"
298
302
  source = "registry+https://github.com/rust-lang/crates.io-index"
299
- checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
303
+ checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29"
300
304
  dependencies = [
301
305
  "proc-macro2",
302
306
  "quote",
303
307
  "syn",
304
308
  ]
305
309
 
310
+ [[package]]
311
+ name = "byteorder"
312
+ version = "1.5.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
315
+
306
316
  [[package]]
307
317
  name = "bytes"
308
318
  version = "1.10.1"
@@ -314,19 +324,20 @@ dependencies = [
314
324
 
315
325
  [[package]]
316
326
  name = "castaway"
317
- version = "0.2.3"
327
+ version = "0.2.4"
318
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
319
- checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
329
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
320
330
  dependencies = [
321
331
  "rustversion",
322
332
  ]
323
333
 
324
334
  [[package]]
325
335
  name = "cc"
326
- version = "1.2.21"
336
+ version = "1.2.38"
327
337
  source = "registry+https://github.com/rust-lang/crates.io-index"
328
- checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
338
+ checksum = "80f41ae168f955c12fb8960b057d70d0ca153fb83182b57d86380443527be7e9"
329
339
  dependencies = [
340
+ "find-msvc-tools",
330
341
  "jobserver",
331
342
  "libc",
332
343
  "shlex",
@@ -334,45 +345,40 @@ dependencies = [
334
345
 
335
346
  [[package]]
336
347
  name = "cfg-if"
337
- version = "1.0.0"
348
+ version = "1.0.3"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
351
+
352
+ [[package]]
353
+ name = "cfg_aliases"
354
+ version = "0.2.1"
338
355
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
356
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
340
357
 
341
358
  [[package]]
342
359
  name = "chrono"
343
- version = "0.4.41"
360
+ version = "0.4.42"
344
361
  source = "registry+https://github.com/rust-lang/crates.io-index"
345
- checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
362
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
346
363
  dependencies = [
347
- "android-tzdata",
348
364
  "iana-time-zone",
349
365
  "js-sys",
350
366
  "num-traits",
367
+ "serde",
351
368
  "wasm-bindgen",
352
- "windows-link",
369
+ "windows-link 0.2.0",
353
370
  ]
354
371
 
355
372
  [[package]]
356
373
  name = "chrono-tz"
357
- version = "0.10.3"
374
+ version = "0.10.4"
358
375
  source = "registry+https://github.com/rust-lang/crates.io-index"
359
- checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
376
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
360
377
  dependencies = [
361
378
  "chrono",
362
- "chrono-tz-build",
363
379
  "phf",
364
380
  ]
365
381
 
366
- [[package]]
367
- name = "chrono-tz-build"
368
- version = "0.4.1"
369
- source = "registry+https://github.com/rust-lang/crates.io-index"
370
- checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
371
- dependencies = [
372
- "parse-zoneinfo",
373
- "phf_codegen",
374
- ]
375
-
376
382
  [[package]]
377
383
  name = "cimxml"
378
384
  version = "0.1.0"
@@ -383,17 +389,11 @@ dependencies = [
383
389
  "triplestore",
384
390
  ]
385
391
 
386
- [[package]]
387
- name = "colorchoice"
388
- version = "1.0.3"
389
- source = "registry+https://github.com/rust-lang/crates.io-index"
390
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
391
-
392
392
  [[package]]
393
393
  name = "comfy-table"
394
- version = "7.1.4"
394
+ version = "7.2.1"
395
395
  source = "registry+https://github.com/rust-lang/crates.io-index"
396
- checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
396
+ checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
397
397
  dependencies = [
398
398
  "crossterm",
399
399
  "unicode-segmentation",
@@ -402,9 +402,9 @@ dependencies = [
402
402
 
403
403
  [[package]]
404
404
  name = "compact_str"
405
- version = "0.8.1"
405
+ version = "0.9.0"
406
406
  source = "registry+https://github.com/rust-lang/crates.io-index"
407
- checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
407
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
408
408
  dependencies = [
409
409
  "castaway",
410
410
  "cfg-if",
@@ -424,17 +424,42 @@ dependencies = [
424
424
  "crossbeam-utils",
425
425
  ]
426
426
 
427
+ [[package]]
428
+ name = "constant_time_eq"
429
+ version = "0.3.1"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
432
+
433
+ [[package]]
434
+ name = "core-foundation"
435
+ version = "0.10.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
438
+ dependencies = [
439
+ "core-foundation-sys",
440
+ "libc",
441
+ ]
442
+
427
443
  [[package]]
428
444
  name = "core-foundation-sys"
429
445
  version = "0.8.7"
430
446
  source = "registry+https://github.com/rust-lang/crates.io-index"
431
447
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
432
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
+
433
458
  [[package]]
434
459
  name = "crc32fast"
435
- version = "1.4.2"
460
+ version = "1.5.0"
436
461
  source = "registry+https://github.com/rust-lang/crates.io-index"
437
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
462
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
438
463
  dependencies = [
439
464
  "cfg-if",
440
465
  ]
@@ -484,12 +509,13 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
484
509
 
485
510
  [[package]]
486
511
  name = "crossterm"
487
- version = "0.28.1"
512
+ version = "0.29.0"
488
513
  source = "registry+https://github.com/rust-lang/crates.io-index"
489
- checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
514
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
490
515
  dependencies = [
491
516
  "bitflags",
492
517
  "crossterm_winapi",
518
+ "document-features",
493
519
  "parking_lot",
494
520
  "rustix",
495
521
  "winapi",
@@ -504,6 +530,16 @@ dependencies = [
504
530
  "winapi",
505
531
  ]
506
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
+
507
543
  [[package]]
508
544
  name = "datalog"
509
545
  version = "0.1.0"
@@ -516,51 +552,52 @@ dependencies = [
516
552
  ]
517
553
 
518
554
  [[package]]
519
- name = "dyn-clone"
520
- version = "1.0.19"
555
+ name = "debug_unsafe"
556
+ version = "0.1.3"
521
557
  source = "registry+https://github.com/rust-lang/crates.io-index"
522
- checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
558
+ checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
523
559
 
524
560
  [[package]]
525
- name = "either"
526
- version = "1.15.0"
561
+ name = "digest"
562
+ version = "0.10.7"
527
563
  source = "registry+https://github.com/rust-lang/crates.io-index"
528
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
564
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
565
+ dependencies = [
566
+ "block-buffer",
567
+ "crypto-common",
568
+ ]
529
569
 
530
570
  [[package]]
531
- name = "enum_dispatch"
532
- version = "0.3.13"
571
+ name = "displaydoc"
572
+ version = "0.2.5"
533
573
  source = "registry+https://github.com/rust-lang/crates.io-index"
534
- checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
574
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
535
575
  dependencies = [
536
- "once_cell",
537
576
  "proc-macro2",
538
577
  "quote",
539
578
  "syn",
540
579
  ]
541
580
 
542
581
  [[package]]
543
- name = "env_filter"
544
- version = "0.1.3"
582
+ name = "document-features"
583
+ version = "0.2.11"
545
584
  source = "registry+https://github.com/rust-lang/crates.io-index"
546
- checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
585
+ checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
547
586
  dependencies = [
548
- "log",
549
- "regex",
587
+ "litrs",
550
588
  ]
551
589
 
552
590
  [[package]]
553
- name = "env_logger"
554
- version = "0.11.8"
591
+ name = "dyn-clone"
592
+ version = "1.0.20"
555
593
  source = "registry+https://github.com/rust-lang/crates.io-index"
556
- checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
557
- dependencies = [
558
- "anstream",
559
- "anstyle",
560
- "env_filter",
561
- "jiff",
562
- "log",
563
- ]
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"
564
601
 
565
602
  [[package]]
566
603
  name = "equivalent"
@@ -570,25 +607,25 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
570
607
 
571
608
  [[package]]
572
609
  name = "errno"
573
- version = "0.3.11"
610
+ version = "0.3.14"
574
611
  source = "registry+https://github.com/rust-lang/crates.io-index"
575
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
612
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
576
613
  dependencies = [
577
614
  "libc",
578
- "windows-sys 0.59.0",
615
+ "windows-sys 0.61.0",
579
616
  ]
580
617
 
581
618
  [[package]]
582
619
  name = "ethnum"
583
- version = "1.5.1"
620
+ version = "1.5.2"
584
621
  source = "registry+https://github.com/rust-lang/crates.io-index"
585
- checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
622
+ checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
586
623
 
587
624
  [[package]]
588
625
  name = "event-listener"
589
- version = "5.4.0"
626
+ version = "5.4.1"
590
627
  source = "registry+https://github.com/rust-lang/crates.io-index"
591
- checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
628
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
592
629
  dependencies = [
593
630
  "concurrent-queue",
594
631
  "parking",
@@ -623,14 +660,19 @@ version = "0.5.0"
623
660
  dependencies = [
624
661
  "polars",
625
662
  "thiserror",
626
- "uuid",
627
663
  ]
628
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
+
629
671
  [[package]]
630
672
  name = "flate2"
631
- version = "1.1.1"
673
+ version = "1.1.2"
632
674
  source = "registry+https://github.com/rust-lang/crates.io-index"
633
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
675
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
634
676
  dependencies = [
635
677
  "crc32fast",
636
678
  "libz-rs-sys",
@@ -646,12 +688,37 @@ dependencies = [
646
688
  "num-traits",
647
689
  ]
648
690
 
691
+ [[package]]
692
+ name = "fnv"
693
+ version = "1.0.7"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
696
+
649
697
  [[package]]
650
698
  name = "foldhash"
651
699
  version = "0.1.5"
652
700
  source = "registry+https://github.com/rust-lang/crates.io-index"
653
701
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
654
702
 
703
+ [[package]]
704
+ name = "form_urlencoded"
705
+ version = "1.2.2"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
708
+ dependencies = [
709
+ "percent-encoding",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "fs4"
714
+ version = "0.13.1"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
717
+ dependencies = [
718
+ "rustix",
719
+ "windows-sys 0.59.0",
720
+ ]
721
+
655
722
  [[package]]
656
723
  name = "fts"
657
724
  version = "0.1.0"
@@ -777,6 +844,16 @@ dependencies = [
777
844
  "slab",
778
845
  ]
779
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
+
780
857
  [[package]]
781
858
  name = "getrandom"
782
859
  version = "0.2.16"
@@ -786,20 +863,22 @@ dependencies = [
786
863
  "cfg-if",
787
864
  "js-sys",
788
865
  "libc",
789
- "wasi 0.11.0+wasi-snapshot-preview1",
866
+ "wasi 0.11.1+wasi-snapshot-preview1",
790
867
  "wasm-bindgen",
791
868
  ]
792
869
 
793
870
  [[package]]
794
871
  name = "getrandom"
795
- version = "0.3.2"
872
+ version = "0.3.3"
796
873
  source = "registry+https://github.com/rust-lang/crates.io-index"
797
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
874
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
798
875
  dependencies = [
799
876
  "cfg-if",
877
+ "js-sys",
800
878
  "libc",
801
879
  "r-efi",
802
- "wasi 0.14.2+wasi-0.2.4",
880
+ "wasi 0.14.7+wasi-0.2.4",
881
+ "wasm-bindgen",
803
882
  ]
804
883
 
805
884
  [[package]]
@@ -810,37 +889,44 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
810
889
 
811
890
  [[package]]
812
891
  name = "glob"
813
- version = "0.3.2"
892
+ version = "0.3.3"
814
893
  source = "registry+https://github.com/rust-lang/crates.io-index"
815
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
894
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
816
895
 
817
896
  [[package]]
818
- name = "halfbrown"
819
- version = "0.2.5"
897
+ name = "h2"
898
+ version = "0.4.12"
820
899
  source = "registry+https://github.com/rust-lang/crates.io-index"
821
- checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
900
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
822
901
  dependencies = [
823
- "hashbrown 0.14.5",
824
- "serde",
902
+ "atomic-waker",
903
+ "bytes",
904
+ "fnv",
905
+ "futures-core",
906
+ "futures-sink",
907
+ "http",
908
+ "indexmap",
909
+ "slab",
910
+ "tokio",
911
+ "tokio-util",
912
+ "tracing",
825
913
  ]
826
914
 
827
915
  [[package]]
828
- name = "hashbrown"
829
- version = "0.14.5"
916
+ name = "halfbrown"
917
+ version = "0.3.0"
830
918
  source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
919
+ checksum = "aa2c385c6df70fd180bbb673d93039dbd2cd34e41d782600bdf6e1ca7bce39aa"
832
920
  dependencies = [
833
- "ahash",
834
- "allocator-api2",
835
- "rayon",
921
+ "hashbrown 0.15.5",
836
922
  "serde",
837
923
  ]
838
924
 
839
925
  [[package]]
840
926
  name = "hashbrown"
841
- version = "0.15.3"
927
+ version = "0.15.5"
842
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
843
- checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
929
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
844
930
  dependencies = [
845
931
  "allocator-api2",
846
932
  "equivalent",
@@ -849,6 +935,12 @@ dependencies = [
849
935
  "serde",
850
936
  ]
851
937
 
938
+ [[package]]
939
+ name = "hashbrown"
940
+ version = "0.16.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
943
+
852
944
  [[package]]
853
945
  name = "heck"
854
946
  version = "0.5.0"
@@ -857,9 +949,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
857
949
 
858
950
  [[package]]
859
951
  name = "hermit-abi"
860
- version = "0.3.9"
952
+ version = "0.5.2"
861
953
  source = "registry+https://github.com/rust-lang/crates.io-index"
862
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
954
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
863
955
 
864
956
  [[package]]
865
957
  name = "hex"
@@ -877,117 +969,340 @@ dependencies = [
877
969
  ]
878
970
 
879
971
  [[package]]
880
- name = "iana-time-zone"
881
- version = "0.1.63"
972
+ name = "http"
973
+ version = "1.3.1"
882
974
  source = "registry+https://github.com/rust-lang/crates.io-index"
883
- checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
975
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
884
976
  dependencies = [
885
- "android_system_properties",
886
- "core-foundation-sys",
887
- "iana-time-zone-haiku",
888
- "js-sys",
889
- "log",
890
- "wasm-bindgen",
891
- "windows-core 0.61.0",
977
+ "bytes",
978
+ "fnv",
979
+ "itoa",
892
980
  ]
893
981
 
894
982
  [[package]]
895
- name = "iana-time-zone-haiku"
896
- version = "0.1.2"
983
+ name = "http-body"
984
+ version = "1.0.1"
897
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
898
- checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
986
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
899
987
  dependencies = [
900
- "cc",
988
+ "bytes",
989
+ "http",
901
990
  ]
902
991
 
903
992
  [[package]]
904
- name = "indexmap"
905
- version = "2.9.0"
993
+ name = "http-body-util"
994
+ version = "0.1.3"
906
995
  source = "registry+https://github.com/rust-lang/crates.io-index"
907
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
996
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
908
997
  dependencies = [
909
- "equivalent",
910
- "hashbrown 0.15.3",
911
- "serde",
998
+ "bytes",
999
+ "futures-core",
1000
+ "http",
1001
+ "http-body",
1002
+ "pin-project-lite",
912
1003
  ]
913
1004
 
914
1005
  [[package]]
915
- name = "indoc"
916
- version = "2.0.6"
1006
+ name = "httparse"
1007
+ version = "1.10.1"
917
1008
  source = "registry+https://github.com/rust-lang/crates.io-index"
918
- checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1009
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
919
1010
 
920
1011
  [[package]]
921
- name = "is_terminal_polyfill"
922
- version = "1.70.1"
1012
+ name = "humantime"
1013
+ version = "2.3.0"
923
1014
  source = "registry+https://github.com/rust-lang/crates.io-index"
924
- checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1015
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
925
1016
 
926
1017
  [[package]]
927
- name = "itoa"
928
- version = "1.0.15"
1018
+ name = "hyper"
1019
+ version = "1.7.0"
929
1020
  source = "registry+https://github.com/rust-lang/crates.io-index"
930
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1021
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1022
+ dependencies = [
1023
+ "atomic-waker",
1024
+ "bytes",
1025
+ "futures-channel",
1026
+ "futures-core",
1027
+ "h2",
1028
+ "http",
1029
+ "http-body",
1030
+ "httparse",
1031
+ "itoa",
1032
+ "pin-project-lite",
1033
+ "pin-utils",
1034
+ "smallvec",
1035
+ "tokio",
1036
+ "want",
1037
+ ]
931
1038
 
932
1039
  [[package]]
933
- name = "jemalloc-sys"
934
- version = "0.5.4+5.3.0-patched"
1040
+ name = "hyper-rustls"
1041
+ version = "0.27.7"
935
1042
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
- checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
1043
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
937
1044
  dependencies = [
938
- "cc",
939
- "libc",
1045
+ "http",
1046
+ "hyper",
1047
+ "hyper-util",
1048
+ "rustls",
1049
+ "rustls-native-certs",
1050
+ "rustls-pki-types",
1051
+ "tokio",
1052
+ "tokio-rustls",
1053
+ "tower-service",
940
1054
  ]
941
1055
 
942
1056
  [[package]]
943
- name = "jemallocator"
944
- version = "0.5.4"
1057
+ name = "hyper-util"
1058
+ version = "0.1.17"
945
1059
  source = "registry+https://github.com/rust-lang/crates.io-index"
946
- checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
1060
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
947
1061
  dependencies = [
948
- "jemalloc-sys",
1062
+ "base64",
1063
+ "bytes",
1064
+ "futures-channel",
1065
+ "futures-core",
1066
+ "futures-util",
1067
+ "http",
1068
+ "http-body",
1069
+ "hyper",
1070
+ "ipnet",
949
1071
  "libc",
1072
+ "percent-encoding",
1073
+ "pin-project-lite",
1074
+ "socket2",
1075
+ "tokio",
1076
+ "tower-service",
1077
+ "tracing",
950
1078
  ]
951
1079
 
952
1080
  [[package]]
953
- name = "jiff"
954
- version = "0.2.13"
1081
+ name = "iana-time-zone"
1082
+ version = "0.1.64"
955
1083
  source = "registry+https://github.com/rust-lang/crates.io-index"
956
- checksum = "f02000660d30638906021176af16b17498bd0d12813dbfe7b276d8bc7f3c0806"
1084
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
957
1085
  dependencies = [
958
- "jiff-static",
1086
+ "android_system_properties",
1087
+ "core-foundation-sys",
1088
+ "iana-time-zone-haiku",
1089
+ "js-sys",
959
1090
  "log",
960
- "portable-atomic",
961
- "portable-atomic-util",
1091
+ "wasm-bindgen",
1092
+ "windows-core",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "iana-time-zone-haiku"
1097
+ version = "0.1.2"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1100
+ dependencies = [
1101
+ "cc",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "icu_collections"
1106
+ version = "2.0.0"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1109
+ dependencies = [
1110
+ "displaydoc",
1111
+ "potential_utf",
1112
+ "yoke",
1113
+ "zerofrom",
1114
+ "zerovec",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "icu_locale_core"
1119
+ version = "2.0.0"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1122
+ dependencies = [
1123
+ "displaydoc",
1124
+ "litemap",
1125
+ "tinystr",
1126
+ "writeable",
1127
+ "zerovec",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "icu_normalizer"
1132
+ version = "2.0.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1135
+ dependencies = [
1136
+ "displaydoc",
1137
+ "icu_collections",
1138
+ "icu_normalizer_data",
1139
+ "icu_properties",
1140
+ "icu_provider",
1141
+ "smallvec",
1142
+ "zerovec",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "icu_normalizer_data"
1147
+ version = "2.0.0"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1150
+
1151
+ [[package]]
1152
+ name = "icu_properties"
1153
+ version = "2.0.1"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1156
+ dependencies = [
1157
+ "displaydoc",
1158
+ "icu_collections",
1159
+ "icu_locale_core",
1160
+ "icu_properties_data",
1161
+ "icu_provider",
1162
+ "potential_utf",
1163
+ "zerotrie",
1164
+ "zerovec",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "icu_properties_data"
1169
+ version = "2.0.1"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1172
+
1173
+ [[package]]
1174
+ name = "icu_provider"
1175
+ version = "2.0.0"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1178
+ dependencies = [
1179
+ "displaydoc",
1180
+ "icu_locale_core",
1181
+ "stable_deref_trait",
1182
+ "tinystr",
1183
+ "writeable",
1184
+ "yoke",
1185
+ "zerofrom",
1186
+ "zerotrie",
1187
+ "zerovec",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "idna"
1192
+ version = "1.1.0"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1195
+ dependencies = [
1196
+ "idna_adapter",
1197
+ "smallvec",
1198
+ "utf8_iter",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "idna_adapter"
1203
+ version = "1.2.1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1206
+ dependencies = [
1207
+ "icu_normalizer",
1208
+ "icu_properties",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "indexmap"
1213
+ version = "2.11.4"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
1216
+ dependencies = [
1217
+ "equivalent",
1218
+ "hashbrown 0.16.0",
1219
+ "serde",
1220
+ "serde_core",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "indoc"
1225
+ version = "2.0.6"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
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
+
1240
+ [[package]]
1241
+ name = "ipnet"
1242
+ version = "2.11.0"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1245
+
1246
+ [[package]]
1247
+ name = "iri-string"
1248
+ version = "0.7.8"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1251
+ dependencies = [
1252
+ "memchr",
962
1253
  "serde",
963
1254
  ]
964
1255
 
965
1256
  [[package]]
966
- name = "jiff-static"
967
- version = "0.2.13"
1257
+ name = "itertools"
1258
+ version = "0.14.0"
968
1259
  source = "registry+https://github.com/rust-lang/crates.io-index"
969
- checksum = "f3c30758ddd7188629c6713fc45d1188af4f44c90582311d0c8d8c9907f60c48"
1260
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
970
1261
  dependencies = [
971
- "proc-macro2",
972
- "quote",
973
- "syn",
1262
+ "either",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "itoa"
1267
+ version = "1.0.15"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1270
+
1271
+ [[package]]
1272
+ name = "jemalloc-sys"
1273
+ version = "0.5.4+5.3.0-patched"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
1276
+ dependencies = [
1277
+ "cc",
1278
+ "libc",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "jemallocator"
1283
+ version = "0.5.4"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
1286
+ dependencies = [
1287
+ "jemalloc-sys",
1288
+ "libc",
974
1289
  ]
975
1290
 
976
1291
  [[package]]
977
1292
  name = "jobserver"
978
- version = "0.1.33"
1293
+ version = "0.1.34"
979
1294
  source = "registry+https://github.com/rust-lang/crates.io-index"
980
- checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1295
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
981
1296
  dependencies = [
982
- "getrandom 0.3.2",
1297
+ "getrandom 0.3.3",
983
1298
  "libc",
984
1299
  ]
985
1300
 
986
1301
  [[package]]
987
1302
  name = "js-sys"
988
- version = "0.3.77"
1303
+ version = "0.3.80"
989
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
990
- checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1305
+ checksum = "852f13bec5eba4ba9afbeb93fd7c13fe56147f055939ae21c43a29a0ecb2702e"
991
1306
  dependencies = [
992
1307
  "once_cell",
993
1308
  "wasm-bindgen",
@@ -999,23 +1314,29 @@ version = "0.2.2"
999
1314
  source = "registry+https://github.com/rust-lang/crates.io-index"
1000
1315
  checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
1001
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
+
1002
1323
  [[package]]
1003
1324
  name = "libc"
1004
- version = "0.2.172"
1325
+ version = "0.2.175"
1005
1326
  source = "registry+https://github.com/rust-lang/crates.io-index"
1006
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1327
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1007
1328
 
1008
1329
  [[package]]
1009
1330
  name = "libm"
1010
- version = "0.2.14"
1331
+ version = "0.2.15"
1011
1332
  source = "registry+https://github.com/rust-lang/crates.io-index"
1012
- checksum = "a25169bd5913a4b437588a7e3d127cd6e90127b60e0ffbd834a38f1599e016b8"
1333
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1013
1334
 
1014
1335
  [[package]]
1015
1336
  name = "libmimalloc-sys"
1016
- version = "0.1.42"
1337
+ version = "0.1.44"
1017
1338
  source = "registry+https://github.com/rust-lang/crates.io-index"
1018
- checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
1339
+ checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
1019
1340
  dependencies = [
1020
1341
  "cc",
1021
1342
  "libc",
@@ -1023,24 +1344,36 @@ dependencies = [
1023
1344
 
1024
1345
  [[package]]
1025
1346
  name = "libz-rs-sys"
1026
- version = "0.5.0"
1347
+ version = "0.5.2"
1027
1348
  source = "registry+https://github.com/rust-lang/crates.io-index"
1028
- checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
1349
+ checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
1029
1350
  dependencies = [
1030
1351
  "zlib-rs",
1031
1352
  ]
1032
1353
 
1033
1354
  [[package]]
1034
1355
  name = "linux-raw-sys"
1035
- version = "0.4.15"
1356
+ version = "0.11.0"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1359
+
1360
+ [[package]]
1361
+ name = "litemap"
1362
+ version = "0.8.0"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1365
+
1366
+ [[package]]
1367
+ name = "litrs"
1368
+ version = "0.4.2"
1036
1369
  source = "registry+https://github.com/rust-lang/crates.io-index"
1037
- checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1370
+ checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed"
1038
1371
 
1039
1372
  [[package]]
1040
1373
  name = "lock_api"
1041
- version = "0.4.12"
1374
+ version = "0.4.13"
1042
1375
  source = "registry+https://github.com/rust-lang/crates.io-index"
1043
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1376
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1044
1377
  dependencies = [
1045
1378
  "autocfg",
1046
1379
  "scopeguard",
@@ -1048,9 +1381,15 @@ dependencies = [
1048
1381
 
1049
1382
  [[package]]
1050
1383
  name = "log"
1051
- version = "0.4.27"
1384
+ version = "0.4.28"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1387
+
1388
+ [[package]]
1389
+ name = "lru-slab"
1390
+ version = "0.1.2"
1052
1391
  source = "registry+https://github.com/rust-lang/crates.io-index"
1053
- checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1392
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1054
1393
 
1055
1394
  [[package]]
1056
1395
  name = "lz4"
@@ -1079,8 +1418,6 @@ dependencies = [
1079
1418
  "chrono-tz",
1080
1419
  "cimxml",
1081
1420
  "datalog",
1082
- "env_logger",
1083
- "log",
1084
1421
  "oxiri",
1085
1422
  "oxrdf",
1086
1423
  "oxrdfio",
@@ -1093,15 +1430,25 @@ dependencies = [
1093
1430
  "shacl",
1094
1431
  "templates",
1095
1432
  "thiserror",
1433
+ "tracing",
1096
1434
  "triplestore",
1097
1435
  "uuid",
1098
1436
  ]
1099
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
+
1100
1447
  [[package]]
1101
1448
  name = "matrixmultiply"
1102
- version = "0.3.9"
1449
+ version = "0.3.10"
1103
1450
  source = "registry+https://github.com/rust-lang/crates.io-index"
1104
- checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
1451
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1105
1452
  dependencies = [
1106
1453
  "autocfg",
1107
1454
  "rawpointer",
@@ -1109,15 +1456,15 @@ dependencies = [
1109
1456
 
1110
1457
  [[package]]
1111
1458
  name = "memchr"
1112
- version = "2.7.4"
1459
+ version = "2.7.5"
1113
1460
  source = "registry+https://github.com/rust-lang/crates.io-index"
1114
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1461
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1115
1462
 
1116
1463
  [[package]]
1117
1464
  name = "memmap2"
1118
- version = "0.9.5"
1465
+ version = "0.9.8"
1119
1466
  source = "registry+https://github.com/rust-lang/crates.io-index"
1120
- checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
1467
+ checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
1121
1468
  dependencies = [
1122
1469
  "libc",
1123
1470
  ]
@@ -1133,9 +1480,9 @@ dependencies = [
1133
1480
 
1134
1481
  [[package]]
1135
1482
  name = "mimalloc"
1136
- version = "0.1.46"
1483
+ version = "0.1.48"
1137
1484
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
1485
+ checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
1139
1486
  dependencies = [
1140
1487
  "libmimalloc-sys",
1141
1488
  ]
@@ -1148,22 +1495,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1148
1495
 
1149
1496
  [[package]]
1150
1497
  name = "miniz_oxide"
1151
- version = "0.8.8"
1498
+ version = "0.8.9"
1152
1499
  source = "registry+https://github.com/rust-lang/crates.io-index"
1153
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1500
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1154
1501
  dependencies = [
1155
1502
  "adler2",
1156
1503
  ]
1157
1504
 
1158
1505
  [[package]]
1159
1506
  name = "mio"
1160
- version = "1.0.3"
1507
+ version = "1.0.4"
1161
1508
  source = "registry+https://github.com/rust-lang/crates.io-index"
1162
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1509
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1163
1510
  dependencies = [
1164
1511
  "libc",
1165
- "wasi 0.11.0+wasi-snapshot-preview1",
1166
- "windows-sys 0.52.0",
1512
+ "wasi 0.11.1+wasi-snapshot-preview1",
1513
+ "windows-sys 0.59.0",
1167
1514
  ]
1168
1515
 
1169
1516
  [[package]]
@@ -1181,6 +1528,12 @@ dependencies = [
1181
1528
  "rawpointer",
1182
1529
  ]
1183
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
+
1184
1537
  [[package]]
1185
1538
  name = "nom"
1186
1539
  version = "7.1.3"
@@ -1201,12 +1554,12 @@ dependencies = [
1201
1554
  ]
1202
1555
 
1203
1556
  [[package]]
1204
- name = "ntapi"
1205
- version = "0.4.1"
1557
+ name = "nu-ansi-term"
1558
+ version = "0.50.1"
1206
1559
  source = "registry+https://github.com/rust-lang/crates.io-index"
1207
- checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1560
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1208
1561
  dependencies = [
1209
- "winapi",
1562
+ "windows-sys 0.52.0",
1210
1563
  ]
1211
1564
 
1212
1565
  [[package]]
@@ -1249,9 +1602,9 @@ dependencies = [
1249
1602
 
1250
1603
  [[package]]
1251
1604
  name = "num_cpus"
1252
- version = "1.16.0"
1605
+ version = "1.17.0"
1253
1606
  source = "registry+https://github.com/rust-lang/crates.io-index"
1254
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1607
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1255
1608
  dependencies = [
1256
1609
  "hermit-abi",
1257
1610
  "libc",
@@ -1266,12 +1619,53 @@ dependencies = [
1266
1619
  "memchr",
1267
1620
  ]
1268
1621
 
1622
+ [[package]]
1623
+ name = "object_store"
1624
+ version = "0.12.3"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "efc4f07659e11cd45a341cd24d71e683e3be65d9ff1f8150061678fe60437496"
1627
+ dependencies = [
1628
+ "async-trait",
1629
+ "base64",
1630
+ "bytes",
1631
+ "chrono",
1632
+ "form_urlencoded",
1633
+ "futures",
1634
+ "http",
1635
+ "http-body-util",
1636
+ "humantime",
1637
+ "hyper",
1638
+ "itertools",
1639
+ "parking_lot",
1640
+ "percent-encoding",
1641
+ "quick-xml 0.38.3",
1642
+ "rand 0.9.2",
1643
+ "reqwest",
1644
+ "ring",
1645
+ "serde",
1646
+ "serde_json",
1647
+ "serde_urlencoded",
1648
+ "thiserror",
1649
+ "tokio",
1650
+ "tracing",
1651
+ "url",
1652
+ "walkdir",
1653
+ "wasm-bindgen-futures",
1654
+ "web-time",
1655
+ ]
1656
+
1269
1657
  [[package]]
1270
1658
  name = "once_cell"
1271
1659
  version = "1.21.3"
1272
1660
  source = "registry+https://github.com/rust-lang/crates.io-index"
1273
1661
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1274
1662
 
1663
+ [[package]]
1664
+ name = "openssl-probe"
1665
+ version = "0.1.6"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1668
+
1275
1669
  [[package]]
1276
1670
  name = "oxilangtag"
1277
1671
  version = "0.1.5"
@@ -1287,6 +1681,18 @@ version = "0.2.11"
1287
1681
  source = "registry+https://github.com/rust-lang/crates.io-index"
1288
1682
  checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
1289
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
+
1290
1696
  [[package]]
1291
1697
  name = "oxrdf"
1292
1698
  version = "0.2.4"
@@ -1302,10 +1708,11 @@ dependencies = [
1302
1708
 
1303
1709
  [[package]]
1304
1710
  name = "oxrdfio"
1305
- version = "0.1.7"
1711
+ version = "0.1.8"
1306
1712
  source = "registry+https://github.com/rust-lang/crates.io-index"
1307
- checksum = "47d45d81e8e5313e13f88da6c040f5edcd5aa48e91d1cdf0972f5bc79362890d"
1713
+ checksum = "14d33dd87769786a0bb7de342865e33bf0c6e9872fa76f1ede23e944fdc77898"
1308
1714
  dependencies = [
1715
+ "oxjsonld",
1309
1716
  "oxrdf",
1310
1717
  "oxrdfxml",
1311
1718
  "oxttl",
@@ -1314,14 +1721,14 @@ dependencies = [
1314
1721
 
1315
1722
  [[package]]
1316
1723
  name = "oxrdfxml"
1317
- version = "0.1.6"
1724
+ version = "0.1.7"
1318
1725
  source = "registry+https://github.com/rust-lang/crates.io-index"
1319
- checksum = "7e00a36021b71d74281cf9ffbbda57210bb9cb84b7f28bda50a3ee9641b6ce5d"
1726
+ checksum = "d8d4bf9c5331127f01efbd1245d90fd75b7c546a97cb3e95461121ce1ad5b1c8"
1320
1727
  dependencies = [
1321
1728
  "oxilangtag",
1322
1729
  "oxiri",
1323
1730
  "oxrdf",
1324
- "quick-xml",
1731
+ "quick-xml 0.37.5",
1325
1732
  "thiserror",
1326
1733
  ]
1327
1734
 
@@ -1336,9 +1743,9 @@ dependencies = [
1336
1743
 
1337
1744
  [[package]]
1338
1745
  name = "oxttl"
1339
- version = "0.1.7"
1746
+ version = "0.1.8"
1340
1747
  source = "registry+https://github.com/rust-lang/crates.io-index"
1341
- checksum = "2bc2f05b9179f1033582fe3ae58a96cb4311dd1a2116791c3236117d5427f275"
1748
+ checksum = "0d385f1776d7cace455ef6b7c54407838eff902ca897303d06eb12a26f4cf8a0"
1342
1749
  dependencies = [
1343
1750
  "memchr",
1344
1751
  "oxilangtag",
@@ -1355,9 +1762,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1355
1762
 
1356
1763
  [[package]]
1357
1764
  name = "parking_lot"
1358
- version = "0.12.3"
1765
+ version = "0.12.4"
1359
1766
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1767
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1361
1768
  dependencies = [
1362
1769
  "lock_api",
1363
1770
  "parking_lot_core",
@@ -1365,25 +1772,22 @@ dependencies = [
1365
1772
 
1366
1773
  [[package]]
1367
1774
  name = "parking_lot_core"
1368
- version = "0.9.10"
1775
+ version = "0.9.11"
1369
1776
  source = "registry+https://github.com/rust-lang/crates.io-index"
1370
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1777
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1371
1778
  dependencies = [
1372
1779
  "cfg-if",
1373
1780
  "libc",
1374
1781
  "redox_syscall",
1375
1782
  "smallvec",
1376
- "windows-targets",
1783
+ "windows-targets 0.52.6",
1377
1784
  ]
1378
1785
 
1379
1786
  [[package]]
1380
- name = "parse-zoneinfo"
1381
- version = "0.3.1"
1787
+ name = "paste"
1788
+ version = "1.0.15"
1382
1789
  source = "registry+https://github.com/rust-lang/crates.io-index"
1383
- checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
1384
- dependencies = [
1385
- "regex",
1386
- ]
1790
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1387
1791
 
1388
1792
  [[package]]
1389
1793
  name = "peg"
@@ -1414,44 +1818,24 @@ checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
1414
1818
 
1415
1819
  [[package]]
1416
1820
  name = "percent-encoding"
1417
- version = "2.3.1"
1821
+ version = "2.3.2"
1418
1822
  source = "registry+https://github.com/rust-lang/crates.io-index"
1419
- checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1823
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1420
1824
 
1421
1825
  [[package]]
1422
1826
  name = "phf"
1423
- version = "0.11.3"
1424
- source = "registry+https://github.com/rust-lang/crates.io-index"
1425
- checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1426
- dependencies = [
1427
- "phf_shared",
1428
- ]
1429
-
1430
- [[package]]
1431
- name = "phf_codegen"
1432
- version = "0.11.3"
1433
- source = "registry+https://github.com/rust-lang/crates.io-index"
1434
- checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1435
- dependencies = [
1436
- "phf_generator",
1437
- "phf_shared",
1438
- ]
1439
-
1440
- [[package]]
1441
- name = "phf_generator"
1442
- version = "0.11.3"
1827
+ version = "0.12.1"
1443
1828
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1829
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1445
1830
  dependencies = [
1446
1831
  "phf_shared",
1447
- "rand 0.8.5",
1448
1832
  ]
1449
1833
 
1450
1834
  [[package]]
1451
1835
  name = "phf_shared"
1452
- version = "0.11.3"
1836
+ version = "0.12.1"
1453
1837
  source = "registry+https://github.com/rust-lang/crates.io-index"
1454
- checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1838
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1455
1839
  dependencies = [
1456
1840
  "siphasher",
1457
1841
  ]
@@ -1476,19 +1860,22 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1476
1860
 
1477
1861
  [[package]]
1478
1862
  name = "planus"
1479
- version = "0.3.1"
1863
+ version = "1.1.1"
1480
1864
  source = "registry+https://github.com/rust-lang/crates.io-index"
1481
- checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
1865
+ checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
1482
1866
  dependencies = [
1483
1867
  "array-init-cursor",
1868
+ "hashbrown 0.15.5",
1484
1869
  ]
1485
1870
 
1486
1871
  [[package]]
1487
1872
  name = "polars"
1488
- version = "0.46.0"
1489
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1873
+ version = "0.51.0"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "a5f7feb5d56b954e691dff22a8b2d78d77433dcc93c35fe21c3777fdc121b697"
1490
1876
  dependencies = [
1491
1877
  "getrandom 0.2.16",
1878
+ "getrandom 0.3.3",
1492
1879
  "polars-arrow",
1493
1880
  "polars-core",
1494
1881
  "polars-error",
@@ -1505,10 +1892,12 @@ dependencies = [
1505
1892
 
1506
1893
  [[package]]
1507
1894
  name = "polars-arrow"
1508
- version = "0.46.0"
1509
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1895
+ version = "0.51.0"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "32b4fed2343961b3eea3db2cee165540c3e1ad9d5782350cc55a9e76cf440148"
1510
1898
  dependencies = [
1511
1899
  "atoi_simd",
1900
+ "bitflags",
1512
1901
  "bytemuck",
1513
1902
  "chrono",
1514
1903
  "chrono-tz",
@@ -1516,18 +1905,18 @@ dependencies = [
1516
1905
  "either",
1517
1906
  "ethnum",
1518
1907
  "getrandom 0.2.16",
1519
- "hashbrown 0.15.3",
1908
+ "getrandom 0.3.3",
1909
+ "hashbrown 0.15.5",
1520
1910
  "itoa",
1521
1911
  "lz4",
1522
1912
  "num-traits",
1523
- "parking_lot",
1524
1913
  "polars-arrow-format",
1525
1914
  "polars-error",
1526
1915
  "polars-schema",
1527
1916
  "polars-utils",
1917
+ "serde",
1528
1918
  "simdutf8",
1529
1919
  "streaming-iterator",
1530
- "strength_reduce",
1531
1920
  "strum_macros",
1532
1921
  "version_check",
1533
1922
  "zstd",
@@ -1535,9 +1924,9 @@ dependencies = [
1535
1924
 
1536
1925
  [[package]]
1537
1926
  name = "polars-arrow-format"
1538
- version = "0.1.0"
1927
+ version = "0.2.1"
1539
1928
  source = "registry+https://github.com/rust-lang/crates.io-index"
1540
- checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
1929
+ checksum = "a556ac0ee744e61e167f34c1eb0013ce740e0ee6cd8c158b2ec0b518f10e6675"
1541
1930
  dependencies = [
1542
1931
  "planus",
1543
1932
  "serde",
@@ -1545,22 +1934,25 @@ dependencies = [
1545
1934
 
1546
1935
  [[package]]
1547
1936
  name = "polars-compute"
1548
- version = "0.46.0"
1549
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1937
+ version = "0.51.0"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "138785beda4e4a90a025219f09d0d15a671b2be9091513ede58e05db6ad4413f"
1550
1940
  dependencies = [
1551
1941
  "atoi_simd",
1552
1942
  "bytemuck",
1553
1943
  "chrono",
1554
1944
  "either",
1555
1945
  "fast-float2",
1556
- "hashbrown 0.15.3",
1946
+ "hashbrown 0.15.5",
1557
1947
  "itoa",
1558
1948
  "num-traits",
1559
1949
  "polars-arrow",
1560
1950
  "polars-error",
1561
1951
  "polars-utils",
1562
- "rand 0.8.5",
1952
+ "rand 0.9.2",
1563
1953
  "ryu",
1954
+ "serde",
1955
+ "skiplist",
1564
1956
  "strength_reduce",
1565
1957
  "strum_macros",
1566
1958
  "version_check",
@@ -1568,40 +1960,62 @@ dependencies = [
1568
1960
 
1569
1961
  [[package]]
1570
1962
  name = "polars-core"
1571
- version = "0.46.0"
1572
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1963
+ version = "0.51.0"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "e77b1f08ef6dbb032bb1d0d3365464be950df9905f6827a95b24c4ca5518901d"
1573
1966
  dependencies = [
1574
1967
  "bitflags",
1968
+ "boxcar",
1575
1969
  "bytemuck",
1576
1970
  "chrono",
1577
1971
  "chrono-tz",
1578
1972
  "comfy-table",
1579
1973
  "either",
1580
- "hashbrown 0.14.5",
1581
- "hashbrown 0.15.3",
1974
+ "hashbrown 0.15.5",
1582
1975
  "indexmap",
1583
1976
  "itoa",
1584
1977
  "num-traits",
1585
1978
  "polars-arrow",
1586
1979
  "polars-compute",
1980
+ "polars-dtype",
1587
1981
  "polars-error",
1588
1982
  "polars-row",
1589
1983
  "polars-schema",
1590
1984
  "polars-utils",
1591
- "rand 0.8.5",
1985
+ "rand 0.9.2",
1592
1986
  "rand_distr",
1593
1987
  "rayon",
1594
1988
  "regex",
1989
+ "serde",
1990
+ "serde_json",
1595
1991
  "strum_macros",
1992
+ "uuid",
1596
1993
  "version_check",
1597
1994
  "xxhash-rust",
1598
1995
  ]
1599
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
+
1600
2012
  [[package]]
1601
2013
  name = "polars-error"
1602
- version = "0.46.0"
1603
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2014
+ version = "0.51.0"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "b9cb5d98f59f8b94673ee391840440ad9f0d2170afced95fc98aa86f895563c0"
1604
2017
  dependencies = [
2018
+ "object_store",
1605
2019
  "parking_lot",
1606
2020
  "polars-arrow-format",
1607
2021
  "regex",
@@ -1611,11 +2025,12 @@ dependencies = [
1611
2025
 
1612
2026
  [[package]]
1613
2027
  name = "polars-expr"
1614
- version = "0.46.0"
1615
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2028
+ version = "0.51.0"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "343931b818cf136349135ba11dbc18c27683b52c3477b1ba8ca606cf5ab1965c"
1616
2031
  dependencies = [
1617
2032
  "bitflags",
1618
- "hashbrown 0.15.3",
2033
+ "hashbrown 0.15.5",
1619
2034
  "num-traits",
1620
2035
  "polars-arrow",
1621
2036
  "polars-compute",
@@ -1626,30 +2041,34 @@ dependencies = [
1626
2041
  "polars-row",
1627
2042
  "polars-time",
1628
2043
  "polars-utils",
1629
- "rand 0.8.5",
2044
+ "rand 0.9.2",
1630
2045
  "rayon",
1631
2046
  "recursive",
1632
2047
  ]
1633
2048
 
1634
2049
  [[package]]
1635
2050
  name = "polars-io"
1636
- version = "0.46.0"
1637
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2051
+ version = "0.51.0"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "10388c64b8155122488229a881d1c6f4fdc393bc988e764ab51b182fcb2307e4"
1638
2054
  dependencies = [
1639
2055
  "async-trait",
1640
2056
  "atoi_simd",
2057
+ "blake3",
1641
2058
  "bytes",
1642
2059
  "chrono",
1643
2060
  "chrono-tz",
1644
2061
  "fast-float2",
2062
+ "fs4",
1645
2063
  "futures",
1646
2064
  "glob",
1647
- "hashbrown 0.15.3",
2065
+ "hashbrown 0.15.5",
1648
2066
  "home",
1649
2067
  "itoa",
1650
2068
  "memchr",
1651
2069
  "memmap2",
1652
2070
  "num-traits",
2071
+ "object_store",
1653
2072
  "percent-encoding",
1654
2073
  "polars-arrow",
1655
2074
  "polars-core",
@@ -1661,21 +2080,26 @@ dependencies = [
1661
2080
  "polars-utils",
1662
2081
  "rayon",
1663
2082
  "regex",
2083
+ "reqwest",
1664
2084
  "ryu",
2085
+ "serde",
2086
+ "serde_json",
1665
2087
  "simdutf8",
1666
2088
  "tokio",
1667
2089
  "tokio-util",
2090
+ "url",
1668
2091
  ]
1669
2092
 
1670
2093
  [[package]]
1671
2094
  name = "polars-json"
1672
- version = "0.46.0"
1673
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2095
+ version = "0.51.0"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "b26d1a04292a82183c8eba94fdf1584f200bfac5ac2f4a6c5652c8c8ed3bb41c"
1674
2098
  dependencies = [
1675
2099
  "chrono",
1676
2100
  "chrono-tz",
1677
2101
  "fallible-streaming-iterator",
1678
- "hashbrown 0.15.3",
2102
+ "hashbrown 0.15.5",
1679
2103
  "indexmap",
1680
2104
  "itoa",
1681
2105
  "num-traits",
@@ -1690,8 +2114,9 @@ dependencies = [
1690
2114
 
1691
2115
  [[package]]
1692
2116
  name = "polars-lazy"
1693
- version = "0.46.0"
1694
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2117
+ version = "0.51.0"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "0fb6e2c6c2fa4ea0c660df1c06cf56960c81e7c2683877995bae3d4e3d408147"
1695
2120
  dependencies = [
1696
2121
  "bitflags",
1697
2122
  "chrono",
@@ -1704,7 +2129,6 @@ dependencies = [
1704
2129
  "polars-io",
1705
2130
  "polars-mem-engine",
1706
2131
  "polars-ops",
1707
- "polars-pipe",
1708
2132
  "polars-plan",
1709
2133
  "polars-stream",
1710
2134
  "polars-time",
@@ -1715,9 +2139,11 @@ dependencies = [
1715
2139
 
1716
2140
  [[package]]
1717
2141
  name = "polars-mem-engine"
1718
- version = "0.46.0"
1719
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2142
+ version = "0.51.0"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "20a856e98e253587c28d8132a5e7e5a75cb2c44731ca090f1481d45f1d123771"
1720
2145
  dependencies = [
2146
+ "futures",
1721
2147
  "memmap2",
1722
2148
  "polars-arrow",
1723
2149
  "polars-core",
@@ -1730,12 +2156,14 @@ dependencies = [
1730
2156
  "polars-utils",
1731
2157
  "rayon",
1732
2158
  "recursive",
2159
+ "tokio",
1733
2160
  ]
1734
2161
 
1735
2162
  [[package]]
1736
2163
  name = "polars-ops"
1737
- version = "0.46.0"
1738
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2164
+ version = "0.51.0"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "acf6062173fdc9ba05775548beb66e76643a148d9aeadc9984ed712bc4babd76"
1739
2167
  dependencies = [
1740
2168
  "argminmax",
1741
2169
  "base64",
@@ -1743,7 +2171,7 @@ dependencies = [
1743
2171
  "chrono",
1744
2172
  "chrono-tz",
1745
2173
  "either",
1746
- "hashbrown 0.15.3",
2174
+ "hashbrown 0.15.5",
1747
2175
  "hex",
1748
2176
  "indexmap",
1749
2177
  "libm",
@@ -1755,6 +2183,7 @@ dependencies = [
1755
2183
  "polars-error",
1756
2184
  "polars-schema",
1757
2185
  "polars-utils",
2186
+ "rand 0.9.2",
1758
2187
  "rayon",
1759
2188
  "regex",
1760
2189
  "regex-syntax",
@@ -1766,8 +2195,9 @@ dependencies = [
1766
2195
 
1767
2196
  [[package]]
1768
2197
  name = "polars-parquet"
1769
- version = "0.46.0"
1770
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2198
+ version = "0.51.0"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "cc1d769180dec070df0dc4b89299b364bf2cfe32b218ecc4ddd8f1a49ae60669"
1771
2201
  dependencies = [
1772
2202
  "async-stream",
1773
2203
  "base64",
@@ -1776,7 +2206,7 @@ dependencies = [
1776
2206
  "ethnum",
1777
2207
  "flate2",
1778
2208
  "futures",
1779
- "hashbrown 0.15.3",
2209
+ "hashbrown 0.15.5",
1780
2210
  "lz4",
1781
2211
  "num-traits",
1782
2212
  "polars-arrow",
@@ -1784,6 +2214,7 @@ dependencies = [
1784
2214
  "polars-error",
1785
2215
  "polars-parquet-format",
1786
2216
  "polars-utils",
2217
+ "serde",
1787
2218
  "simdutf8",
1788
2219
  "snap",
1789
2220
  "streaming-decompression",
@@ -1800,35 +2231,11 @@ dependencies = [
1800
2231
  "futures",
1801
2232
  ]
1802
2233
 
1803
- [[package]]
1804
- name = "polars-pipe"
1805
- version = "0.46.0"
1806
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1807
- dependencies = [
1808
- "crossbeam-channel",
1809
- "crossbeam-queue",
1810
- "enum_dispatch",
1811
- "futures",
1812
- "hashbrown 0.15.3",
1813
- "num-traits",
1814
- "polars-arrow",
1815
- "polars-compute",
1816
- "polars-core",
1817
- "polars-expr",
1818
- "polars-io",
1819
- "polars-ops",
1820
- "polars-plan",
1821
- "polars-row",
1822
- "polars-utils",
1823
- "rayon",
1824
- "uuid",
1825
- "version_check",
1826
- ]
1827
-
1828
2234
  [[package]]
1829
2235
  name = "polars-plan"
1830
- version = "0.46.0"
1831
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2236
+ version = "0.51.0"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "1cd3a2e33ae4484fe407ab2d2ba5684f0889d1ccf3ad6b844103c03638e6d0a0"
1832
2239
  dependencies = [
1833
2240
  "bitflags",
1834
2241
  "bytemuck",
@@ -1836,13 +2243,15 @@ dependencies = [
1836
2243
  "chrono",
1837
2244
  "chrono-tz",
1838
2245
  "either",
1839
- "hashbrown 0.15.3",
2246
+ "futures",
2247
+ "hashbrown 0.15.5",
1840
2248
  "memmap2",
1841
2249
  "num-traits",
1842
2250
  "percent-encoding",
1843
2251
  "polars-arrow",
1844
2252
  "polars-compute",
1845
2253
  "polars-core",
2254
+ "polars-error",
1846
2255
  "polars-io",
1847
2256
  "polars-ops",
1848
2257
  "polars-parquet",
@@ -1851,38 +2260,44 @@ dependencies = [
1851
2260
  "rayon",
1852
2261
  "recursive",
1853
2262
  "regex",
2263
+ "sha2",
1854
2264
  "strum_macros",
1855
2265
  "version_check",
1856
2266
  ]
1857
2267
 
1858
2268
  [[package]]
1859
2269
  name = "polars-row"
1860
- version = "0.46.0"
1861
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2270
+ version = "0.51.0"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "18734f17e0e348724df3ae65f3ee744c681117c04b041cac969dfceb05edabc0"
1862
2273
  dependencies = [
1863
2274
  "bitflags",
1864
2275
  "bytemuck",
1865
2276
  "polars-arrow",
1866
2277
  "polars-compute",
2278
+ "polars-dtype",
1867
2279
  "polars-error",
1868
2280
  "polars-utils",
1869
2281
  ]
1870
2282
 
1871
2283
  [[package]]
1872
2284
  name = "polars-schema"
1873
- version = "0.46.0"
1874
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2285
+ version = "0.51.0"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "8e6c1ab13e04d5167661a9854ed1ea0482b2ed9b8a0f1118dabed7cd994a85e3"
1875
2288
  dependencies = [
1876
2289
  "indexmap",
1877
2290
  "polars-error",
1878
2291
  "polars-utils",
2292
+ "serde",
1879
2293
  "version_check",
1880
2294
  ]
1881
2295
 
1882
2296
  [[package]]
1883
2297
  name = "polars-sql"
1884
- version = "0.46.0"
1885
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2298
+ version = "0.51.0"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "c4e7766da02cc1d464994404d3e88a7a0ccd4933df3627c325480fbd9bbc0a11"
1886
2301
  dependencies = [
1887
2302
  "bitflags",
1888
2303
  "hex",
@@ -1893,7 +2308,7 @@ dependencies = [
1893
2308
  "polars-plan",
1894
2309
  "polars-time",
1895
2310
  "polars-utils",
1896
- "rand 0.8.5",
2311
+ "rand 0.9.2",
1897
2312
  "regex",
1898
2313
  "serde",
1899
2314
  "sqlparser",
@@ -1901,8 +2316,9 @@ dependencies = [
1901
2316
 
1902
2317
  [[package]]
1903
2318
  name = "polars-stream"
1904
- version = "0.46.0"
1905
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2319
+ version = "0.51.0"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "31f6c6ca1ea01f9dea424d167e4f33f5ec44cd67fbfac9efd40575ed20521f14"
1906
2322
  dependencies = [
1907
2323
  "async-channel",
1908
2324
  "async-trait",
@@ -1927,18 +2343,20 @@ dependencies = [
1927
2343
  "polars-parquet",
1928
2344
  "polars-plan",
1929
2345
  "polars-utils",
1930
- "rand 0.8.5",
2346
+ "rand 0.9.2",
1931
2347
  "rayon",
1932
2348
  "recursive",
1933
2349
  "slotmap",
1934
2350
  "tokio",
2351
+ "tokio-util",
1935
2352
  "version_check",
1936
2353
  ]
1937
2354
 
1938
2355
  [[package]]
1939
2356
  name = "polars-time"
1940
- version = "0.46.0"
1941
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2357
+ version = "0.51.0"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "f6a3a6e279a7a984a0b83715660f9e880590c6129ec2104396bfa710bcd76dee"
1942
2360
  dependencies = [
1943
2361
  "atoi_simd",
1944
2362
  "bytemuck",
@@ -1959,34 +2377,42 @@ dependencies = [
1959
2377
 
1960
2378
  [[package]]
1961
2379
  name = "polars-utils"
1962
- version = "0.46.0"
1963
- source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
2380
+ version = "0.51.0"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "57b267021b0e5422d7fbc70fd79e51b9f9a8466c585779373a18b0199e973f29"
1964
2383
  dependencies = [
2384
+ "bincode",
1965
2385
  "bytemuck",
1966
2386
  "bytes",
1967
2387
  "compact_str",
2388
+ "either",
2389
+ "flate2",
1968
2390
  "foldhash",
1969
- "hashbrown 0.15.3",
2391
+ "hashbrown 0.15.5",
1970
2392
  "indexmap",
1971
2393
  "libc",
1972
2394
  "memmap2",
1973
2395
  "num-traits",
1974
2396
  "polars-error",
1975
- "rand 0.8.5",
2397
+ "rand 0.9.2",
1976
2398
  "raw-cpuid",
1977
2399
  "rayon",
1978
2400
  "regex",
2401
+ "rmp-serde",
2402
+ "serde",
2403
+ "serde_json",
2404
+ "serde_stacker",
1979
2405
  "slotmap",
1980
2406
  "stacker",
1981
- "sysinfo",
2407
+ "uuid",
1982
2408
  "version_check",
1983
2409
  ]
1984
2410
 
1985
2411
  [[package]]
1986
2412
  name = "portable-atomic"
1987
- version = "1.11.0"
2413
+ version = "1.11.1"
1988
2414
  source = "registry+https://github.com/rust-lang/crates.io-index"
1989
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2415
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1990
2416
 
1991
2417
  [[package]]
1992
2418
  name = "portable-atomic-util"
@@ -1997,29 +2423,38 @@ dependencies = [
1997
2423
  "portable-atomic",
1998
2424
  ]
1999
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
+
2000
2435
  [[package]]
2001
2436
  name = "ppv-lite86"
2002
2437
  version = "0.2.21"
2003
2438
  source = "registry+https://github.com/rust-lang/crates.io-index"
2004
2439
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2005
2440
  dependencies = [
2006
- "zerocopy 0.8.25",
2441
+ "zerocopy",
2007
2442
  ]
2008
2443
 
2009
2444
  [[package]]
2010
2445
  name = "proc-macro-crate"
2011
- version = "3.3.0"
2446
+ version = "3.4.0"
2012
2447
  source = "registry+https://github.com/rust-lang/crates.io-index"
2013
- checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2448
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2014
2449
  dependencies = [
2015
2450
  "toml_edit",
2016
2451
  ]
2017
2452
 
2018
2453
  [[package]]
2019
2454
  name = "proc-macro2"
2020
- version = "1.0.95"
2455
+ version = "1.0.101"
2021
2456
  source = "registry+https://github.com/rust-lang/crates.io-index"
2022
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2457
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2023
2458
  dependencies = [
2024
2459
  "unicode-ident",
2025
2460
  ]
@@ -2035,7 +2470,7 @@ dependencies = [
2035
2470
 
2036
2471
  [[package]]
2037
2472
  name = "py_maplib"
2038
- version = "0.15.20"
2473
+ version = "0.17.10"
2039
2474
  dependencies = [
2040
2475
  "chrono",
2041
2476
  "cimxml",
@@ -2048,12 +2483,14 @@ dependencies = [
2048
2483
  "polars",
2049
2484
  "pydf_io",
2050
2485
  "pyo3",
2051
- "pyo3-log",
2052
2486
  "report_mapping",
2053
2487
  "representation",
2054
2488
  "shacl",
2055
2489
  "templates",
2056
2490
  "thiserror",
2491
+ "tracing",
2492
+ "tracing-log",
2493
+ "tracing-subscriber",
2057
2494
  "triplestore",
2058
2495
  "uuid",
2059
2496
  ]
@@ -2071,11 +2508,10 @@ dependencies = [
2071
2508
 
2072
2509
  [[package]]
2073
2510
  name = "pyo3"
2074
- version = "0.24.2"
2511
+ version = "0.25.1"
2075
2512
  source = "registry+https://github.com/rust-lang/crates.io-index"
2076
- checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2513
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
2077
2514
  dependencies = [
2078
- "cfg-if",
2079
2515
  "chrono",
2080
2516
  "chrono-tz",
2081
2517
  "indoc",
@@ -2091,9 +2527,9 @@ dependencies = [
2091
2527
 
2092
2528
  [[package]]
2093
2529
  name = "pyo3-build-config"
2094
- version = "0.24.2"
2530
+ version = "0.25.1"
2095
2531
  source = "registry+https://github.com/rust-lang/crates.io-index"
2096
- checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
2532
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
2097
2533
  dependencies = [
2098
2534
  "once_cell",
2099
2535
  "target-lexicon",
@@ -2101,30 +2537,19 @@ dependencies = [
2101
2537
 
2102
2538
  [[package]]
2103
2539
  name = "pyo3-ffi"
2104
- version = "0.24.2"
2540
+ version = "0.25.1"
2105
2541
  source = "registry+https://github.com/rust-lang/crates.io-index"
2106
- checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
2542
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
2107
2543
  dependencies = [
2108
2544
  "libc",
2109
2545
  "pyo3-build-config",
2110
2546
  ]
2111
2547
 
2112
- [[package]]
2113
- name = "pyo3-log"
2114
- version = "0.12.3"
2115
- source = "registry+https://github.com/rust-lang/crates.io-index"
2116
- checksum = "7079e412e909af5d6be7c04a7f29f6a2837a080410e1c529c9dee2c367383db4"
2117
- dependencies = [
2118
- "arc-swap",
2119
- "log",
2120
- "pyo3",
2121
- ]
2122
-
2123
2548
  [[package]]
2124
2549
  name = "pyo3-macros"
2125
- version = "0.24.2"
2550
+ version = "0.25.1"
2126
2551
  source = "registry+https://github.com/rust-lang/crates.io-index"
2127
- checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
2552
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
2128
2553
  dependencies = [
2129
2554
  "proc-macro2",
2130
2555
  "pyo3-macros-backend",
@@ -2134,9 +2559,9 @@ dependencies = [
2134
2559
 
2135
2560
  [[package]]
2136
2561
  name = "pyo3-macros-backend"
2137
- version = "0.24.2"
2562
+ version = "0.25.1"
2138
2563
  source = "registry+https://github.com/rust-lang/crates.io-index"
2139
- checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2564
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
2140
2565
  dependencies = [
2141
2566
  "heck",
2142
2567
  "proc-macro2",
@@ -2149,7 +2574,6 @@ dependencies = [
2149
2574
  name = "query_processing"
2150
2575
  version = "0.3.12"
2151
2576
  dependencies = [
2152
- "log",
2153
2577
  "oxrdf",
2154
2578
  "polars",
2155
2579
  "rayon",
@@ -2157,6 +2581,7 @@ dependencies = [
2157
2581
  "rstest",
2158
2582
  "spargebra",
2159
2583
  "thiserror",
2584
+ "tracing",
2160
2585
  "uuid",
2161
2586
  ]
2162
2587
 
@@ -2169,6 +2594,71 @@ dependencies = [
2169
2594
  "memchr",
2170
2595
  ]
2171
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"
2602
+ dependencies = [
2603
+ "memchr",
2604
+ "serde",
2605
+ ]
2606
+
2607
+ [[package]]
2608
+ name = "quinn"
2609
+ version = "0.11.9"
2610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2611
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2612
+ dependencies = [
2613
+ "bytes",
2614
+ "cfg_aliases",
2615
+ "pin-project-lite",
2616
+ "quinn-proto",
2617
+ "quinn-udp",
2618
+ "rustc-hash",
2619
+ "rustls",
2620
+ "socket2",
2621
+ "thiserror",
2622
+ "tokio",
2623
+ "tracing",
2624
+ "web-time",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "quinn-proto"
2629
+ version = "0.11.13"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2632
+ dependencies = [
2633
+ "bytes",
2634
+ "getrandom 0.3.3",
2635
+ "lru-slab",
2636
+ "rand 0.9.2",
2637
+ "ring",
2638
+ "rustc-hash",
2639
+ "rustls",
2640
+ "rustls-pki-types",
2641
+ "slab",
2642
+ "thiserror",
2643
+ "tinyvec",
2644
+ "tracing",
2645
+ "web-time",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "quinn-udp"
2650
+ version = "0.5.14"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2653
+ dependencies = [
2654
+ "cfg_aliases",
2655
+ "libc",
2656
+ "once_cell",
2657
+ "socket2",
2658
+ "tracing",
2659
+ "windows-sys 0.60.2",
2660
+ ]
2661
+
2172
2662
  [[package]]
2173
2663
  name = "quote"
2174
2664
  version = "1.0.40"
@@ -2180,9 +2670,9 @@ dependencies = [
2180
2670
 
2181
2671
  [[package]]
2182
2672
  name = "r-efi"
2183
- version = "5.2.0"
2673
+ version = "5.3.0"
2184
2674
  source = "registry+https://github.com/rust-lang/crates.io-index"
2185
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2675
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2186
2676
 
2187
2677
  [[package]]
2188
2678
  name = "rand"
@@ -2197,9 +2687,9 @@ dependencies = [
2197
2687
 
2198
2688
  [[package]]
2199
2689
  name = "rand"
2200
- version = "0.9.1"
2690
+ version = "0.9.2"
2201
2691
  source = "registry+https://github.com/rust-lang/crates.io-index"
2202
- checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2692
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2203
2693
  dependencies = [
2204
2694
  "rand_chacha 0.9.0",
2205
2695
  "rand_core 0.9.3",
@@ -2240,24 +2730,24 @@ version = "0.9.3"
2240
2730
  source = "registry+https://github.com/rust-lang/crates.io-index"
2241
2731
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2242
2732
  dependencies = [
2243
- "getrandom 0.3.2",
2733
+ "getrandom 0.3.3",
2244
2734
  ]
2245
2735
 
2246
2736
  [[package]]
2247
2737
  name = "rand_distr"
2248
- version = "0.4.3"
2738
+ version = "0.5.1"
2249
2739
  source = "registry+https://github.com/rust-lang/crates.io-index"
2250
- checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2740
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2251
2741
  dependencies = [
2252
2742
  "num-traits",
2253
- "rand 0.8.5",
2743
+ "rand 0.9.2",
2254
2744
  ]
2255
2745
 
2256
2746
  [[package]]
2257
2747
  name = "raw-cpuid"
2258
- version = "11.5.0"
2748
+ version = "11.6.0"
2259
2749
  source = "registry+https://github.com/rust-lang/crates.io-index"
2260
- checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
2750
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2261
2751
  dependencies = [
2262
2752
  "bitflags",
2263
2753
  ]
@@ -2270,9 +2760,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2270
2760
 
2271
2761
  [[package]]
2272
2762
  name = "rayon"
2273
- version = "1.10.0"
2763
+ version = "1.11.0"
2274
2764
  source = "registry+https://github.com/rust-lang/crates.io-index"
2275
- checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2765
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2276
2766
  dependencies = [
2277
2767
  "either",
2278
2768
  "rayon-core",
@@ -2280,9 +2770,9 @@ dependencies = [
2280
2770
 
2281
2771
  [[package]]
2282
2772
  name = "rayon-core"
2283
- version = "1.12.1"
2773
+ version = "1.13.0"
2284
2774
  source = "registry+https://github.com/rust-lang/crates.io-index"
2285
- checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2775
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2286
2776
  dependencies = [
2287
2777
  "crossbeam-deque",
2288
2778
  "crossbeam-utils",
@@ -2310,9 +2800,9 @@ dependencies = [
2310
2800
 
2311
2801
  [[package]]
2312
2802
  name = "redox_syscall"
2313
- version = "0.5.12"
2803
+ version = "0.5.17"
2314
2804
  source = "registry+https://github.com/rust-lang/crates.io-index"
2315
- checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
2805
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
2316
2806
  dependencies = [
2317
2807
  "bitflags",
2318
2808
  ]
@@ -2339,9 +2829,9 @@ dependencies = [
2339
2829
 
2340
2830
  [[package]]
2341
2831
  name = "regex"
2342
- version = "1.11.1"
2832
+ version = "1.11.2"
2343
2833
  source = "registry+https://github.com/rust-lang/crates.io-index"
2344
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2834
+ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
2345
2835
  dependencies = [
2346
2836
  "aho-corasick",
2347
2837
  "memchr",
@@ -2351,9 +2841,9 @@ dependencies = [
2351
2841
 
2352
2842
  [[package]]
2353
2843
  name = "regex-automata"
2354
- version = "0.4.9"
2844
+ version = "0.4.10"
2355
2845
  source = "registry+https://github.com/rust-lang/crates.io-index"
2356
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2846
+ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
2357
2847
  dependencies = [
2358
2848
  "aho-corasick",
2359
2849
  "memchr",
@@ -2362,9 +2852,9 @@ dependencies = [
2362
2852
 
2363
2853
  [[package]]
2364
2854
  name = "regex-syntax"
2365
- version = "0.8.5"
2855
+ version = "0.8.6"
2366
2856
  source = "registry+https://github.com/rust-lang/crates.io-index"
2367
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2857
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
2368
2858
 
2369
2859
  [[package]]
2370
2860
  name = "relative-path"
@@ -2387,36 +2877,114 @@ version = "0.6.10"
2387
2877
  dependencies = [
2388
2878
  "chrono",
2389
2879
  "chrono-tz",
2390
- "log",
2880
+ "nohash-hasher",
2391
2881
  "oxrdf",
2392
2882
  "oxsdatatypes",
2393
2883
  "polars",
2394
2884
  "pyo3",
2395
2885
  "rayon",
2396
- "serde",
2397
2886
  "spargebra",
2398
2887
  "thiserror",
2888
+ "tracing",
2399
2889
  "utils",
2400
2890
  "uuid",
2401
2891
  ]
2402
2892
 
2893
+ [[package]]
2894
+ name = "reqwest"
2895
+ version = "0.12.23"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
2898
+ dependencies = [
2899
+ "base64",
2900
+ "bytes",
2901
+ "futures-core",
2902
+ "futures-util",
2903
+ "h2",
2904
+ "http",
2905
+ "http-body",
2906
+ "http-body-util",
2907
+ "hyper",
2908
+ "hyper-rustls",
2909
+ "hyper-util",
2910
+ "js-sys",
2911
+ "log",
2912
+ "percent-encoding",
2913
+ "pin-project-lite",
2914
+ "quinn",
2915
+ "rustls",
2916
+ "rustls-native-certs",
2917
+ "rustls-pki-types",
2918
+ "serde",
2919
+ "serde_json",
2920
+ "serde_urlencoded",
2921
+ "sync_wrapper",
2922
+ "tokio",
2923
+ "tokio-rustls",
2924
+ "tokio-util",
2925
+ "tower",
2926
+ "tower-http",
2927
+ "tower-service",
2928
+ "url",
2929
+ "wasm-bindgen",
2930
+ "wasm-bindgen-futures",
2931
+ "wasm-streams",
2932
+ "web-sys",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "ring"
2937
+ version = "0.17.14"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2940
+ dependencies = [
2941
+ "cc",
2942
+ "cfg-if",
2943
+ "getrandom 0.2.16",
2944
+ "libc",
2945
+ "untrusted",
2946
+ "windows-sys 0.52.0",
2947
+ ]
2948
+
2949
+ [[package]]
2950
+ name = "rmp"
2951
+ version = "0.8.14"
2952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2953
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
2954
+ dependencies = [
2955
+ "byteorder",
2956
+ "num-traits",
2957
+ "paste",
2958
+ ]
2959
+
2960
+ [[package]]
2961
+ name = "rmp-serde"
2962
+ version = "1.3.0"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
2965
+ dependencies = [
2966
+ "byteorder",
2967
+ "rmp",
2968
+ "serde",
2969
+ ]
2970
+
2403
2971
  [[package]]
2404
2972
  name = "rstest"
2405
- version = "0.21.0"
2973
+ version = "0.25.0"
2406
2974
  source = "registry+https://github.com/rust-lang/crates.io-index"
2407
- checksum = "9afd55a67069d6e434a95161415f5beeada95a01c7b815508a82dcb0e1593682"
2975
+ checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
2408
2976
  dependencies = [
2409
- "futures",
2410
2977
  "futures-timer",
2978
+ "futures-util",
2411
2979
  "rstest_macros",
2412
2980
  "rustc_version",
2413
2981
  ]
2414
2982
 
2415
2983
  [[package]]
2416
2984
  name = "rstest_macros"
2417
- version = "0.21.0"
2985
+ version = "0.25.0"
2418
2986
  source = "registry+https://github.com/rust-lang/crates.io-index"
2419
- checksum = "4165dfae59a39dd41d8dec720d3cbfbc71f69744efb480a3920f5d4e0cc6798d"
2987
+ checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
2420
2988
  dependencies = [
2421
2989
  "cfg-if",
2422
2990
  "glob",
@@ -2432,9 +3000,15 @@ dependencies = [
2432
3000
 
2433
3001
  [[package]]
2434
3002
  name = "rustc-demangle"
2435
- version = "0.1.24"
3003
+ version = "0.1.26"
2436
3004
  source = "registry+https://github.com/rust-lang/crates.io-index"
2437
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3005
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
3006
+
3007
+ [[package]]
3008
+ name = "rustc-hash"
3009
+ version = "2.1.1"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2438
3012
 
2439
3013
  [[package]]
2440
3014
  name = "rustc_version"
@@ -2447,22 +3021,69 @@ dependencies = [
2447
3021
 
2448
3022
  [[package]]
2449
3023
  name = "rustix"
2450
- version = "0.38.44"
3024
+ version = "1.1.2"
2451
3025
  source = "registry+https://github.com/rust-lang/crates.io-index"
2452
- checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3026
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2453
3027
  dependencies = [
2454
3028
  "bitflags",
2455
3029
  "errno",
2456
3030
  "libc",
2457
3031
  "linux-raw-sys",
2458
- "windows-sys 0.59.0",
3032
+ "windows-sys 0.61.0",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "rustls"
3037
+ version = "0.23.32"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40"
3040
+ dependencies = [
3041
+ "once_cell",
3042
+ "ring",
3043
+ "rustls-pki-types",
3044
+ "rustls-webpki",
3045
+ "subtle",
3046
+ "zeroize",
3047
+ ]
3048
+
3049
+ [[package]]
3050
+ name = "rustls-native-certs"
3051
+ version = "0.8.1"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
3054
+ dependencies = [
3055
+ "openssl-probe",
3056
+ "rustls-pki-types",
3057
+ "schannel",
3058
+ "security-framework",
3059
+ ]
3060
+
3061
+ [[package]]
3062
+ name = "rustls-pki-types"
3063
+ version = "1.12.0"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3066
+ dependencies = [
3067
+ "web-time",
3068
+ "zeroize",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "rustls-webpki"
3073
+ version = "0.103.6"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb"
3076
+ dependencies = [
3077
+ "ring",
3078
+ "rustls-pki-types",
3079
+ "untrusted",
2459
3080
  ]
2460
3081
 
2461
3082
  [[package]]
2462
3083
  name = "rustversion"
2463
- version = "1.0.20"
3084
+ version = "1.0.22"
2464
3085
  source = "registry+https://github.com/rust-lang/crates.io-index"
2465
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3086
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2466
3087
 
2467
3088
  [[package]]
2468
3089
  name = "ryu"
@@ -2481,13 +3102,22 @@ dependencies = [
2481
3102
 
2482
3103
  [[package]]
2483
3104
  name = "scc"
2484
- version = "2.3.4"
3105
+ version = "2.4.0"
2485
3106
  source = "registry+https://github.com/rust-lang/crates.io-index"
2486
- checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
3107
+ checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
2487
3108
  dependencies = [
2488
3109
  "sdd",
2489
3110
  ]
2490
3111
 
3112
+ [[package]]
3113
+ name = "schannel"
3114
+ version = "0.1.28"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3117
+ dependencies = [
3118
+ "windows-sys 0.61.0",
3119
+ ]
3120
+
2491
3121
  [[package]]
2492
3122
  name = "scopeguard"
2493
3123
  version = "1.2.0"
@@ -2496,30 +3126,63 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2496
3126
 
2497
3127
  [[package]]
2498
3128
  name = "sdd"
2499
- version = "3.0.8"
3129
+ version = "3.0.10"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
3132
+
3133
+ [[package]]
3134
+ name = "security-framework"
3135
+ version = "3.5.0"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "cc198e42d9b7510827939c9a15f5062a0c913f3371d765977e586d2fe6c16f4a"
3138
+ dependencies = [
3139
+ "bitflags",
3140
+ "core-foundation",
3141
+ "core-foundation-sys",
3142
+ "libc",
3143
+ "security-framework-sys",
3144
+ ]
3145
+
3146
+ [[package]]
3147
+ name = "security-framework-sys"
3148
+ version = "2.15.0"
2500
3149
  source = "registry+https://github.com/rust-lang/crates.io-index"
2501
- checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21"
3150
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3151
+ dependencies = [
3152
+ "core-foundation-sys",
3153
+ "libc",
3154
+ ]
2502
3155
 
2503
3156
  [[package]]
2504
3157
  name = "semver"
2505
- version = "1.0.26"
3158
+ version = "1.0.27"
2506
3159
  source = "registry+https://github.com/rust-lang/crates.io-index"
2507
- checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3160
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2508
3161
 
2509
3162
  [[package]]
2510
3163
  name = "serde"
2511
- 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"
2512
3175
  source = "registry+https://github.com/rust-lang/crates.io-index"
2513
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
3176
+ checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
2514
3177
  dependencies = [
2515
3178
  "serde_derive",
2516
3179
  ]
2517
3180
 
2518
3181
  [[package]]
2519
3182
  name = "serde_derive"
2520
- version = "1.0.219"
3183
+ version = "1.0.226"
2521
3184
  source = "registry+https://github.com/rust-lang/crates.io-index"
2522
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3185
+ checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
2523
3186
  dependencies = [
2524
3187
  "proc-macro2",
2525
3188
  "quote",
@@ -2528,18 +3191,42 @@ dependencies = [
2528
3191
 
2529
3192
  [[package]]
2530
3193
  name = "serde_json"
2531
- version = "1.0.140"
3194
+ version = "1.0.145"
2532
3195
  source = "registry+https://github.com/rust-lang/crates.io-index"
2533
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
3196
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2534
3197
  dependencies = [
2535
3198
  "itoa",
2536
3199
  "memchr",
2537
3200
  "ryu",
2538
3201
  "serde",
3202
+ "serde_core",
2539
3203
  ]
2540
3204
 
2541
3205
  [[package]]
2542
- name = "serial_test"
3206
+ name = "serde_stacker"
3207
+ version = "0.1.14"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a"
3210
+ dependencies = [
3211
+ "serde",
3212
+ "serde_core",
3213
+ "stacker",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "serde_urlencoded"
3218
+ version = "0.7.1"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3221
+ dependencies = [
3222
+ "form_urlencoded",
3223
+ "itoa",
3224
+ "ryu",
3225
+ "serde",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "serial_test"
2543
3230
  version = "3.2.0"
2544
3231
  source = "registry+https://github.com/rust-lang/crates.io-index"
2545
3232
  checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
@@ -2563,6 +3250,17 @@ dependencies = [
2563
3250
  "syn",
2564
3251
  ]
2565
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
+
2566
3264
  [[package]]
2567
3265
  name = "shacl"
2568
3266
  version = "0.1.0"
@@ -2575,6 +3273,15 @@ dependencies = [
2575
3273
  "triplestore",
2576
3274
  ]
2577
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
+
2578
3285
  [[package]]
2579
3286
  name = "shlex"
2580
3287
  version = "1.3.0"
@@ -2583,9 +3290,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2583
3290
 
2584
3291
  [[package]]
2585
3292
  name = "signal-hook"
2586
- version = "0.3.17"
3293
+ version = "0.3.18"
2587
3294
  source = "registry+https://github.com/rust-lang/crates.io-index"
2588
- checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
3295
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
2589
3296
  dependencies = [
2590
3297
  "libc",
2591
3298
  "signal-hook-registry",
@@ -2593,21 +3300,21 @@ dependencies = [
2593
3300
 
2594
3301
  [[package]]
2595
3302
  name = "signal-hook-registry"
2596
- version = "1.4.5"
3303
+ version = "1.4.6"
2597
3304
  source = "registry+https://github.com/rust-lang/crates.io-index"
2598
- checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
3305
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
2599
3306
  dependencies = [
2600
3307
  "libc",
2601
3308
  ]
2602
3309
 
2603
3310
  [[package]]
2604
3311
  name = "simd-json"
2605
- version = "0.14.3"
3312
+ version = "0.15.1"
2606
3313
  source = "registry+https://github.com/rust-lang/crates.io-index"
2607
- checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
3314
+ checksum = "c962f626b54771990066e5435ec8331d1462576cd2d1e62f24076ae014f92112"
2608
3315
  dependencies = [
2609
3316
  "ahash",
2610
- "getrandom 0.2.16",
3317
+ "getrandom 0.3.3",
2611
3318
  "halfbrown",
2612
3319
  "once_cell",
2613
3320
  "ref-cast",
@@ -2630,14 +3337,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
3337
  checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2631
3338
 
2632
3339
  [[package]]
2633
- name = "slab"
2634
- version = "0.4.9"
3340
+ name = "skiplist"
3341
+ version = "0.6.0"
2635
3342
  source = "registry+https://github.com/rust-lang/crates.io-index"
2636
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3343
+ checksum = "f354fd282d3177c2951004953e2fdc4cb342fa159bbee8b829852b6a081c8ea1"
2637
3344
  dependencies = [
2638
- "autocfg",
3345
+ "rand 0.9.2",
3346
+ "thiserror",
2639
3347
  ]
2640
3348
 
3349
+ [[package]]
3350
+ name = "slab"
3351
+ version = "0.4.11"
3352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3353
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3354
+
2641
3355
  [[package]]
2642
3356
  name = "slotmap"
2643
3357
  version = "1.0.7"
@@ -2649,9 +3363,9 @@ dependencies = [
2649
3363
 
2650
3364
  [[package]]
2651
3365
  name = "smallvec"
2652
- version = "1.15.0"
3366
+ version = "1.15.1"
2653
3367
  source = "registry+https://github.com/rust-lang/crates.io-index"
2654
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3368
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2655
3369
 
2656
3370
  [[package]]
2657
3371
  name = "snap"
@@ -2661,24 +3375,24 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2661
3375
 
2662
3376
  [[package]]
2663
3377
  name = "socket2"
2664
- version = "0.5.9"
3378
+ version = "0.6.0"
2665
3379
  source = "registry+https://github.com/rust-lang/crates.io-index"
2666
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3380
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
2667
3381
  dependencies = [
2668
3382
  "libc",
2669
- "windows-sys 0.52.0",
3383
+ "windows-sys 0.59.0",
2670
3384
  ]
2671
3385
 
2672
3386
  [[package]]
2673
3387
  name = "sparesults"
2674
- version = "0.2.4"
3388
+ version = "0.2.5"
2675
3389
  source = "registry+https://github.com/rust-lang/crates.io-index"
2676
- checksum = "4b845f8f37245959132c0561bb737c28eb9c0b693b92535fc5c3965a9390724d"
3390
+ checksum = "f478f5ead16b6136bccee7a52ea43a615f8512086708f515e26ce33e0b184036"
2677
3391
  dependencies = [
2678
3392
  "json-event-parser",
2679
3393
  "memchr",
2680
3394
  "oxrdf",
2681
- "quick-xml",
3395
+ "quick-xml 0.37.5",
2682
3396
  "thiserror",
2683
3397
  ]
2684
3398
 
@@ -2692,7 +3406,7 @@ dependencies = [
2692
3406
  "oxiri",
2693
3407
  "oxrdf",
2694
3408
  "peg",
2695
- "rand 0.8.5",
3409
+ "rand 0.9.2",
2696
3410
  "thiserror",
2697
3411
  ]
2698
3412
 
@@ -2720,6 +3434,12 @@ dependencies = [
2720
3434
  "log",
2721
3435
  ]
2722
3436
 
3437
+ [[package]]
3438
+ name = "stable_deref_trait"
3439
+ version = "1.2.0"
3440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3441
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3442
+
2723
3443
  [[package]]
2724
3444
  name = "stacker"
2725
3445
  version = "0.1.21"
@@ -2762,22 +3482,27 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
2762
3482
 
2763
3483
  [[package]]
2764
3484
  name = "strum_macros"
2765
- version = "0.26.4"
3485
+ version = "0.27.2"
2766
3486
  source = "registry+https://github.com/rust-lang/crates.io-index"
2767
- checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3487
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2768
3488
  dependencies = [
2769
3489
  "heck",
2770
3490
  "proc-macro2",
2771
3491
  "quote",
2772
- "rustversion",
2773
3492
  "syn",
2774
3493
  ]
2775
3494
 
3495
+ [[package]]
3496
+ name = "subtle"
3497
+ version = "2.6.1"
3498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3499
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3500
+
2776
3501
  [[package]]
2777
3502
  name = "syn"
2778
- version = "2.0.101"
3503
+ version = "2.0.106"
2779
3504
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
3505
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
2781
3506
  dependencies = [
2782
3507
  "proc-macro2",
2783
3508
  "quote",
@@ -2785,63 +3510,89 @@ dependencies = [
2785
3510
  ]
2786
3511
 
2787
3512
  [[package]]
2788
- name = "sysinfo"
2789
- version = "0.33.1"
3513
+ name = "sync_wrapper"
3514
+ version = "1.0.2"
2790
3515
  source = "registry+https://github.com/rust-lang/crates.io-index"
2791
- checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
3516
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2792
3517
  dependencies = [
2793
- "core-foundation-sys",
2794
- "libc",
2795
- "memchr",
2796
- "ntapi",
2797
- "windows",
3518
+ "futures-core",
2798
3519
  ]
2799
3520
 
2800
3521
  [[package]]
2801
- name = "target-lexicon"
3522
+ name = "synstructure"
2802
3523
  version = "0.13.2"
2803
3524
  source = "registry+https://github.com/rust-lang/crates.io-index"
2804
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
3525
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3526
+ dependencies = [
3527
+ "proc-macro2",
3528
+ "quote",
3529
+ "syn",
3530
+ ]
3531
+
3532
+ [[package]]
3533
+ name = "target-lexicon"
3534
+ version = "0.13.3"
3535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3536
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
2805
3537
 
2806
3538
  [[package]]
2807
3539
  name = "templates"
2808
3540
  version = "0.1.0"
2809
3541
  dependencies = [
2810
- "log",
2811
3542
  "nom",
2812
3543
  "oxrdf",
2813
3544
  "pyo3",
2814
3545
  "representation",
2815
3546
  "thiserror",
3547
+ "tracing",
2816
3548
  "unic-char-range",
2817
3549
  "walkdir",
2818
3550
  ]
2819
3551
 
2820
3552
  [[package]]
2821
3553
  name = "thiserror"
2822
- version = "2.0.12"
3554
+ version = "2.0.16"
2823
3555
  source = "registry+https://github.com/rust-lang/crates.io-index"
2824
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3556
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
2825
3557
  dependencies = [
2826
3558
  "thiserror-impl",
2827
3559
  ]
2828
3560
 
2829
3561
  [[package]]
2830
3562
  name = "thiserror-impl"
2831
- version = "2.0.12"
3563
+ version = "2.0.16"
2832
3564
  source = "registry+https://github.com/rust-lang/crates.io-index"
2833
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3565
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
2834
3566
  dependencies = [
2835
3567
  "proc-macro2",
2836
3568
  "quote",
2837
3569
  "syn",
2838
3570
  ]
2839
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
+
3581
+ [[package]]
3582
+ name = "tinystr"
3583
+ version = "0.8.1"
3584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3585
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3586
+ dependencies = [
3587
+ "displaydoc",
3588
+ "zerovec",
3589
+ ]
3590
+
2840
3591
  [[package]]
2841
3592
  name = "tinyvec"
2842
- version = "1.9.0"
3593
+ version = "1.10.0"
2843
3594
  source = "registry+https://github.com/rust-lang/crates.io-index"
2844
- checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3595
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2845
3596
  dependencies = [
2846
3597
  "tinyvec_macros",
2847
3598
  ]
@@ -2854,49 +3605,194 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2854
3605
 
2855
3606
  [[package]]
2856
3607
  name = "tokio"
2857
- version = "1.45.0"
3608
+ version = "1.47.1"
2858
3609
  source = "registry+https://github.com/rust-lang/crates.io-index"
2859
- checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
3610
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
2860
3611
  dependencies = [
2861
3612
  "backtrace",
2862
3613
  "bytes",
3614
+ "io-uring",
2863
3615
  "libc",
2864
3616
  "mio",
2865
3617
  "pin-project-lite",
3618
+ "slab",
2866
3619
  "socket2",
2867
- "windows-sys 0.52.0",
3620
+ "tokio-macros",
3621
+ "windows-sys 0.59.0",
3622
+ ]
3623
+
3624
+ [[package]]
3625
+ name = "tokio-macros"
3626
+ version = "2.5.0"
3627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3628
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3629
+ dependencies = [
3630
+ "proc-macro2",
3631
+ "quote",
3632
+ "syn",
3633
+ ]
3634
+
3635
+ [[package]]
3636
+ name = "tokio-rustls"
3637
+ version = "0.26.3"
3638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3639
+ checksum = "05f63835928ca123f1bef57abbcd23bb2ba0ac9ae1235f1e65bda0d06e7786bd"
3640
+ dependencies = [
3641
+ "rustls",
3642
+ "tokio",
2868
3643
  ]
2869
3644
 
2870
3645
  [[package]]
2871
3646
  name = "tokio-util"
2872
- version = "0.7.15"
3647
+ version = "0.7.16"
2873
3648
  source = "registry+https://github.com/rust-lang/crates.io-index"
2874
- checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3649
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
2875
3650
  dependencies = [
2876
3651
  "bytes",
2877
3652
  "futures-core",
2878
3653
  "futures-sink",
3654
+ "futures-util",
2879
3655
  "pin-project-lite",
2880
3656
  "tokio",
2881
3657
  ]
2882
3658
 
2883
3659
  [[package]]
2884
3660
  name = "toml_datetime"
2885
- version = "0.6.9"
3661
+ version = "0.7.2"
2886
3662
  source = "registry+https://github.com/rust-lang/crates.io-index"
2887
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
3663
+ checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1"
3664
+ dependencies = [
3665
+ "serde_core",
3666
+ ]
2888
3667
 
2889
3668
  [[package]]
2890
3669
  name = "toml_edit"
2891
- version = "0.22.26"
3670
+ version = "0.23.6"
2892
3671
  source = "registry+https://github.com/rust-lang/crates.io-index"
2893
- checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
3672
+ checksum = "f3effe7c0e86fdff4f69cdd2ccc1b96f933e24811c5441d44904e8683e27184b"
2894
3673
  dependencies = [
2895
3674
  "indexmap",
2896
3675
  "toml_datetime",
3676
+ "toml_parser",
2897
3677
  "winnow",
2898
3678
  ]
2899
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 = [
3686
+ "winnow",
3687
+ ]
3688
+
3689
+ [[package]]
3690
+ name = "tower"
3691
+ version = "0.5.2"
3692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3693
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3694
+ dependencies = [
3695
+ "futures-core",
3696
+ "futures-util",
3697
+ "pin-project-lite",
3698
+ "sync_wrapper",
3699
+ "tokio",
3700
+ "tower-layer",
3701
+ "tower-service",
3702
+ ]
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
+
3722
+ [[package]]
3723
+ name = "tower-layer"
3724
+ version = "0.3.3"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3727
+
3728
+ [[package]]
3729
+ name = "tower-service"
3730
+ version = "0.3.3"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3733
+
3734
+ [[package]]
3735
+ name = "tracing"
3736
+ version = "0.1.41"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3739
+ dependencies = [
3740
+ "log",
3741
+ "pin-project-lite",
3742
+ "tracing-attributes",
3743
+ "tracing-core",
3744
+ ]
3745
+
3746
+ [[package]]
3747
+ name = "tracing-attributes"
3748
+ version = "0.1.30"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3751
+ dependencies = [
3752
+ "proc-macro2",
3753
+ "quote",
3754
+ "syn",
3755
+ ]
3756
+
3757
+ [[package]]
3758
+ name = "tracing-core"
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"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
3783
+ dependencies = [
3784
+ "matchers",
3785
+ "nu-ansi-term",
3786
+ "once_cell",
3787
+ "regex-automata",
3788
+ "sharded-slab",
3789
+ "smallvec",
3790
+ "thread_local",
3791
+ "tracing",
3792
+ "tracing-core",
3793
+ "tracing-log",
3794
+ ]
3795
+
2900
3796
  [[package]]
2901
3797
  name = "triplestore"
2902
3798
  version = "0.5.0"
@@ -2904,7 +3800,6 @@ dependencies = [
2904
3800
  "file_io",
2905
3801
  "fts",
2906
3802
  "itoa",
2907
- "log",
2908
3803
  "memmap2",
2909
3804
  "oxrdf",
2910
3805
  "oxrdfio",
@@ -2920,10 +3815,23 @@ dependencies = [
2920
3815
  "spargebra",
2921
3816
  "sprs",
2922
3817
  "thiserror",
3818
+ "tracing",
2923
3819
  "utils",
2924
3820
  "uuid",
2925
3821
  ]
2926
3822
 
3823
+ [[package]]
3824
+ name = "try-lock"
3825
+ version = "0.2.5"
3826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3827
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
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
+
2927
3835
  [[package]]
2928
3836
  name = "unic-char-range"
2929
3837
  version = "0.9.0"
@@ -2932,9 +3840,9 @@ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
2932
3840
 
2933
3841
  [[package]]
2934
3842
  name = "unicode-ident"
2935
- version = "1.0.18"
3843
+ version = "1.0.19"
2936
3844
  source = "registry+https://github.com/rust-lang/crates.io-index"
2937
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3845
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
2938
3846
 
2939
3847
  [[package]]
2940
3848
  name = "unicode-normalization"
@@ -2962,9 +3870,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2962
3870
 
2963
3871
  [[package]]
2964
3872
  name = "unicode-width"
2965
- version = "0.2.0"
3873
+ version = "0.2.1"
2966
3874
  source = "registry+https://github.com/rust-lang/crates.io-index"
2967
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3875
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
2968
3876
 
2969
3877
  [[package]]
2970
3878
  name = "unindent"
@@ -2973,36 +3881,69 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
3881
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2974
3882
 
2975
3883
  [[package]]
2976
- name = "utf8parse"
2977
- version = "0.2.2"
3884
+ name = "untrusted"
3885
+ version = "0.9.0"
2978
3886
  source = "registry+https://github.com/rust-lang/crates.io-index"
2979
- checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3887
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
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
+
3895
+ [[package]]
3896
+ name = "url"
3897
+ version = "2.5.7"
3898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3899
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3900
+ dependencies = [
3901
+ "form_urlencoded",
3902
+ "idna",
3903
+ "percent-encoding",
3904
+ "serde",
3905
+ ]
3906
+
3907
+ [[package]]
3908
+ name = "utf8_iter"
3909
+ version = "1.0.4"
3910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3911
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2980
3912
 
2981
3913
  [[package]]
2982
3914
  name = "utils"
2983
3915
  version = "0.1.0"
2984
3916
  dependencies = [
2985
3917
  "polars",
2986
- "polars-core",
2987
3918
  "pyo3",
3919
+ "rayon",
2988
3920
  "thiserror",
2989
3921
  ]
2990
3922
 
2991
3923
  [[package]]
2992
3924
  name = "uuid"
2993
- version = "1.16.0"
3925
+ version = "1.18.1"
2994
3926
  source = "registry+https://github.com/rust-lang/crates.io-index"
2995
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3927
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
2996
3928
  dependencies = [
2997
- "getrandom 0.3.2",
2998
- "rand 0.9.1",
3929
+ "getrandom 0.3.3",
3930
+ "js-sys",
3931
+ "rand 0.9.2",
3932
+ "serde",
3933
+ "wasm-bindgen",
2999
3934
  ]
3000
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
+
3001
3942
  [[package]]
3002
3943
  name = "value-trait"
3003
- version = "0.10.1"
3944
+ version = "0.11.0"
3004
3945
  source = "registry+https://github.com/rust-lang/crates.io-index"
3005
- checksum = "9170e001f458781e92711d2ad666110f153e4e50bfd5cbd02db6547625714187"
3946
+ checksum = "0508fce11ad19e0aab49ce20b6bec7f8f82902ded31df1c9fc61b90f0eb396b8"
3006
3947
  dependencies = [
3007
3948
  "float-cmp",
3008
3949
  "halfbrown",
@@ -3016,6 +3957,12 @@ version = "0.9.5"
3016
3957
  source = "registry+https://github.com/rust-lang/crates.io-index"
3017
3958
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3018
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
+
3019
3966
  [[package]]
3020
3967
  name = "walkdir"
3021
3968
  version = "2.5.0"
@@ -3026,38 +3973,57 @@ dependencies = [
3026
3973
  "winapi-util",
3027
3974
  ]
3028
3975
 
3976
+ [[package]]
3977
+ name = "want"
3978
+ version = "0.3.1"
3979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3980
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3981
+ dependencies = [
3982
+ "try-lock",
3983
+ ]
3984
+
3029
3985
  [[package]]
3030
3986
  name = "wasi"
3031
- version = "0.11.0+wasi-snapshot-preview1"
3987
+ version = "0.11.1+wasi-snapshot-preview1"
3032
3988
  source = "registry+https://github.com/rust-lang/crates.io-index"
3033
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3989
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3034
3990
 
3035
3991
  [[package]]
3036
3992
  name = "wasi"
3037
- version = "0.14.2+wasi-0.2.4"
3993
+ version = "0.14.7+wasi-0.2.4"
3038
3994
  source = "registry+https://github.com/rust-lang/crates.io-index"
3039
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3995
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
3040
3996
  dependencies = [
3041
- "wit-bindgen-rt",
3997
+ "wasip2",
3998
+ ]
3999
+
4000
+ [[package]]
4001
+ name = "wasip2"
4002
+ version = "1.0.1+wasi-0.2.4"
4003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4004
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4005
+ dependencies = [
4006
+ "wit-bindgen",
3042
4007
  ]
3043
4008
 
3044
4009
  [[package]]
3045
4010
  name = "wasm-bindgen"
3046
- version = "0.2.100"
4011
+ version = "0.2.103"
3047
4012
  source = "registry+https://github.com/rust-lang/crates.io-index"
3048
- checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
4013
+ checksum = "ab10a69fbd0a177f5f649ad4d8d3305499c42bab9aef2f7ff592d0ec8f833819"
3049
4014
  dependencies = [
3050
4015
  "cfg-if",
3051
4016
  "once_cell",
3052
4017
  "rustversion",
3053
4018
  "wasm-bindgen-macro",
4019
+ "wasm-bindgen-shared",
3054
4020
  ]
3055
4021
 
3056
4022
  [[package]]
3057
4023
  name = "wasm-bindgen-backend"
3058
- version = "0.2.100"
4024
+ version = "0.2.103"
3059
4025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3060
- checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
4026
+ checksum = "0bb702423545a6007bbc368fde243ba47ca275e549c8a28617f56f6ba53b1d1c"
3061
4027
  dependencies = [
3062
4028
  "bumpalo",
3063
4029
  "log",
@@ -3067,11 +4033,24 @@ dependencies = [
3067
4033
  "wasm-bindgen-shared",
3068
4034
  ]
3069
4035
 
4036
+ [[package]]
4037
+ name = "wasm-bindgen-futures"
4038
+ version = "0.4.53"
4039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4040
+ checksum = "a0b221ff421256839509adbb55998214a70d829d3a28c69b4a6672e9d2a42f67"
4041
+ dependencies = [
4042
+ "cfg-if",
4043
+ "js-sys",
4044
+ "once_cell",
4045
+ "wasm-bindgen",
4046
+ "web-sys",
4047
+ ]
4048
+
3070
4049
  [[package]]
3071
4050
  name = "wasm-bindgen-macro"
3072
- version = "0.2.100"
4051
+ version = "0.2.103"
3073
4052
  source = "registry+https://github.com/rust-lang/crates.io-index"
3074
- checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
4053
+ checksum = "fc65f4f411d91494355917b605e1480033152658d71f722a90647f56a70c88a0"
3075
4054
  dependencies = [
3076
4055
  "quote",
3077
4056
  "wasm-bindgen-macro-support",
@@ -3079,9 +4058,9 @@ dependencies = [
3079
4058
 
3080
4059
  [[package]]
3081
4060
  name = "wasm-bindgen-macro-support"
3082
- version = "0.2.100"
4061
+ version = "0.2.103"
3083
4062
  source = "registry+https://github.com/rust-lang/crates.io-index"
3084
- checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4063
+ checksum = "ffc003a991398a8ee604a401e194b6b3a39677b3173d6e74495eb51b82e99a32"
3085
4064
  dependencies = [
3086
4065
  "proc-macro2",
3087
4066
  "quote",
@@ -3092,13 +4071,46 @@ dependencies = [
3092
4071
 
3093
4072
  [[package]]
3094
4073
  name = "wasm-bindgen-shared"
3095
- version = "0.2.100"
4074
+ version = "0.2.103"
3096
4075
  source = "registry+https://github.com/rust-lang/crates.io-index"
3097
- checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4076
+ checksum = "293c37f4efa430ca14db3721dfbe48d8c33308096bd44d80ebaa775ab71ba1cf"
3098
4077
  dependencies = [
3099
4078
  "unicode-ident",
3100
4079
  ]
3101
4080
 
4081
+ [[package]]
4082
+ name = "wasm-streams"
4083
+ version = "0.4.2"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4086
+ dependencies = [
4087
+ "futures-util",
4088
+ "js-sys",
4089
+ "wasm-bindgen",
4090
+ "wasm-bindgen-futures",
4091
+ "web-sys",
4092
+ ]
4093
+
4094
+ [[package]]
4095
+ name = "web-sys"
4096
+ version = "0.3.80"
4097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4098
+ checksum = "fbe734895e869dc429d78c4b433f8d17d95f8d05317440b4fad5ab2d33e596dc"
4099
+ dependencies = [
4100
+ "js-sys",
4101
+ "wasm-bindgen",
4102
+ ]
4103
+
4104
+ [[package]]
4105
+ name = "web-time"
4106
+ version = "1.1.0"
4107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4108
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4109
+ dependencies = [
4110
+ "js-sys",
4111
+ "wasm-bindgen",
4112
+ ]
4113
+
3102
4114
  [[package]]
3103
4115
  name = "winapi"
3104
4116
  version = "0.3.9"
@@ -3117,11 +4129,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3117
4129
 
3118
4130
  [[package]]
3119
4131
  name = "winapi-util"
3120
- version = "0.1.9"
4132
+ version = "0.1.11"
3121
4133
  source = "registry+https://github.com/rust-lang/crates.io-index"
3122
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4134
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3123
4135
  dependencies = [
3124
- "windows-sys 0.59.0",
4136
+ "windows-sys 0.61.0",
3125
4137
  ]
3126
4138
 
3127
4139
  [[package]]
@@ -3130,52 +4142,19 @@ version = "0.4.0"
3130
4142
  source = "registry+https://github.com/rust-lang/crates.io-index"
3131
4143
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3132
4144
 
3133
- [[package]]
3134
- name = "windows"
3135
- version = "0.57.0"
3136
- source = "registry+https://github.com/rust-lang/crates.io-index"
3137
- checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
3138
- dependencies = [
3139
- "windows-core 0.57.0",
3140
- "windows-targets",
3141
- ]
3142
-
3143
4145
  [[package]]
3144
4146
  name = "windows-core"
3145
- version = "0.57.0"
4147
+ version = "0.62.0"
3146
4148
  source = "registry+https://github.com/rust-lang/crates.io-index"
3147
- checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
4149
+ checksum = "57fe7168f7de578d2d8a05b07fd61870d2e73b4020e9f49aa00da8471723497c"
3148
4150
  dependencies = [
3149
- "windows-implement 0.57.0",
3150
- "windows-interface 0.57.0",
3151
- "windows-result 0.1.2",
3152
- "windows-targets",
3153
- ]
3154
-
3155
- [[package]]
3156
- name = "windows-core"
3157
- version = "0.61.0"
3158
- source = "registry+https://github.com/rust-lang/crates.io-index"
3159
- checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3160
- dependencies = [
3161
- "windows-implement 0.60.0",
3162
- "windows-interface 0.59.1",
3163
- "windows-link",
3164
- "windows-result 0.3.2",
4151
+ "windows-implement",
4152
+ "windows-interface",
4153
+ "windows-link 0.2.0",
4154
+ "windows-result",
3165
4155
  "windows-strings",
3166
4156
  ]
3167
4157
 
3168
- [[package]]
3169
- name = "windows-implement"
3170
- version = "0.57.0"
3171
- source = "registry+https://github.com/rust-lang/crates.io-index"
3172
- checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3173
- dependencies = [
3174
- "proc-macro2",
3175
- "quote",
3176
- "syn",
3177
- ]
3178
-
3179
4158
  [[package]]
3180
4159
  name = "windows-implement"
3181
4160
  version = "0.60.0"
@@ -3187,17 +4166,6 @@ dependencies = [
3187
4166
  "syn",
3188
4167
  ]
3189
4168
 
3190
- [[package]]
3191
- name = "windows-interface"
3192
- version = "0.57.0"
3193
- source = "registry+https://github.com/rust-lang/crates.io-index"
3194
- checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
3195
- dependencies = [
3196
- "proc-macro2",
3197
- "quote",
3198
- "syn",
3199
- ]
3200
-
3201
4169
  [[package]]
3202
4170
  name = "windows-interface"
3203
4171
  version = "0.59.1"
@@ -3211,35 +4179,32 @@ dependencies = [
3211
4179
 
3212
4180
  [[package]]
3213
4181
  name = "windows-link"
3214
- version = "0.1.1"
4182
+ version = "0.1.3"
3215
4183
  source = "registry+https://github.com/rust-lang/crates.io-index"
3216
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4184
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3217
4185
 
3218
4186
  [[package]]
3219
- name = "windows-result"
3220
- version = "0.1.2"
4187
+ name = "windows-link"
4188
+ version = "0.2.0"
3221
4189
  source = "registry+https://github.com/rust-lang/crates.io-index"
3222
- checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
3223
- dependencies = [
3224
- "windows-targets",
3225
- ]
4190
+ checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
3226
4191
 
3227
4192
  [[package]]
3228
4193
  name = "windows-result"
3229
- version = "0.3.2"
4194
+ version = "0.4.0"
3230
4195
  source = "registry+https://github.com/rust-lang/crates.io-index"
3231
- checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
4196
+ checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
3232
4197
  dependencies = [
3233
- "windows-link",
4198
+ "windows-link 0.2.0",
3234
4199
  ]
3235
4200
 
3236
4201
  [[package]]
3237
4202
  name = "windows-strings"
3238
- version = "0.4.0"
4203
+ version = "0.5.0"
3239
4204
  source = "registry+https://github.com/rust-lang/crates.io-index"
3240
- checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
4205
+ checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
3241
4206
  dependencies = [
3242
- "windows-link",
4207
+ "windows-link 0.2.0",
3243
4208
  ]
3244
4209
 
3245
4210
  [[package]]
@@ -3248,7 +4213,7 @@ version = "0.52.0"
3248
4213
  source = "registry+https://github.com/rust-lang/crates.io-index"
3249
4214
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3250
4215
  dependencies = [
3251
- "windows-targets",
4216
+ "windows-targets 0.52.6",
3252
4217
  ]
3253
4218
 
3254
4219
  [[package]]
@@ -3257,7 +4222,25 @@ version = "0.59.0"
3257
4222
  source = "registry+https://github.com/rust-lang/crates.io-index"
3258
4223
  checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3259
4224
  dependencies = [
3260
- "windows-targets",
4225
+ "windows-targets 0.52.6",
4226
+ ]
4227
+
4228
+ [[package]]
4229
+ name = "windows-sys"
4230
+ version = "0.60.2"
4231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4232
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4233
+ dependencies = [
4234
+ "windows-targets 0.53.3",
4235
+ ]
4236
+
4237
+ [[package]]
4238
+ name = "windows-sys"
4239
+ version = "0.61.0"
4240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4241
+ checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
4242
+ dependencies = [
4243
+ "windows-link 0.2.0",
3261
4244
  ]
3262
4245
 
3263
4246
  [[package]]
@@ -3266,14 +4249,31 @@ version = "0.52.6"
3266
4249
  source = "registry+https://github.com/rust-lang/crates.io-index"
3267
4250
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3268
4251
  dependencies = [
3269
- "windows_aarch64_gnullvm",
3270
- "windows_aarch64_msvc",
3271
- "windows_i686_gnu",
3272
- "windows_i686_gnullvm",
3273
- "windows_i686_msvc",
3274
- "windows_x86_64_gnu",
3275
- "windows_x86_64_gnullvm",
3276
- "windows_x86_64_msvc",
4252
+ "windows_aarch64_gnullvm 0.52.6",
4253
+ "windows_aarch64_msvc 0.52.6",
4254
+ "windows_i686_gnu 0.52.6",
4255
+ "windows_i686_gnullvm 0.52.6",
4256
+ "windows_i686_msvc 0.52.6",
4257
+ "windows_x86_64_gnu 0.52.6",
4258
+ "windows_x86_64_gnullvm 0.52.6",
4259
+ "windows_x86_64_msvc 0.52.6",
4260
+ ]
4261
+
4262
+ [[package]]
4263
+ name = "windows-targets"
4264
+ version = "0.53.3"
4265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4266
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
4267
+ dependencies = [
4268
+ "windows-link 0.1.3",
4269
+ "windows_aarch64_gnullvm 0.53.0",
4270
+ "windows_aarch64_msvc 0.53.0",
4271
+ "windows_i686_gnu 0.53.0",
4272
+ "windows_i686_gnullvm 0.53.0",
4273
+ "windows_i686_msvc 0.53.0",
4274
+ "windows_x86_64_gnu 0.53.0",
4275
+ "windows_x86_64_gnullvm 0.53.0",
4276
+ "windows_x86_64_msvc 0.53.0",
3277
4277
  ]
3278
4278
 
3279
4279
  [[package]]
@@ -3282,65 +4282,116 @@ version = "0.52.6"
3282
4282
  source = "registry+https://github.com/rust-lang/crates.io-index"
3283
4283
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3284
4284
 
4285
+ [[package]]
4286
+ name = "windows_aarch64_gnullvm"
4287
+ version = "0.53.0"
4288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4289
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4290
+
3285
4291
  [[package]]
3286
4292
  name = "windows_aarch64_msvc"
3287
4293
  version = "0.52.6"
3288
4294
  source = "registry+https://github.com/rust-lang/crates.io-index"
3289
4295
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3290
4296
 
4297
+ [[package]]
4298
+ name = "windows_aarch64_msvc"
4299
+ version = "0.53.0"
4300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4301
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4302
+
3291
4303
  [[package]]
3292
4304
  name = "windows_i686_gnu"
3293
4305
  version = "0.52.6"
3294
4306
  source = "registry+https://github.com/rust-lang/crates.io-index"
3295
4307
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3296
4308
 
4309
+ [[package]]
4310
+ name = "windows_i686_gnu"
4311
+ version = "0.53.0"
4312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4313
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4314
+
3297
4315
  [[package]]
3298
4316
  name = "windows_i686_gnullvm"
3299
4317
  version = "0.52.6"
3300
4318
  source = "registry+https://github.com/rust-lang/crates.io-index"
3301
4319
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3302
4320
 
4321
+ [[package]]
4322
+ name = "windows_i686_gnullvm"
4323
+ version = "0.53.0"
4324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4325
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4326
+
3303
4327
  [[package]]
3304
4328
  name = "windows_i686_msvc"
3305
4329
  version = "0.52.6"
3306
4330
  source = "registry+https://github.com/rust-lang/crates.io-index"
3307
4331
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3308
4332
 
4333
+ [[package]]
4334
+ name = "windows_i686_msvc"
4335
+ version = "0.53.0"
4336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4337
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4338
+
3309
4339
  [[package]]
3310
4340
  name = "windows_x86_64_gnu"
3311
4341
  version = "0.52.6"
3312
4342
  source = "registry+https://github.com/rust-lang/crates.io-index"
3313
4343
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3314
4344
 
4345
+ [[package]]
4346
+ name = "windows_x86_64_gnu"
4347
+ version = "0.53.0"
4348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4349
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4350
+
3315
4351
  [[package]]
3316
4352
  name = "windows_x86_64_gnullvm"
3317
4353
  version = "0.52.6"
3318
4354
  source = "registry+https://github.com/rust-lang/crates.io-index"
3319
4355
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3320
4356
 
4357
+ [[package]]
4358
+ name = "windows_x86_64_gnullvm"
4359
+ version = "0.53.0"
4360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4361
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4362
+
3321
4363
  [[package]]
3322
4364
  name = "windows_x86_64_msvc"
3323
4365
  version = "0.52.6"
3324
4366
  source = "registry+https://github.com/rust-lang/crates.io-index"
3325
4367
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3326
4368
 
4369
+ [[package]]
4370
+ name = "windows_x86_64_msvc"
4371
+ version = "0.53.0"
4372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4373
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4374
+
3327
4375
  [[package]]
3328
4376
  name = "winnow"
3329
- version = "0.7.9"
4377
+ version = "0.7.13"
3330
4378
  source = "registry+https://github.com/rust-lang/crates.io-index"
3331
- checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3"
4379
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
3332
4380
  dependencies = [
3333
4381
  "memchr",
3334
4382
  ]
3335
4383
 
3336
4384
  [[package]]
3337
- name = "wit-bindgen-rt"
3338
- version = "0.39.0"
4385
+ name = "wit-bindgen"
4386
+ version = "0.46.0"
3339
4387
  source = "registry+https://github.com/rust-lang/crates.io-index"
3340
- checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3341
- dependencies = [
3342
- "bitflags",
3343
- ]
4388
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4389
+
4390
+ [[package]]
4391
+ name = "writeable"
4392
+ version = "0.6.1"
4393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4394
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3344
4395
 
3345
4396
  [[package]]
3346
4397
  name = "xxhash-rust"
@@ -3349,28 +4400,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
4400
  checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3350
4401
 
3351
4402
  [[package]]
3352
- name = "zerocopy"
3353
- version = "0.7.35"
4403
+ name = "yoke"
4404
+ version = "0.8.0"
3354
4405
  source = "registry+https://github.com/rust-lang/crates.io-index"
3355
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4406
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3356
4407
  dependencies = [
3357
- "zerocopy-derive 0.7.35",
4408
+ "serde",
4409
+ "stable_deref_trait",
4410
+ "yoke-derive",
4411
+ "zerofrom",
4412
+ ]
4413
+
4414
+ [[package]]
4415
+ name = "yoke-derive"
4416
+ version = "0.8.0"
4417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4418
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4419
+ dependencies = [
4420
+ "proc-macro2",
4421
+ "quote",
4422
+ "syn",
4423
+ "synstructure",
3358
4424
  ]
3359
4425
 
3360
4426
  [[package]]
3361
4427
  name = "zerocopy"
3362
- version = "0.8.25"
4428
+ version = "0.8.27"
3363
4429
  source = "registry+https://github.com/rust-lang/crates.io-index"
3364
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
4430
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
3365
4431
  dependencies = [
3366
- "zerocopy-derive 0.8.25",
4432
+ "zerocopy-derive",
3367
4433
  ]
3368
4434
 
3369
4435
  [[package]]
3370
4436
  name = "zerocopy-derive"
3371
- version = "0.7.35"
4437
+ version = "0.8.27"
3372
4438
  source = "registry+https://github.com/rust-lang/crates.io-index"
3373
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4439
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
3374
4440
  dependencies = [
3375
4441
  "proc-macro2",
3376
4442
  "quote",
@@ -3378,10 +4444,59 @@ dependencies = [
3378
4444
  ]
3379
4445
 
3380
4446
  [[package]]
3381
- name = "zerocopy-derive"
3382
- version = "0.8.25"
4447
+ name = "zerofrom"
4448
+ version = "0.1.6"
4449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4450
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4451
+ dependencies = [
4452
+ "zerofrom-derive",
4453
+ ]
4454
+
4455
+ [[package]]
4456
+ name = "zerofrom-derive"
4457
+ version = "0.1.6"
3383
4458
  source = "registry+https://github.com/rust-lang/crates.io-index"
3384
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
4459
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4460
+ dependencies = [
4461
+ "proc-macro2",
4462
+ "quote",
4463
+ "syn",
4464
+ "synstructure",
4465
+ ]
4466
+
4467
+ [[package]]
4468
+ name = "zeroize"
4469
+ version = "1.8.1"
4470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4471
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
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
+
4484
+ [[package]]
4485
+ name = "zerovec"
4486
+ version = "0.11.4"
4487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4488
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
4489
+ dependencies = [
4490
+ "yoke",
4491
+ "zerofrom",
4492
+ "zerovec-derive",
4493
+ ]
4494
+
4495
+ [[package]]
4496
+ name = "zerovec-derive"
4497
+ version = "0.11.1"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3385
4500
  dependencies = [
3386
4501
  "proc-macro2",
3387
4502
  "quote",
@@ -3390,9 +4505,9 @@ dependencies = [
3390
4505
 
3391
4506
  [[package]]
3392
4507
  name = "zlib-rs"
3393
- version = "0.5.0"
4508
+ version = "0.5.2"
3394
4509
  source = "registry+https://github.com/rust-lang/crates.io-index"
3395
- checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
4510
+ checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
3396
4511
 
3397
4512
  [[package]]
3398
4513
  name = "zstd"
@@ -3414,9 +4529,9 @@ dependencies = [
3414
4529
 
3415
4530
  [[package]]
3416
4531
  name = "zstd-sys"
3417
- version = "2.0.15+zstd.1.5.7"
4532
+ version = "2.0.16+zstd.1.5.7"
3418
4533
  source = "registry+https://github.com/rust-lang/crates.io-index"
3419
- checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4534
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3420
4535
  dependencies = [
3421
4536
  "cc",
3422
4537
  "pkg-config",