maplib 0.15.11__tar.gz → 0.15.20__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 (197) hide show
  1. {maplib-0.15.11 → maplib-0.15.20}/Cargo.lock +296 -180
  2. {maplib-0.15.11 → maplib-0.15.20}/Cargo.toml +4 -4
  3. {maplib-0.15.11 → maplib-0.15.20}/PKG-INFO +1 -1
  4. maplib-0.15.20/lib/cimxml/Cargo.toml +15 -0
  5. maplib-0.15.20/lib/cimxml/src/export.rs +45 -0
  6. maplib-0.15.20/lib/cimxml/src/lib.rs +1 -0
  7. maplib-0.15.20/lib/datalog/Cargo.toml +17 -0
  8. maplib-0.15.20/lib/datalog/src/ast.rs +8 -0
  9. maplib-0.15.20/lib/datalog/src/inference.rs +25 -0
  10. maplib-0.15.20/lib/datalog/src/lib.rs +3 -0
  11. maplib-0.15.20/lib/datalog/src/parser.rs +16 -0
  12. {maplib-0.15.11 → maplib-0.15.20}/lib/file_io/src/lib.rs +1 -1
  13. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/Cargo.toml +8 -0
  14. maplib-0.15.20/lib/maplib/src/errors.rs +45 -0
  15. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/src/mapping/default.rs +9 -12
  16. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/src/mapping/errors.rs +10 -36
  17. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/src/mapping/expansion/validation.rs +6 -9
  18. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/src/mapping/expansion.rs +3 -2
  19. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/src/mapping.rs +124 -38
  20. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/tests/test_stottr.rs +11 -1
  21. {maplib-0.15.11 → maplib-0.15.20}/lib/pydf_io/src/to_python.rs +10 -9
  22. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/aggregates.rs +14 -9
  23. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/constants.rs +2 -0
  24. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/expressions.rs +191 -111
  25. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/graph_patterns.rs +4 -4
  26. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/type_constraints.rs +0 -8
  27. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/Cargo.toml +3 -1
  28. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/lib.rs +24 -0
  29. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/multitype.rs +2 -2
  30. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/python.rs +39 -22
  31. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/solution_mapping.rs +22 -0
  32. {maplib-0.15.11 → maplib-0.15.20}/lib/shacl/Cargo.toml +5 -0
  33. {maplib-0.15.11 → maplib-0.15.20}/lib/shacl/src/lib.rs +6 -2
  34. {maplib-0.15.11 → maplib-0.15.20}/lib/shacl/src/storage.rs +2 -0
  35. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/parser.rs +2 -2
  36. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/Cargo.toml +6 -0
  37. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/dblf.rs +87 -58
  38. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/errors.rs +4 -11
  39. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/lib.rs +21 -2
  40. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/query_solutions.rs +12 -5
  41. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/rdfs_inferencing.rs +15 -3
  42. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/errors.rs +2 -0
  43. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_aggregate.rs +12 -5
  44. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +3 -3
  45. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +0 -1
  46. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +5 -8
  47. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +0 -1
  48. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql.rs +56 -13
  49. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/storage.rs +12 -27
  50. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/triples_read.rs +1 -1
  51. maplib-0.15.20/lib/utils/Cargo.toml +16 -0
  52. maplib-0.15.20/lib/utils/src/lib.rs +1 -0
  53. maplib-0.15.20/lib/utils/src/polars.rs +55 -0
  54. {maplib-0.15.11/py_maplib → maplib-0.15.20}/maplib/__init__.py +3 -1
  55. {maplib-0.15.11/py_maplib → maplib-0.15.20}/maplib/__init__.pyi +70 -0
  56. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/Cargo.toml +8 -5
  57. {maplib-0.15.11 → maplib-0.15.20/py_maplib}/maplib/__init__.py +3 -1
  58. {maplib-0.15.11 → maplib-0.15.20/py_maplib}/maplib/__init__.pyi +70 -0
  59. maplib-0.15.20/py_maplib/src/error.rs +50 -0
  60. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/src/lib.rs +188 -60
  61. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/src/shacl.rs +4 -3
  62. maplib-0.15.20/py_maplib/tests/test_exceptions.py +9 -0
  63. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_multi_expressions.py +107 -1
  64. maplib-0.15.11/lib/maplib/src/errors.rs +0 -11
  65. maplib-0.15.11/py_maplib/src/error.rs +0 -91
  66. {maplib-0.15.11 → maplib-0.15.20}/LICENSE +0 -0
  67. {maplib-0.15.11 → maplib-0.15.20}/README.md +0 -0
  68. {maplib-0.15.11 → maplib-0.15.20}/lib/file_io/Cargo.toml +0 -0
  69. {maplib-0.15.11 → maplib-0.15.20}/lib/fts/Cargo.toml +0 -0
  70. {maplib-0.15.11 → maplib-0.15.20}/lib/fts/src/lib.rs +0 -0
  71. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/src/lib.rs +0 -0
  72. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/src/mapping/constant_terms.rs +0 -0
  73. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
  74. {maplib-0.15.11 → maplib-0.15.20}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
  75. {maplib-0.15.11 → maplib-0.15.20}/lib/pydf_io/Cargo.toml +0 -0
  76. {maplib-0.15.11 → maplib-0.15.20}/lib/pydf_io/LICENSE +0 -0
  77. {maplib-0.15.11 → maplib-0.15.20}/lib/pydf_io/README.md +0 -0
  78. {maplib-0.15.11 → maplib-0.15.20}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  79. {maplib-0.15.11 → maplib-0.15.20}/lib/pydf_io/src/lib.rs +0 -0
  80. {maplib-0.15.11 → maplib-0.15.20}/lib/pydf_io/src/to_rust.rs +0 -0
  81. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/Cargo.toml +0 -0
  82. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/LICENSE +0 -0
  83. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/README.md +0 -0
  84. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/errors.rs +0 -0
  85. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/exists_helper.rs +0 -0
  86. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/find_query_variables.rs +0 -0
  87. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/lib.rs +0 -0
  88. {maplib-0.15.11 → maplib-0.15.20}/lib/query_processing/src/pushdowns.rs +0 -0
  89. {maplib-0.15.11 → maplib-0.15.20}/lib/report_mapping/Cargo.toml +0 -0
  90. {maplib-0.15.11 → maplib-0.15.20}/lib/report_mapping/src/lib.rs +0 -0
  91. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/LICENSE +0 -0
  92. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/README.md +0 -0
  93. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/errors.rs +0 -0
  94. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/formatting.rs +0 -0
  95. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/literals.rs +0 -0
  96. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/polars_to_rdf.rs +0 -0
  97. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/query_context.rs +0 -0
  98. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/rdf_to_polars.rs +0 -0
  99. {maplib-0.15.11 → maplib-0.15.20}/lib/representation/src/subtypes.rs +0 -0
  100. {maplib-0.15.11 → maplib-0.15.20}/lib/shacl/src/errors.rs +0 -0
  101. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/Cargo.toml +0 -0
  102. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/LICENSE +0 -0
  103. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/README.md +0 -0
  104. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/algebra.rs +0 -0
  105. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/lib.rs +0 -0
  106. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/query.rs +0 -0
  107. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/query_context.rs +0 -0
  108. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/remove_sugar.rs +0 -0
  109. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/term.rs +0 -0
  110. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/treehouse.rs +0 -0
  111. {maplib-0.15.11 → maplib-0.15.20}/lib/spargebra/src/update.rs +0 -0
  112. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/Cargo.toml +0 -0
  113. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/ast.rs +0 -0
  114. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/compatible.rs +0 -0
  115. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/constants.rs +0 -0
  116. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/dataset/errors.rs +0 -0
  117. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/dataset.rs +0 -0
  118. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/document.rs +0 -0
  119. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/lib.rs +0 -0
  120. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/parsing/errors.rs +0 -0
  121. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/parsing/nom_parsing.rs +0 -0
  122. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/parsing/parser_test.rs +0 -0
  123. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/parsing/parsing_ast.rs +0 -0
  124. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/parsing.rs +0 -0
  125. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/python.rs +0 -0
  126. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/resolver.rs +0 -0
  127. {maplib-0.15.11 → maplib-0.15.20}/lib/templates/src/subtypes_ext.rs +0 -0
  128. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/io_funcs.rs +0 -0
  129. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/native_parquet_write.rs +0 -0
  130. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_expressions.rs +0 -0
  131. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +0 -0
  132. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +0 -0
  133. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +0 -0
  134. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +0 -0
  135. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +0 -0
  136. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +0 -0
  137. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +0 -0
  138. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +0 -0
  139. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +0 -0
  140. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  141. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +0 -0
  142. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +0 -0
  143. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_order.rs +0 -0
  144. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
  145. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
  146. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/triples_write/serializers.rs +0 -0
  147. {maplib-0.15.11 → maplib-0.15.20}/lib/triplestore/src/triples_write.rs +0 -0
  148. {maplib-0.15.11 → maplib-0.15.20}/maplib/add_triples.py +0 -0
  149. {maplib-0.15.11 → maplib-0.15.20}/maplib/py.typed +0 -0
  150. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/LICENSE +0 -0
  151. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/README.md +0 -0
  152. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/maplib/.gitignore +0 -0
  153. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/maplib/add_triples.py +0 -0
  154. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/maplib/py.typed +0 -0
  155. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/.gitignore +0 -0
  156. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/__init__.py +0 -0
  157. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/out.ttl +0 -0
  158. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/requirements.txt +0 -0
  159. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_basics.py +0 -0
  160. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
  161. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_data_validation.py +0 -0
  162. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_integration.py +0 -0
  163. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_pizza_example.py +0 -0
  164. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
  165. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_rdf_parser.py +0 -0
  166. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_read_write.py +0 -0
  167. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/test_validate_iris.py +0 -0
  168. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  169. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  170. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  171. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  172. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  173. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/larger_query.csv +0 -0
  174. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_concat.csv +0 -0
  175. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  176. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  177. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  178. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  179. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  180. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  181. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  182. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  183. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  184. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
  185. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  186. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  187. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  188. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  189. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  190. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
  191. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
  192. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  193. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  194. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  195. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/simple_query.csv +0 -0
  196. {maplib-0.15.11 → maplib-0.15.20}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
  197. {maplib-0.15.11 → maplib-0.15.20}/pyproject.toml +0 -0
@@ -24,7 +24,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
24
24
  checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
25
25
  dependencies = [
26
26
  "cfg-if",
27
- "getrandom 0.2.15",
27
+ "getrandom 0.2.16",
28
28
  "once_cell",
29
29
  "version_check",
30
30
  "zerocopy 0.7.35",
@@ -162,9 +162,21 @@ dependencies = [
162
162
 
163
163
  [[package]]
164
164
  name = "array-init-cursor"
165
- version = "0.2.0"
165
+ version = "0.2.1"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
168
+
169
+ [[package]]
170
+ name = "async-channel"
171
+ version = "2.3.1"
166
172
  source = "registry+https://github.com/rust-lang/crates.io-index"
167
- checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
173
+ checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
174
+ dependencies = [
175
+ "concurrent-queue",
176
+ "event-listener-strategy",
177
+ "futures-core",
178
+ "pin-project-lite",
179
+ ]
168
180
 
169
181
  [[package]]
170
182
  name = "async-stream"
@@ -257,9 +269,9 @@ dependencies = [
257
269
 
258
270
  [[package]]
259
271
  name = "brotli-decompressor"
260
- version = "4.0.2"
272
+ version = "4.0.3"
261
273
  source = "registry+https://github.com/rust-lang/crates.io-index"
262
- checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
274
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
263
275
  dependencies = [
264
276
  "alloc-no-stdlib",
265
277
  "alloc-stdlib",
@@ -273,9 +285,9 @@ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
273
285
 
274
286
  [[package]]
275
287
  name = "bytemuck"
276
- version = "1.22.0"
288
+ version = "1.23.0"
277
289
  source = "registry+https://github.com/rust-lang/crates.io-index"
278
- checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
290
+ checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
279
291
  dependencies = [
280
292
  "bytemuck_derive",
281
293
  ]
@@ -311,9 +323,9 @@ dependencies = [
311
323
 
312
324
  [[package]]
313
325
  name = "cc"
314
- version = "1.2.17"
326
+ version = "1.2.21"
315
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
316
- checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
328
+ checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
317
329
  dependencies = [
318
330
  "jobserver",
319
331
  "libc",
@@ -328,9 +340,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
328
340
 
329
341
  [[package]]
330
342
  name = "chrono"
331
- version = "0.4.40"
343
+ version = "0.4.41"
332
344
  source = "registry+https://github.com/rust-lang/crates.io-index"
333
- checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
345
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
334
346
  dependencies = [
335
347
  "android-tzdata",
336
348
  "iana-time-zone",
@@ -340,17 +352,6 @@ dependencies = [
340
352
  "windows-link",
341
353
  ]
342
354
 
343
- [[package]]
344
- name = "chrono-tz"
345
- version = "0.9.0"
346
- source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
348
- dependencies = [
349
- "chrono",
350
- "chrono-tz-build 0.3.0",
351
- "phf",
352
- ]
353
-
354
355
  [[package]]
355
356
  name = "chrono-tz"
356
357
  version = "0.10.3"
@@ -358,29 +359,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
358
359
  checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
359
360
  dependencies = [
360
361
  "chrono",
361
- "chrono-tz-build 0.4.1",
362
+ "chrono-tz-build",
362
363
  "phf",
363
364
  ]
364
365
 
365
366
  [[package]]
366
367
  name = "chrono-tz-build"
367
- version = "0.3.0"
368
+ version = "0.4.1"
368
369
  source = "registry+https://github.com/rust-lang/crates.io-index"
369
- checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1"
370
+ checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
370
371
  dependencies = [
371
372
  "parse-zoneinfo",
372
- "phf",
373
373
  "phf_codegen",
374
374
  ]
375
375
 
376
376
  [[package]]
377
- name = "chrono-tz-build"
378
- version = "0.4.1"
379
- source = "registry+https://github.com/rust-lang/crates.io-index"
380
- checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
377
+ name = "cimxml"
378
+ version = "0.1.0"
381
379
  dependencies = [
382
- "parse-zoneinfo",
383
- "phf_codegen",
380
+ "oxrdf",
381
+ "pyo3",
382
+ "thiserror",
383
+ "triplestore",
384
384
  ]
385
385
 
386
386
  [[package]]
@@ -415,6 +415,15 @@ dependencies = [
415
415
  "static_assertions",
416
416
  ]
417
417
 
418
+ [[package]]
419
+ name = "concurrent-queue"
420
+ version = "2.5.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
423
+ dependencies = [
424
+ "crossbeam-utils",
425
+ ]
426
+
418
427
  [[package]]
419
428
  name = "core-foundation-sys"
420
429
  version = "0.8.7"
@@ -432,9 +441,9 @@ dependencies = [
432
441
 
433
442
  [[package]]
434
443
  name = "crossbeam-channel"
435
- version = "0.5.14"
444
+ version = "0.5.15"
436
445
  source = "registry+https://github.com/rust-lang/crates.io-index"
437
- checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
446
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
438
447
  dependencies = [
439
448
  "crossbeam-utils",
440
449
  ]
@@ -495,6 +504,17 @@ dependencies = [
495
504
  "winapi",
496
505
  ]
497
506
 
507
+ [[package]]
508
+ name = "datalog"
509
+ version = "0.1.0"
510
+ dependencies = [
511
+ "oxrdf",
512
+ "pyo3",
513
+ "representation",
514
+ "thiserror",
515
+ "triplestore",
516
+ ]
517
+
498
518
  [[package]]
499
519
  name = "dyn-clone"
500
520
  version = "1.0.19"
@@ -531,9 +551,9 @@ dependencies = [
531
551
 
532
552
  [[package]]
533
553
  name = "env_logger"
534
- version = "0.11.7"
554
+ version = "0.11.8"
535
555
  source = "registry+https://github.com/rust-lang/crates.io-index"
536
- checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
556
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
537
557
  dependencies = [
538
558
  "anstream",
539
559
  "anstyle",
@@ -550,9 +570,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
550
570
 
551
571
  [[package]]
552
572
  name = "errno"
553
- version = "0.3.10"
573
+ version = "0.3.11"
554
574
  source = "registry+https://github.com/rust-lang/crates.io-index"
555
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
575
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
556
576
  dependencies = [
557
577
  "libc",
558
578
  "windows-sys 0.59.0",
@@ -560,9 +580,30 @@ dependencies = [
560
580
 
561
581
  [[package]]
562
582
  name = "ethnum"
563
- version = "1.5.0"
583
+ version = "1.5.1"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
586
+
587
+ [[package]]
588
+ name = "event-listener"
589
+ version = "5.4.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
592
+ dependencies = [
593
+ "concurrent-queue",
594
+ "parking",
595
+ "pin-project-lite",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "event-listener-strategy"
600
+ version = "0.5.4"
564
601
  source = "registry+https://github.com/rust-lang/crates.io-index"
565
- checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
602
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
603
+ dependencies = [
604
+ "event-listener",
605
+ "pin-project-lite",
606
+ ]
566
607
 
567
608
  [[package]]
568
609
  name = "fallible-streaming-iterator"
@@ -587,9 +628,9 @@ dependencies = [
587
628
 
588
629
  [[package]]
589
630
  name = "flate2"
590
- version = "1.1.0"
631
+ version = "1.1.1"
591
632
  source = "registry+https://github.com/rust-lang/crates.io-index"
592
- checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
633
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
593
634
  dependencies = [
594
635
  "crc32fast",
595
636
  "libz-rs-sys",
@@ -738,9 +779,9 @@ dependencies = [
738
779
 
739
780
  [[package]]
740
781
  name = "getrandom"
741
- version = "0.2.15"
782
+ version = "0.2.16"
742
783
  source = "registry+https://github.com/rust-lang/crates.io-index"
743
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
784
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
744
785
  dependencies = [
745
786
  "cfg-if",
746
787
  "js-sys",
@@ -797,9 +838,9 @@ dependencies = [
797
838
 
798
839
  [[package]]
799
840
  name = "hashbrown"
800
- version = "0.15.2"
841
+ version = "0.15.3"
801
842
  source = "registry+https://github.com/rust-lang/crates.io-index"
802
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
843
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
803
844
  dependencies = [
804
845
  "allocator-api2",
805
846
  "equivalent",
@@ -837,9 +878,9 @@ dependencies = [
837
878
 
838
879
  [[package]]
839
880
  name = "iana-time-zone"
840
- version = "0.1.62"
881
+ version = "0.1.63"
841
882
  source = "registry+https://github.com/rust-lang/crates.io-index"
842
- checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127"
883
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
843
884
  dependencies = [
844
885
  "android_system_properties",
845
886
  "core-foundation-sys",
@@ -847,7 +888,7 @@ dependencies = [
847
888
  "js-sys",
848
889
  "log",
849
890
  "wasm-bindgen",
850
- "windows-core 0.52.0",
891
+ "windows-core 0.61.0",
851
892
  ]
852
893
 
853
894
  [[package]]
@@ -861,12 +902,12 @@ dependencies = [
861
902
 
862
903
  [[package]]
863
904
  name = "indexmap"
864
- version = "2.8.0"
905
+ version = "2.9.0"
865
906
  source = "registry+https://github.com/rust-lang/crates.io-index"
866
- checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
907
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
867
908
  dependencies = [
868
909
  "equivalent",
869
- "hashbrown 0.15.2",
910
+ "hashbrown 0.15.3",
870
911
  "serde",
871
912
  ]
872
913
 
@@ -910,9 +951,9 @@ dependencies = [
910
951
 
911
952
  [[package]]
912
953
  name = "jiff"
913
- version = "0.2.5"
954
+ version = "0.2.13"
914
955
  source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "c102670231191d07d37a35af3eb77f1f0dbf7a71be51a962dcd57ea607be7260"
956
+ checksum = "f02000660d30638906021176af16b17498bd0d12813dbfe7b276d8bc7f3c0806"
916
957
  dependencies = [
917
958
  "jiff-static",
918
959
  "log",
@@ -923,9 +964,9 @@ dependencies = [
923
964
 
924
965
  [[package]]
925
966
  name = "jiff-static"
926
- version = "0.2.5"
967
+ version = "0.2.13"
927
968
  source = "registry+https://github.com/rust-lang/crates.io-index"
928
- checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
969
+ checksum = "f3c30758ddd7188629c6713fc45d1188af4f44c90582311d0c8d8c9907f60c48"
929
970
  dependencies = [
930
971
  "proc-macro2",
931
972
  "quote",
@@ -934,10 +975,11 @@ dependencies = [
934
975
 
935
976
  [[package]]
936
977
  name = "jobserver"
937
- version = "0.1.32"
978
+ version = "0.1.33"
938
979
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
980
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
940
981
  dependencies = [
982
+ "getrandom 0.3.2",
941
983
  "libc",
942
984
  ]
943
985
 
@@ -959,21 +1001,21 @@ checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
959
1001
 
960
1002
  [[package]]
961
1003
  name = "libc"
962
- version = "0.2.171"
1004
+ version = "0.2.172"
963
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
964
- checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1006
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
965
1007
 
966
1008
  [[package]]
967
1009
  name = "libm"
968
- version = "0.2.11"
1010
+ version = "0.2.14"
969
1011
  source = "registry+https://github.com/rust-lang/crates.io-index"
970
- checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1012
+ checksum = "a25169bd5913a4b437588a7e3d127cd6e90127b60e0ffbd834a38f1599e016b8"
971
1013
 
972
1014
  [[package]]
973
1015
  name = "libmimalloc-sys"
974
- version = "0.1.40"
1016
+ version = "0.1.42"
975
1017
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "07d0e07885d6a754b9c7993f2625187ad694ee985d60f23355ff0e7077261502"
1018
+ checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
977
1019
  dependencies = [
978
1020
  "cc",
979
1021
  "libc",
@@ -981,9 +1023,9 @@ dependencies = [
981
1023
 
982
1024
  [[package]]
983
1025
  name = "libz-rs-sys"
984
- version = "0.4.2"
1026
+ version = "0.5.0"
985
1027
  source = "registry+https://github.com/rust-lang/crates.io-index"
986
- checksum = "902bc563b5d65ad9bba616b490842ef0651066a1a1dc3ce1087113ffcb873c8d"
1028
+ checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
987
1029
  dependencies = [
988
1030
  "zlib-rs",
989
1031
  ]
@@ -1034,13 +1076,16 @@ name = "maplib"
1034
1076
  version = "0.6.0"
1035
1077
  dependencies = [
1036
1078
  "chrono",
1037
- "chrono-tz 0.10.3",
1079
+ "chrono-tz",
1080
+ "cimxml",
1081
+ "datalog",
1038
1082
  "env_logger",
1039
1083
  "log",
1040
1084
  "oxiri",
1041
1085
  "oxrdf",
1042
1086
  "oxrdfio",
1043
1087
  "polars",
1088
+ "pyo3",
1044
1089
  "rayon",
1045
1090
  "representation",
1046
1091
  "rstest",
@@ -1088,9 +1133,9 @@ dependencies = [
1088
1133
 
1089
1134
  [[package]]
1090
1135
  name = "mimalloc"
1091
- version = "0.1.44"
1136
+ version = "0.1.46"
1092
1137
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
- checksum = "99585191385958383e13f6b822e6b6d8d9cf928e7d286ceb092da92b43c87bc1"
1138
+ checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
1094
1139
  dependencies = [
1095
1140
  "libmimalloc-sys",
1096
1141
  ]
@@ -1103,9 +1148,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1103
1148
 
1104
1149
  [[package]]
1105
1150
  name = "miniz_oxide"
1106
- version = "0.8.5"
1151
+ version = "0.8.8"
1107
1152
  source = "registry+https://github.com/rust-lang/crates.io-index"
1108
- checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1153
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1109
1154
  dependencies = [
1110
1155
  "adler2",
1111
1156
  ]
@@ -1302,6 +1347,12 @@ dependencies = [
1302
1347
  "thiserror",
1303
1348
  ]
1304
1349
 
1350
+ [[package]]
1351
+ name = "parking"
1352
+ version = "2.2.1"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1355
+
1305
1356
  [[package]]
1306
1357
  name = "parking_lot"
1307
1358
  version = "0.12.3"
@@ -1435,9 +1486,9 @@ dependencies = [
1435
1486
  [[package]]
1436
1487
  name = "polars"
1437
1488
  version = "0.46.0"
1438
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1489
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1439
1490
  dependencies = [
1440
- "getrandom 0.2.15",
1491
+ "getrandom 0.2.16",
1441
1492
  "polars-arrow",
1442
1493
  "polars-core",
1443
1494
  "polars-error",
@@ -1455,17 +1506,17 @@ dependencies = [
1455
1506
  [[package]]
1456
1507
  name = "polars-arrow"
1457
1508
  version = "0.46.0"
1458
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1509
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1459
1510
  dependencies = [
1460
1511
  "atoi_simd",
1461
1512
  "bytemuck",
1462
1513
  "chrono",
1463
- "chrono-tz 0.10.3",
1514
+ "chrono-tz",
1464
1515
  "dyn-clone",
1465
1516
  "either",
1466
1517
  "ethnum",
1467
- "getrandom 0.2.15",
1468
- "hashbrown 0.15.2",
1518
+ "getrandom 0.2.16",
1519
+ "hashbrown 0.15.3",
1469
1520
  "itoa",
1470
1521
  "lz4",
1471
1522
  "num-traits",
@@ -1495,14 +1546,14 @@ dependencies = [
1495
1546
  [[package]]
1496
1547
  name = "polars-compute"
1497
1548
  version = "0.46.0"
1498
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1549
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1499
1550
  dependencies = [
1500
1551
  "atoi_simd",
1501
1552
  "bytemuck",
1502
1553
  "chrono",
1503
1554
  "either",
1504
1555
  "fast-float2",
1505
- "hashbrown 0.15.2",
1556
+ "hashbrown 0.15.3",
1506
1557
  "itoa",
1507
1558
  "num-traits",
1508
1559
  "polars-arrow",
@@ -1518,16 +1569,16 @@ dependencies = [
1518
1569
  [[package]]
1519
1570
  name = "polars-core"
1520
1571
  version = "0.46.0"
1521
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1572
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1522
1573
  dependencies = [
1523
1574
  "bitflags",
1524
1575
  "bytemuck",
1525
1576
  "chrono",
1526
- "chrono-tz 0.10.3",
1577
+ "chrono-tz",
1527
1578
  "comfy-table",
1528
1579
  "either",
1529
1580
  "hashbrown 0.14.5",
1530
- "hashbrown 0.15.2",
1581
+ "hashbrown 0.15.3",
1531
1582
  "indexmap",
1532
1583
  "itoa",
1533
1584
  "num-traits",
@@ -1549,7 +1600,7 @@ dependencies = [
1549
1600
  [[package]]
1550
1601
  name = "polars-error"
1551
1602
  version = "0.46.0"
1552
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1603
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1553
1604
  dependencies = [
1554
1605
  "parking_lot",
1555
1606
  "polars-arrow-format",
@@ -1561,10 +1612,10 @@ dependencies = [
1561
1612
  [[package]]
1562
1613
  name = "polars-expr"
1563
1614
  version = "0.46.0"
1564
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1615
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1565
1616
  dependencies = [
1566
1617
  "bitflags",
1567
- "hashbrown 0.15.2",
1618
+ "hashbrown 0.15.3",
1568
1619
  "num-traits",
1569
1620
  "polars-arrow",
1570
1621
  "polars-compute",
@@ -1577,22 +1628,23 @@ dependencies = [
1577
1628
  "polars-utils",
1578
1629
  "rand 0.8.5",
1579
1630
  "rayon",
1631
+ "recursive",
1580
1632
  ]
1581
1633
 
1582
1634
  [[package]]
1583
1635
  name = "polars-io"
1584
1636
  version = "0.46.0"
1585
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1637
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1586
1638
  dependencies = [
1587
1639
  "async-trait",
1588
1640
  "atoi_simd",
1589
1641
  "bytes",
1590
1642
  "chrono",
1591
- "chrono-tz 0.10.3",
1643
+ "chrono-tz",
1592
1644
  "fast-float2",
1593
1645
  "futures",
1594
1646
  "glob",
1595
- "hashbrown 0.15.2",
1647
+ "hashbrown 0.15.3",
1596
1648
  "home",
1597
1649
  "itoa",
1598
1650
  "memchr",
@@ -1618,12 +1670,12 @@ dependencies = [
1618
1670
  [[package]]
1619
1671
  name = "polars-json"
1620
1672
  version = "0.46.0"
1621
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1673
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1622
1674
  dependencies = [
1623
1675
  "chrono",
1624
- "chrono-tz 0.10.3",
1676
+ "chrono-tz",
1625
1677
  "fallible-streaming-iterator",
1626
- "hashbrown 0.15.2",
1678
+ "hashbrown 0.15.3",
1627
1679
  "indexmap",
1628
1680
  "itoa",
1629
1681
  "num-traits",
@@ -1639,7 +1691,7 @@ dependencies = [
1639
1691
  [[package]]
1640
1692
  name = "polars-lazy"
1641
1693
  version = "0.46.0"
1642
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1694
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1643
1695
  dependencies = [
1644
1696
  "bitflags",
1645
1697
  "chrono",
@@ -1664,7 +1716,7 @@ dependencies = [
1664
1716
  [[package]]
1665
1717
  name = "polars-mem-engine"
1666
1718
  version = "0.46.0"
1667
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1719
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1668
1720
  dependencies = [
1669
1721
  "memmap2",
1670
1722
  "polars-arrow",
@@ -1683,17 +1735,18 @@ dependencies = [
1683
1735
  [[package]]
1684
1736
  name = "polars-ops"
1685
1737
  version = "0.46.0"
1686
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1738
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1687
1739
  dependencies = [
1688
1740
  "argminmax",
1689
1741
  "base64",
1690
1742
  "bytemuck",
1691
1743
  "chrono",
1692
- "chrono-tz 0.10.3",
1744
+ "chrono-tz",
1693
1745
  "either",
1694
- "hashbrown 0.15.2",
1746
+ "hashbrown 0.15.3",
1695
1747
  "hex",
1696
1748
  "indexmap",
1749
+ "libm",
1697
1750
  "memchr",
1698
1751
  "num-traits",
1699
1752
  "polars-arrow",
@@ -1714,7 +1767,7 @@ dependencies = [
1714
1767
  [[package]]
1715
1768
  name = "polars-parquet"
1716
1769
  version = "0.46.0"
1717
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1770
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1718
1771
  dependencies = [
1719
1772
  "async-stream",
1720
1773
  "base64",
@@ -1723,7 +1776,7 @@ dependencies = [
1723
1776
  "ethnum",
1724
1777
  "flate2",
1725
1778
  "futures",
1726
- "hashbrown 0.15.2",
1779
+ "hashbrown 0.15.3",
1727
1780
  "lz4",
1728
1781
  "num-traits",
1729
1782
  "polars-arrow",
@@ -1750,13 +1803,13 @@ dependencies = [
1750
1803
  [[package]]
1751
1804
  name = "polars-pipe"
1752
1805
  version = "0.46.0"
1753
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1806
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1754
1807
  dependencies = [
1755
1808
  "crossbeam-channel",
1756
1809
  "crossbeam-queue",
1757
1810
  "enum_dispatch",
1758
1811
  "futures",
1759
- "hashbrown 0.15.2",
1812
+ "hashbrown 0.15.3",
1760
1813
  "num-traits",
1761
1814
  "polars-arrow",
1762
1815
  "polars-compute",
@@ -1775,15 +1828,15 @@ dependencies = [
1775
1828
  [[package]]
1776
1829
  name = "polars-plan"
1777
1830
  version = "0.46.0"
1778
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1831
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1779
1832
  dependencies = [
1780
1833
  "bitflags",
1781
1834
  "bytemuck",
1782
1835
  "bytes",
1783
1836
  "chrono",
1784
- "chrono-tz 0.10.3",
1837
+ "chrono-tz",
1785
1838
  "either",
1786
- "hashbrown 0.15.2",
1839
+ "hashbrown 0.15.3",
1787
1840
  "memmap2",
1788
1841
  "num-traits",
1789
1842
  "percent-encoding",
@@ -1805,7 +1858,7 @@ dependencies = [
1805
1858
  [[package]]
1806
1859
  name = "polars-row"
1807
1860
  version = "0.46.0"
1808
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1861
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1809
1862
  dependencies = [
1810
1863
  "bitflags",
1811
1864
  "bytemuck",
@@ -1818,7 +1871,7 @@ dependencies = [
1818
1871
  [[package]]
1819
1872
  name = "polars-schema"
1820
1873
  version = "0.46.0"
1821
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1874
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1822
1875
  dependencies = [
1823
1876
  "indexmap",
1824
1877
  "polars-error",
@@ -1829,7 +1882,7 @@ dependencies = [
1829
1882
  [[package]]
1830
1883
  name = "polars-sql"
1831
1884
  version = "0.46.0"
1832
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1885
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1833
1886
  dependencies = [
1834
1887
  "bitflags",
1835
1888
  "hex",
@@ -1849,8 +1902,9 @@ dependencies = [
1849
1902
  [[package]]
1850
1903
  name = "polars-stream"
1851
1904
  version = "0.46.0"
1852
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1905
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1853
1906
  dependencies = [
1907
+ "async-channel",
1854
1908
  "async-trait",
1855
1909
  "atomic-waker",
1856
1910
  "bitflags",
@@ -1884,12 +1938,12 @@ dependencies = [
1884
1938
  [[package]]
1885
1939
  name = "polars-time"
1886
1940
  version = "0.46.0"
1887
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1941
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1888
1942
  dependencies = [
1889
1943
  "atoi_simd",
1890
1944
  "bytemuck",
1891
1945
  "chrono",
1892
- "chrono-tz 0.10.3",
1946
+ "chrono-tz",
1893
1947
  "now",
1894
1948
  "num-traits",
1895
1949
  "polars-arrow",
@@ -1906,13 +1960,13 @@ dependencies = [
1906
1960
  [[package]]
1907
1961
  name = "polars-utils"
1908
1962
  version = "0.46.0"
1909
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1963
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1910
1964
  dependencies = [
1911
1965
  "bytemuck",
1912
1966
  "bytes",
1913
1967
  "compact_str",
1914
1968
  "foldhash",
1915
- "hashbrown 0.15.2",
1969
+ "hashbrown 0.15.3",
1916
1970
  "indexmap",
1917
1971
  "libc",
1918
1972
  "memmap2",
@@ -1921,6 +1975,8 @@ dependencies = [
1921
1975
  "rand 0.8.5",
1922
1976
  "raw-cpuid",
1923
1977
  "rayon",
1978
+ "regex",
1979
+ "slotmap",
1924
1980
  "stacker",
1925
1981
  "sysinfo",
1926
1982
  "version_check",
@@ -1947,7 +2003,7 @@ version = "0.2.21"
1947
2003
  source = "registry+https://github.com/rust-lang/crates.io-index"
1948
2004
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1949
2005
  dependencies = [
1950
- "zerocopy 0.8.24",
2006
+ "zerocopy 0.8.25",
1951
2007
  ]
1952
2008
 
1953
2009
  [[package]]
@@ -1961,26 +2017,28 @@ dependencies = [
1961
2017
 
1962
2018
  [[package]]
1963
2019
  name = "proc-macro2"
1964
- version = "1.0.94"
2020
+ version = "1.0.95"
1965
2021
  source = "registry+https://github.com/rust-lang/crates.io-index"
1966
- checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2022
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1967
2023
  dependencies = [
1968
2024
  "unicode-ident",
1969
2025
  ]
1970
2026
 
1971
2027
  [[package]]
1972
2028
  name = "psm"
1973
- version = "0.1.25"
2029
+ version = "0.1.26"
1974
2030
  source = "registry+https://github.com/rust-lang/crates.io-index"
1975
- checksum = "f58e5423e24c18cc840e1c98370b3993c6649cd1678b4d24318bcf0a083cbe88"
2031
+ checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
1976
2032
  dependencies = [
1977
2033
  "cc",
1978
2034
  ]
1979
2035
 
1980
2036
  [[package]]
1981
2037
  name = "py_maplib"
1982
- version = "0.15.11"
2038
+ version = "0.15.20"
1983
2039
  dependencies = [
2040
+ "chrono",
2041
+ "cimxml",
1984
2042
  "jemallocator",
1985
2043
  "log",
1986
2044
  "maplib",
@@ -1997,6 +2055,7 @@ dependencies = [
1997
2055
  "templates",
1998
2056
  "thiserror",
1999
2057
  "triplestore",
2058
+ "uuid",
2000
2059
  ]
2001
2060
 
2002
2061
  [[package]]
@@ -2012,13 +2071,13 @@ dependencies = [
2012
2071
 
2013
2072
  [[package]]
2014
2073
  name = "pyo3"
2015
- version = "0.22.6"
2074
+ version = "0.24.2"
2016
2075
  source = "registry+https://github.com/rust-lang/crates.io-index"
2017
- checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2076
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2018
2077
  dependencies = [
2019
2078
  "cfg-if",
2020
2079
  "chrono",
2021
- "chrono-tz 0.9.0",
2080
+ "chrono-tz",
2022
2081
  "indoc",
2023
2082
  "libc",
2024
2083
  "memoffset",
@@ -2032,9 +2091,9 @@ dependencies = [
2032
2091
 
2033
2092
  [[package]]
2034
2093
  name = "pyo3-build-config"
2035
- version = "0.22.6"
2094
+ version = "0.24.2"
2036
2095
  source = "registry+https://github.com/rust-lang/crates.io-index"
2037
- checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2096
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
2038
2097
  dependencies = [
2039
2098
  "once_cell",
2040
2099
  "target-lexicon",
@@ -2042,9 +2101,9 @@ dependencies = [
2042
2101
 
2043
2102
  [[package]]
2044
2103
  name = "pyo3-ffi"
2045
- version = "0.22.6"
2104
+ version = "0.24.2"
2046
2105
  source = "registry+https://github.com/rust-lang/crates.io-index"
2047
- checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2106
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
2048
2107
  dependencies = [
2049
2108
  "libc",
2050
2109
  "pyo3-build-config",
@@ -2052,9 +2111,9 @@ dependencies = [
2052
2111
 
2053
2112
  [[package]]
2054
2113
  name = "pyo3-log"
2055
- version = "0.11.0"
2114
+ version = "0.12.3"
2056
2115
  source = "registry+https://github.com/rust-lang/crates.io-index"
2057
- checksum = "3ac84e6eec1159bc2a575c9ae6723baa6ee9d45873e9bebad1e3ad7e8d28a443"
2116
+ checksum = "7079e412e909af5d6be7c04a7f29f6a2837a080410e1c529c9dee2c367383db4"
2058
2117
  dependencies = [
2059
2118
  "arc-swap",
2060
2119
  "log",
@@ -2063,9 +2122,9 @@ dependencies = [
2063
2122
 
2064
2123
  [[package]]
2065
2124
  name = "pyo3-macros"
2066
- version = "0.22.6"
2125
+ version = "0.24.2"
2067
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2068
- checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2127
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
2069
2128
  dependencies = [
2070
2129
  "proc-macro2",
2071
2130
  "pyo3-macros-backend",
@@ -2075,9 +2134,9 @@ dependencies = [
2075
2134
 
2076
2135
  [[package]]
2077
2136
  name = "pyo3-macros-backend"
2078
- version = "0.22.6"
2137
+ version = "0.24.2"
2079
2138
  source = "registry+https://github.com/rust-lang/crates.io-index"
2080
- checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2139
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2081
2140
  dependencies = [
2082
2141
  "heck",
2083
2142
  "proc-macro2",
@@ -2103,9 +2162,9 @@ dependencies = [
2103
2162
 
2104
2163
  [[package]]
2105
2164
  name = "quick-xml"
2106
- version = "0.37.3"
2165
+ version = "0.37.5"
2107
2166
  source = "registry+https://github.com/rust-lang/crates.io-index"
2108
- checksum = "bf763ab1c7a3aa408be466efc86efe35ed1bd3dd74173ed39d6b0d0a6f0ba148"
2167
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2109
2168
  dependencies = [
2110
2169
  "memchr",
2111
2170
  ]
@@ -2138,13 +2197,12 @@ dependencies = [
2138
2197
 
2139
2198
  [[package]]
2140
2199
  name = "rand"
2141
- version = "0.9.0"
2200
+ version = "0.9.1"
2142
2201
  source = "registry+https://github.com/rust-lang/crates.io-index"
2143
- checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2202
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2144
2203
  dependencies = [
2145
2204
  "rand_chacha 0.9.0",
2146
2205
  "rand_core 0.9.3",
2147
- "zerocopy 0.8.24",
2148
2206
  ]
2149
2207
 
2150
2208
  [[package]]
@@ -2173,7 +2231,7 @@ version = "0.6.4"
2173
2231
  source = "registry+https://github.com/rust-lang/crates.io-index"
2174
2232
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2175
2233
  dependencies = [
2176
- "getrandom 0.2.15",
2234
+ "getrandom 0.2.16",
2177
2235
  ]
2178
2236
 
2179
2237
  [[package]]
@@ -2252,9 +2310,9 @@ dependencies = [
2252
2310
 
2253
2311
  [[package]]
2254
2312
  name = "redox_syscall"
2255
- version = "0.5.10"
2313
+ version = "0.5.12"
2256
2314
  source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
2315
+ checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
2258
2316
  dependencies = [
2259
2317
  "bitflags",
2260
2318
  ]
@@ -2328,7 +2386,7 @@ name = "representation"
2328
2386
  version = "0.6.10"
2329
2387
  dependencies = [
2330
2388
  "chrono",
2331
- "chrono-tz 0.10.3",
2389
+ "chrono-tz",
2332
2390
  "log",
2333
2391
  "oxrdf",
2334
2392
  "oxsdatatypes",
@@ -2338,6 +2396,7 @@ dependencies = [
2338
2396
  "serde",
2339
2397
  "spargebra",
2340
2398
  "thiserror",
2399
+ "utils",
2341
2400
  "uuid",
2342
2401
  ]
2343
2402
 
@@ -2422,9 +2481,9 @@ dependencies = [
2422
2481
 
2423
2482
  [[package]]
2424
2483
  name = "scc"
2425
- version = "2.3.3"
2484
+ version = "2.3.4"
2426
2485
  source = "registry+https://github.com/rust-lang/crates.io-index"
2427
- checksum = "ea091f6cac2595aa38993f04f4ee692ed43757035c36e67c180b6828356385b1"
2486
+ checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
2428
2487
  dependencies = [
2429
2488
  "sdd",
2430
2489
  ]
@@ -2510,6 +2569,7 @@ version = "0.1.0"
2510
2569
  dependencies = [
2511
2570
  "oxrdf",
2512
2571
  "polars",
2572
+ "pyo3",
2513
2573
  "representation",
2514
2574
  "thiserror",
2515
2575
  "triplestore",
@@ -2533,9 +2593,9 @@ dependencies = [
2533
2593
 
2534
2594
  [[package]]
2535
2595
  name = "signal-hook-registry"
2536
- version = "1.4.2"
2596
+ version = "1.4.5"
2537
2597
  source = "registry+https://github.com/rust-lang/crates.io-index"
2538
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2598
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2539
2599
  dependencies = [
2540
2600
  "libc",
2541
2601
  ]
@@ -2547,7 +2607,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
2607
  checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
2548
2608
  dependencies = [
2549
2609
  "ahash",
2550
- "getrandom 0.2.15",
2610
+ "getrandom 0.2.16",
2551
2611
  "halfbrown",
2552
2612
  "once_cell",
2553
2613
  "ref-cast",
@@ -2589,9 +2649,9 @@ dependencies = [
2589
2649
 
2590
2650
  [[package]]
2591
2651
  name = "smallvec"
2592
- version = "1.14.0"
2652
+ version = "1.15.0"
2593
2653
  source = "registry+https://github.com/rust-lang/crates.io-index"
2594
- checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
2654
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2595
2655
 
2596
2656
  [[package]]
2597
2657
  name = "snap"
@@ -2601,9 +2661,9 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2601
2661
 
2602
2662
  [[package]]
2603
2663
  name = "socket2"
2604
- version = "0.5.8"
2664
+ version = "0.5.9"
2605
2665
  source = "registry+https://github.com/rust-lang/crates.io-index"
2606
- checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2666
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2607
2667
  dependencies = [
2608
2668
  "libc",
2609
2669
  "windows-sys 0.52.0",
@@ -2662,9 +2722,9 @@ dependencies = [
2662
2722
 
2663
2723
  [[package]]
2664
2724
  name = "stacker"
2665
- version = "0.1.20"
2725
+ version = "0.1.21"
2666
2726
  source = "registry+https://github.com/rust-lang/crates.io-index"
2667
- checksum = "601f9201feb9b09c00266478bf459952b9ef9a6b94edb2f21eba14ab681a60a9"
2727
+ checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
2668
2728
  dependencies = [
2669
2729
  "cc",
2670
2730
  "cfg-if",
@@ -2715,9 +2775,9 @@ dependencies = [
2715
2775
 
2716
2776
  [[package]]
2717
2777
  name = "syn"
2718
- version = "2.0.100"
2778
+ version = "2.0.101"
2719
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2720
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2780
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2721
2781
  dependencies = [
2722
2782
  "proc-macro2",
2723
2783
  "quote",
@@ -2739,9 +2799,9 @@ dependencies = [
2739
2799
 
2740
2800
  [[package]]
2741
2801
  name = "target-lexicon"
2742
- version = "0.12.16"
2802
+ version = "0.13.2"
2743
2803
  source = "registry+https://github.com/rust-lang/crates.io-index"
2744
- checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2804
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
2745
2805
 
2746
2806
  [[package]]
2747
2807
  name = "templates"
@@ -2794,9 +2854,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2794
2854
 
2795
2855
  [[package]]
2796
2856
  name = "tokio"
2797
- version = "1.44.1"
2857
+ version = "1.45.0"
2798
2858
  source = "registry+https://github.com/rust-lang/crates.io-index"
2799
- checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
2859
+ checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
2800
2860
  dependencies = [
2801
2861
  "backtrace",
2802
2862
  "bytes",
@@ -2809,9 +2869,9 @@ dependencies = [
2809
2869
 
2810
2870
  [[package]]
2811
2871
  name = "tokio-util"
2812
- version = "0.7.14"
2872
+ version = "0.7.15"
2813
2873
  source = "registry+https://github.com/rust-lang/crates.io-index"
2814
- checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
2874
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2815
2875
  dependencies = [
2816
2876
  "bytes",
2817
2877
  "futures-core",
@@ -2822,15 +2882,15 @@ dependencies = [
2822
2882
 
2823
2883
  [[package]]
2824
2884
  name = "toml_datetime"
2825
- version = "0.6.8"
2885
+ version = "0.6.9"
2826
2886
  source = "registry+https://github.com/rust-lang/crates.io-index"
2827
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
2887
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
2828
2888
 
2829
2889
  [[package]]
2830
2890
  name = "toml_edit"
2831
- version = "0.22.24"
2891
+ version = "0.22.26"
2832
2892
  source = "registry+https://github.com/rust-lang/crates.io-index"
2833
- checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
2893
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
2834
2894
  dependencies = [
2835
2895
  "indexmap",
2836
2896
  "toml_datetime",
@@ -2851,6 +2911,7 @@ dependencies = [
2851
2911
  "oxttl",
2852
2912
  "polars",
2853
2913
  "polars-core",
2914
+ "pyo3",
2854
2915
  "query_processing",
2855
2916
  "rayon",
2856
2917
  "representation",
@@ -2859,6 +2920,7 @@ dependencies = [
2859
2920
  "spargebra",
2860
2921
  "sprs",
2861
2922
  "thiserror",
2923
+ "utils",
2862
2924
  "uuid",
2863
2925
  ]
2864
2926
 
@@ -2916,6 +2978,16 @@ version = "0.2.2"
2916
2978
  source = "registry+https://github.com/rust-lang/crates.io-index"
2917
2979
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2918
2980
 
2981
+ [[package]]
2982
+ name = "utils"
2983
+ version = "0.1.0"
2984
+ dependencies = [
2985
+ "polars",
2986
+ "polars-core",
2987
+ "pyo3",
2988
+ "thiserror",
2989
+ ]
2990
+
2919
2991
  [[package]]
2920
2992
  name = "uuid"
2921
2993
  version = "1.16.0"
@@ -2923,7 +2995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
2995
  checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
2924
2996
  dependencies = [
2925
2997
  "getrandom 0.3.2",
2926
- "rand 0.9.0",
2998
+ "rand 0.9.1",
2927
2999
  ]
2928
3000
 
2929
3001
  [[package]]
@@ -3070,23 +3142,27 @@ dependencies = [
3070
3142
 
3071
3143
  [[package]]
3072
3144
  name = "windows-core"
3073
- version = "0.52.0"
3145
+ version = "0.57.0"
3074
3146
  source = "registry+https://github.com/rust-lang/crates.io-index"
3075
- checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3147
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3076
3148
  dependencies = [
3149
+ "windows-implement 0.57.0",
3150
+ "windows-interface 0.57.0",
3151
+ "windows-result 0.1.2",
3077
3152
  "windows-targets",
3078
3153
  ]
3079
3154
 
3080
3155
  [[package]]
3081
3156
  name = "windows-core"
3082
- version = "0.57.0"
3157
+ version = "0.61.0"
3083
3158
  source = "registry+https://github.com/rust-lang/crates.io-index"
3084
- checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3159
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3085
3160
  dependencies = [
3086
- "windows-implement",
3087
- "windows-interface",
3088
- "windows-result",
3089
- "windows-targets",
3161
+ "windows-implement 0.60.0",
3162
+ "windows-interface 0.59.1",
3163
+ "windows-link",
3164
+ "windows-result 0.3.2",
3165
+ "windows-strings",
3090
3166
  ]
3091
3167
 
3092
3168
  [[package]]
@@ -3100,6 +3176,17 @@ dependencies = [
3100
3176
  "syn",
3101
3177
  ]
3102
3178
 
3179
+ [[package]]
3180
+ name = "windows-implement"
3181
+ version = "0.60.0"
3182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3183
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3184
+ dependencies = [
3185
+ "proc-macro2",
3186
+ "quote",
3187
+ "syn",
3188
+ ]
3189
+
3103
3190
  [[package]]
3104
3191
  name = "windows-interface"
3105
3192
  version = "0.57.0"
@@ -3111,6 +3198,17 @@ dependencies = [
3111
3198
  "syn",
3112
3199
  ]
3113
3200
 
3201
+ [[package]]
3202
+ name = "windows-interface"
3203
+ version = "0.59.1"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3206
+ dependencies = [
3207
+ "proc-macro2",
3208
+ "quote",
3209
+ "syn",
3210
+ ]
3211
+
3114
3212
  [[package]]
3115
3213
  name = "windows-link"
3116
3214
  version = "0.1.1"
@@ -3126,6 +3224,24 @@ dependencies = [
3126
3224
  "windows-targets",
3127
3225
  ]
3128
3226
 
3227
+ [[package]]
3228
+ name = "windows-result"
3229
+ version = "0.3.2"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3232
+ dependencies = [
3233
+ "windows-link",
3234
+ ]
3235
+
3236
+ [[package]]
3237
+ name = "windows-strings"
3238
+ version = "0.4.0"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
3241
+ dependencies = [
3242
+ "windows-link",
3243
+ ]
3244
+
3129
3245
  [[package]]
3130
3246
  name = "windows-sys"
3131
3247
  version = "0.52.0"
@@ -3210,9 +3326,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3210
3326
 
3211
3327
  [[package]]
3212
3328
  name = "winnow"
3213
- version = "0.7.4"
3329
+ version = "0.7.9"
3214
3330
  source = "registry+https://github.com/rust-lang/crates.io-index"
3215
- checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
3331
+ checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3"
3216
3332
  dependencies = [
3217
3333
  "memchr",
3218
3334
  ]
@@ -3243,11 +3359,11 @@ dependencies = [
3243
3359
 
3244
3360
  [[package]]
3245
3361
  name = "zerocopy"
3246
- version = "0.8.24"
3362
+ version = "0.8.25"
3247
3363
  source = "registry+https://github.com/rust-lang/crates.io-index"
3248
- checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3364
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
3249
3365
  dependencies = [
3250
- "zerocopy-derive 0.8.24",
3366
+ "zerocopy-derive 0.8.25",
3251
3367
  ]
3252
3368
 
3253
3369
  [[package]]
@@ -3263,9 +3379,9 @@ dependencies = [
3263
3379
 
3264
3380
  [[package]]
3265
3381
  name = "zerocopy-derive"
3266
- version = "0.8.24"
3382
+ version = "0.8.25"
3267
3383
  source = "registry+https://github.com/rust-lang/crates.io-index"
3268
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3384
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
3269
3385
  dependencies = [
3270
3386
  "proc-macro2",
3271
3387
  "quote",
@@ -3274,9 +3390,9 @@ dependencies = [
3274
3390
 
3275
3391
  [[package]]
3276
3392
  name = "zlib-rs"
3277
- version = "0.4.2"
3393
+ version = "0.5.0"
3278
3394
  source = "registry+https://github.com/rust-lang/crates.io-index"
3279
- checksum = "8b20717f0917c908dc63de2e44e97f1e6b126ca58d0e391cee86d504eb8fbd05"
3395
+ checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
3280
3396
 
3281
3397
  [[package]]
3282
3398
  name = "zstd"