maplib 0.15.13__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 (196) hide show
  1. {maplib-0.15.13 → maplib-0.15.20}/Cargo.lock +125 -106
  2. {maplib-0.15.13 → maplib-0.15.20}/Cargo.toml +2 -2
  3. {maplib-0.15.13 → maplib-0.15.20}/PKG-INFO +1 -1
  4. {maplib-0.15.13 → maplib-0.15.20}/lib/cimxml/Cargo.toml +4 -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.13 → maplib-0.15.20}/lib/datalog/Cargo.toml +5 -0
  8. {maplib-0.15.13 → maplib-0.15.20}/lib/datalog/src/inference.rs +4 -0
  9. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/Cargo.toml +6 -0
  10. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/errors.rs +1 -1
  11. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/mapping.rs +31 -9
  12. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/tests/test_stottr.rs +11 -1
  13. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/aggregates.rs +4 -9
  14. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/expressions.rs +153 -65
  15. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/type_constraints.rs +0 -8
  16. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/Cargo.toml +3 -1
  17. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/lib.rs +24 -0
  18. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/python.rs +5 -5
  19. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/solution_mapping.rs +22 -0
  20. {maplib-0.15.13 → maplib-0.15.20}/lib/shacl/Cargo.toml +5 -0
  21. {maplib-0.15.13 → maplib-0.15.20}/lib/shacl/src/lib.rs +4 -0
  22. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/Cargo.toml +6 -0
  23. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/dblf.rs +87 -58
  24. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/query_solutions.rs +12 -5
  25. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/rdfs_inferencing.rs +15 -3
  26. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/errors.rs +2 -0
  27. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_aggregate.rs +1 -2
  28. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +3 -3
  29. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +0 -1
  30. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql.rs +55 -11
  31. maplib-0.15.20/lib/utils/Cargo.toml +16 -0
  32. maplib-0.15.20/lib/utils/src/lib.rs +1 -0
  33. maplib-0.15.20/lib/utils/src/polars.rs +55 -0
  34. {maplib-0.15.13/py_maplib → maplib-0.15.20}/maplib/__init__.pyi +41 -0
  35. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/Cargo.toml +8 -5
  36. {maplib-0.15.13 → maplib-0.15.20/py_maplib}/maplib/__init__.pyi +41 -0
  37. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/src/lib.rs +108 -22
  38. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_multi_expressions.py +107 -1
  39. maplib-0.15.13/lib/cimxml/src/lib.rs +0 -18
  40. {maplib-0.15.13 → maplib-0.15.20}/LICENSE +0 -0
  41. {maplib-0.15.13 → maplib-0.15.20}/README.md +0 -0
  42. {maplib-0.15.13 → maplib-0.15.20}/lib/datalog/src/ast.rs +0 -0
  43. {maplib-0.15.13 → maplib-0.15.20}/lib/datalog/src/lib.rs +0 -0
  44. {maplib-0.15.13 → maplib-0.15.20}/lib/datalog/src/parser.rs +0 -0
  45. {maplib-0.15.13 → maplib-0.15.20}/lib/file_io/Cargo.toml +0 -0
  46. {maplib-0.15.13 → maplib-0.15.20}/lib/file_io/src/lib.rs +0 -0
  47. {maplib-0.15.13 → maplib-0.15.20}/lib/fts/Cargo.toml +0 -0
  48. {maplib-0.15.13 → maplib-0.15.20}/lib/fts/src/lib.rs +0 -0
  49. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/lib.rs +0 -0
  50. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/mapping/constant_terms.rs +0 -0
  51. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/mapping/default.rs +0 -0
  52. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/mapping/errors.rs +0 -0
  53. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/mapping/expansion/validation.rs +0 -0
  54. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/src/mapping/expansion.rs +0 -0
  55. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
  56. {maplib-0.15.13 → maplib-0.15.20}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
  57. {maplib-0.15.13 → maplib-0.15.20}/lib/pydf_io/Cargo.toml +0 -0
  58. {maplib-0.15.13 → maplib-0.15.20}/lib/pydf_io/LICENSE +0 -0
  59. {maplib-0.15.13 → maplib-0.15.20}/lib/pydf_io/README.md +0 -0
  60. {maplib-0.15.13 → maplib-0.15.20}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  61. {maplib-0.15.13 → maplib-0.15.20}/lib/pydf_io/src/lib.rs +0 -0
  62. {maplib-0.15.13 → maplib-0.15.20}/lib/pydf_io/src/to_python.rs +0 -0
  63. {maplib-0.15.13 → maplib-0.15.20}/lib/pydf_io/src/to_rust.rs +0 -0
  64. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/Cargo.toml +0 -0
  65. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/LICENSE +0 -0
  66. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/README.md +0 -0
  67. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/constants.rs +0 -0
  68. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/errors.rs +0 -0
  69. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/exists_helper.rs +0 -0
  70. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/find_query_variables.rs +0 -0
  71. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/graph_patterns.rs +0 -0
  72. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/lib.rs +0 -0
  73. {maplib-0.15.13 → maplib-0.15.20}/lib/query_processing/src/pushdowns.rs +0 -0
  74. {maplib-0.15.13 → maplib-0.15.20}/lib/report_mapping/Cargo.toml +0 -0
  75. {maplib-0.15.13 → maplib-0.15.20}/lib/report_mapping/src/lib.rs +0 -0
  76. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/LICENSE +0 -0
  77. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/README.md +0 -0
  78. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/errors.rs +0 -0
  79. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/formatting.rs +0 -0
  80. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/literals.rs +0 -0
  81. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/multitype.rs +0 -0
  82. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/polars_to_rdf.rs +0 -0
  83. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/query_context.rs +0 -0
  84. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/rdf_to_polars.rs +0 -0
  85. {maplib-0.15.13 → maplib-0.15.20}/lib/representation/src/subtypes.rs +0 -0
  86. {maplib-0.15.13 → maplib-0.15.20}/lib/shacl/src/errors.rs +0 -0
  87. {maplib-0.15.13 → maplib-0.15.20}/lib/shacl/src/storage.rs +0 -0
  88. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/Cargo.toml +0 -0
  89. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/LICENSE +0 -0
  90. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/README.md +0 -0
  91. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/algebra.rs +0 -0
  92. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/lib.rs +0 -0
  93. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/parser.rs +0 -0
  94. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/query.rs +0 -0
  95. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/query_context.rs +0 -0
  96. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/remove_sugar.rs +0 -0
  97. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/term.rs +0 -0
  98. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/treehouse.rs +0 -0
  99. {maplib-0.15.13 → maplib-0.15.20}/lib/spargebra/src/update.rs +0 -0
  100. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/Cargo.toml +0 -0
  101. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/ast.rs +0 -0
  102. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/compatible.rs +0 -0
  103. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/constants.rs +0 -0
  104. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/dataset/errors.rs +0 -0
  105. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/dataset.rs +0 -0
  106. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/document.rs +0 -0
  107. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/lib.rs +0 -0
  108. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/parsing/errors.rs +0 -0
  109. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/parsing/nom_parsing.rs +0 -0
  110. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/parsing/parser_test.rs +0 -0
  111. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/parsing/parsing_ast.rs +0 -0
  112. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/parsing.rs +0 -0
  113. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/python.rs +0 -0
  114. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/resolver.rs +0 -0
  115. {maplib-0.15.13 → maplib-0.15.20}/lib/templates/src/subtypes_ext.rs +0 -0
  116. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/errors.rs +0 -0
  117. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/io_funcs.rs +0 -0
  118. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/lib.rs +0 -0
  119. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/native_parquet_write.rs +0 -0
  120. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_expressions.rs +0 -0
  121. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +0 -0
  122. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +0 -0
  123. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +0 -0
  124. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +0 -0
  125. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +0 -0
  126. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +0 -0
  127. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +0 -0
  128. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +0 -0
  129. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +0 -0
  130. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +0 -0
  131. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  132. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +0 -0
  133. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +0 -0
  134. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +0 -0
  135. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/lazy_order.rs +0 -0
  136. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
  137. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/storage.rs +0 -0
  138. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/triples_read.rs +0 -0
  139. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
  140. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/triples_write/serializers.rs +0 -0
  141. {maplib-0.15.13 → maplib-0.15.20}/lib/triplestore/src/triples_write.rs +0 -0
  142. {maplib-0.15.13 → maplib-0.15.20}/maplib/__init__.py +0 -0
  143. {maplib-0.15.13 → maplib-0.15.20}/maplib/add_triples.py +0 -0
  144. {maplib-0.15.13 → maplib-0.15.20}/maplib/py.typed +0 -0
  145. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/LICENSE +0 -0
  146. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/README.md +0 -0
  147. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/maplib/.gitignore +0 -0
  148. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/maplib/__init__.py +0 -0
  149. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/maplib/add_triples.py +0 -0
  150. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/maplib/py.typed +0 -0
  151. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/src/error.rs +0 -0
  152. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/src/shacl.rs +0 -0
  153. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/.gitignore +0 -0
  154. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/__init__.py +0 -0
  155. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/out.ttl +0 -0
  156. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/requirements.txt +0 -0
  157. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_basics.py +0 -0
  158. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
  159. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_data_validation.py +0 -0
  160. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_exceptions.py +0 -0
  161. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_integration.py +0 -0
  162. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_pizza_example.py +0 -0
  163. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
  164. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_rdf_parser.py +0 -0
  165. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_read_write.py +0 -0
  166. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/test_validate_iris.py +0 -0
  167. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  168. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  169. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  170. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  171. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  172. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/larger_query.csv +0 -0
  173. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_concat.csv +0 -0
  174. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  175. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  176. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  177. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  178. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  179. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  180. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  181. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  182. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  183. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
  184. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  185. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  186. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  187. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  188. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  189. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
  190. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
  191. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  192. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  193. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  194. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/simple_query.csv +0 -0
  195. {maplib-0.15.13 → maplib-0.15.20}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
  196. {maplib-0.15.13 → 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",
@@ -269,9 +269,9 @@ dependencies = [
269
269
 
270
270
  [[package]]
271
271
  name = "brotli-decompressor"
272
- version = "4.0.2"
272
+ version = "4.0.3"
273
273
  source = "registry+https://github.com/rust-lang/crates.io-index"
274
- checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
274
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
275
275
  dependencies = [
276
276
  "alloc-no-stdlib",
277
277
  "alloc-stdlib",
@@ -285,9 +285,9 @@ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
285
285
 
286
286
  [[package]]
287
287
  name = "bytemuck"
288
- version = "1.22.0"
288
+ version = "1.23.0"
289
289
  source = "registry+https://github.com/rust-lang/crates.io-index"
290
- checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
290
+ checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
291
291
  dependencies = [
292
292
  "bytemuck_derive",
293
293
  ]
@@ -323,9 +323,9 @@ dependencies = [
323
323
 
324
324
  [[package]]
325
325
  name = "cc"
326
- version = "1.2.19"
326
+ version = "1.2.21"
327
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
328
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
328
+ checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
329
329
  dependencies = [
330
330
  "jobserver",
331
331
  "libc",
@@ -340,9 +340,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
340
340
 
341
341
  [[package]]
342
342
  name = "chrono"
343
- version = "0.4.40"
343
+ version = "0.4.41"
344
344
  source = "registry+https://github.com/rust-lang/crates.io-index"
345
- checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
345
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
346
346
  dependencies = [
347
347
  "android-tzdata",
348
348
  "iana-time-zone",
@@ -378,6 +378,7 @@ name = "cimxml"
378
378
  version = "0.1.0"
379
379
  dependencies = [
380
380
  "oxrdf",
381
+ "pyo3",
381
382
  "thiserror",
382
383
  "triplestore",
383
384
  ]
@@ -508,6 +509,7 @@ name = "datalog"
508
509
  version = "0.1.0"
509
510
  dependencies = [
510
511
  "oxrdf",
512
+ "pyo3",
511
513
  "representation",
512
514
  "thiserror",
513
515
  "triplestore",
@@ -578,9 +580,9 @@ dependencies = [
578
580
 
579
581
  [[package]]
580
582
  name = "ethnum"
581
- version = "1.5.0"
583
+ version = "1.5.1"
582
584
  source = "registry+https://github.com/rust-lang/crates.io-index"
583
- checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
585
+ checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
584
586
 
585
587
  [[package]]
586
588
  name = "event-listener"
@@ -777,9 +779,9 @@ dependencies = [
777
779
 
778
780
  [[package]]
779
781
  name = "getrandom"
780
- version = "0.2.15"
782
+ version = "0.2.16"
781
783
  source = "registry+https://github.com/rust-lang/crates.io-index"
782
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
784
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
783
785
  dependencies = [
784
786
  "cfg-if",
785
787
  "js-sys",
@@ -836,9 +838,9 @@ dependencies = [
836
838
 
837
839
  [[package]]
838
840
  name = "hashbrown"
839
- version = "0.15.2"
841
+ version = "0.15.3"
840
842
  source = "registry+https://github.com/rust-lang/crates.io-index"
841
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
843
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
842
844
  dependencies = [
843
845
  "allocator-api2",
844
846
  "equivalent",
@@ -905,7 +907,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
905
907
  checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
906
908
  dependencies = [
907
909
  "equivalent",
908
- "hashbrown 0.15.2",
910
+ "hashbrown 0.15.3",
909
911
  "serde",
910
912
  ]
911
913
 
@@ -949,9 +951,9 @@ dependencies = [
949
951
 
950
952
  [[package]]
951
953
  name = "jiff"
952
- version = "0.2.6"
954
+ version = "0.2.13"
953
955
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
- checksum = "1f33145a5cbea837164362c7bd596106eb7c5198f97d1ba6f6ebb3223952e488"
956
+ checksum = "f02000660d30638906021176af16b17498bd0d12813dbfe7b276d8bc7f3c0806"
955
957
  dependencies = [
956
958
  "jiff-static",
957
959
  "log",
@@ -962,9 +964,9 @@ dependencies = [
962
964
 
963
965
  [[package]]
964
966
  name = "jiff-static"
965
- version = "0.2.6"
967
+ version = "0.2.13"
966
968
  source = "registry+https://github.com/rust-lang/crates.io-index"
967
- checksum = "43ce13c40ec6956157a3635d97a1ee2df323b263f09ea14165131289cb0f5c19"
969
+ checksum = "f3c30758ddd7188629c6713fc45d1188af4f44c90582311d0c8d8c9907f60c48"
968
970
  dependencies = [
969
971
  "proc-macro2",
970
972
  "quote",
@@ -999,15 +1001,15 @@ checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
999
1001
 
1000
1002
  [[package]]
1001
1003
  name = "libc"
1002
- version = "0.2.171"
1004
+ version = "0.2.172"
1003
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
1004
- checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1006
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1005
1007
 
1006
1008
  [[package]]
1007
1009
  name = "libm"
1008
- version = "0.2.11"
1010
+ version = "0.2.14"
1009
1011
  source = "registry+https://github.com/rust-lang/crates.io-index"
1010
- checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1012
+ checksum = "a25169bd5913a4b437588a7e3d127cd6e90127b60e0ffbd834a38f1599e016b8"
1011
1013
 
1012
1014
  [[package]]
1013
1015
  name = "libmimalloc-sys"
@@ -1083,6 +1085,7 @@ dependencies = [
1083
1085
  "oxrdf",
1084
1086
  "oxrdfio",
1085
1087
  "polars",
1088
+ "pyo3",
1086
1089
  "rayon",
1087
1090
  "representation",
1088
1091
  "rstest",
@@ -1483,9 +1486,9 @@ dependencies = [
1483
1486
  [[package]]
1484
1487
  name = "polars"
1485
1488
  version = "0.46.0"
1486
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1489
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1487
1490
  dependencies = [
1488
- "getrandom 0.2.15",
1491
+ "getrandom 0.2.16",
1489
1492
  "polars-arrow",
1490
1493
  "polars-core",
1491
1494
  "polars-error",
@@ -1503,7 +1506,7 @@ dependencies = [
1503
1506
  [[package]]
1504
1507
  name = "polars-arrow"
1505
1508
  version = "0.46.0"
1506
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1509
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1507
1510
  dependencies = [
1508
1511
  "atoi_simd",
1509
1512
  "bytemuck",
@@ -1512,8 +1515,8 @@ dependencies = [
1512
1515
  "dyn-clone",
1513
1516
  "either",
1514
1517
  "ethnum",
1515
- "getrandom 0.2.15",
1516
- "hashbrown 0.15.2",
1518
+ "getrandom 0.2.16",
1519
+ "hashbrown 0.15.3",
1517
1520
  "itoa",
1518
1521
  "lz4",
1519
1522
  "num-traits",
@@ -1543,14 +1546,14 @@ dependencies = [
1543
1546
  [[package]]
1544
1547
  name = "polars-compute"
1545
1548
  version = "0.46.0"
1546
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1549
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1547
1550
  dependencies = [
1548
1551
  "atoi_simd",
1549
1552
  "bytemuck",
1550
1553
  "chrono",
1551
1554
  "either",
1552
1555
  "fast-float2",
1553
- "hashbrown 0.15.2",
1556
+ "hashbrown 0.15.3",
1554
1557
  "itoa",
1555
1558
  "num-traits",
1556
1559
  "polars-arrow",
@@ -1566,7 +1569,7 @@ dependencies = [
1566
1569
  [[package]]
1567
1570
  name = "polars-core"
1568
1571
  version = "0.46.0"
1569
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1572
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1570
1573
  dependencies = [
1571
1574
  "bitflags",
1572
1575
  "bytemuck",
@@ -1575,7 +1578,7 @@ dependencies = [
1575
1578
  "comfy-table",
1576
1579
  "either",
1577
1580
  "hashbrown 0.14.5",
1578
- "hashbrown 0.15.2",
1581
+ "hashbrown 0.15.3",
1579
1582
  "indexmap",
1580
1583
  "itoa",
1581
1584
  "num-traits",
@@ -1597,7 +1600,7 @@ dependencies = [
1597
1600
  [[package]]
1598
1601
  name = "polars-error"
1599
1602
  version = "0.46.0"
1600
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1603
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1601
1604
  dependencies = [
1602
1605
  "parking_lot",
1603
1606
  "polars-arrow-format",
@@ -1609,10 +1612,10 @@ dependencies = [
1609
1612
  [[package]]
1610
1613
  name = "polars-expr"
1611
1614
  version = "0.46.0"
1612
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1615
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1613
1616
  dependencies = [
1614
1617
  "bitflags",
1615
- "hashbrown 0.15.2",
1618
+ "hashbrown 0.15.3",
1616
1619
  "num-traits",
1617
1620
  "polars-arrow",
1618
1621
  "polars-compute",
@@ -1631,7 +1634,7 @@ dependencies = [
1631
1634
  [[package]]
1632
1635
  name = "polars-io"
1633
1636
  version = "0.46.0"
1634
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1637
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1635
1638
  dependencies = [
1636
1639
  "async-trait",
1637
1640
  "atoi_simd",
@@ -1641,7 +1644,7 @@ dependencies = [
1641
1644
  "fast-float2",
1642
1645
  "futures",
1643
1646
  "glob",
1644
- "hashbrown 0.15.2",
1647
+ "hashbrown 0.15.3",
1645
1648
  "home",
1646
1649
  "itoa",
1647
1650
  "memchr",
@@ -1667,12 +1670,12 @@ dependencies = [
1667
1670
  [[package]]
1668
1671
  name = "polars-json"
1669
1672
  version = "0.46.0"
1670
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1673
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1671
1674
  dependencies = [
1672
1675
  "chrono",
1673
1676
  "chrono-tz",
1674
1677
  "fallible-streaming-iterator",
1675
- "hashbrown 0.15.2",
1678
+ "hashbrown 0.15.3",
1676
1679
  "indexmap",
1677
1680
  "itoa",
1678
1681
  "num-traits",
@@ -1688,7 +1691,7 @@ dependencies = [
1688
1691
  [[package]]
1689
1692
  name = "polars-lazy"
1690
1693
  version = "0.46.0"
1691
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1694
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1692
1695
  dependencies = [
1693
1696
  "bitflags",
1694
1697
  "chrono",
@@ -1713,7 +1716,7 @@ dependencies = [
1713
1716
  [[package]]
1714
1717
  name = "polars-mem-engine"
1715
1718
  version = "0.46.0"
1716
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1719
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1717
1720
  dependencies = [
1718
1721
  "memmap2",
1719
1722
  "polars-arrow",
@@ -1732,7 +1735,7 @@ dependencies = [
1732
1735
  [[package]]
1733
1736
  name = "polars-ops"
1734
1737
  version = "0.46.0"
1735
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1738
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1736
1739
  dependencies = [
1737
1740
  "argminmax",
1738
1741
  "base64",
@@ -1740,7 +1743,7 @@ dependencies = [
1740
1743
  "chrono",
1741
1744
  "chrono-tz",
1742
1745
  "either",
1743
- "hashbrown 0.15.2",
1746
+ "hashbrown 0.15.3",
1744
1747
  "hex",
1745
1748
  "indexmap",
1746
1749
  "libm",
@@ -1764,7 +1767,7 @@ dependencies = [
1764
1767
  [[package]]
1765
1768
  name = "polars-parquet"
1766
1769
  version = "0.46.0"
1767
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1770
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1768
1771
  dependencies = [
1769
1772
  "async-stream",
1770
1773
  "base64",
@@ -1773,7 +1776,7 @@ dependencies = [
1773
1776
  "ethnum",
1774
1777
  "flate2",
1775
1778
  "futures",
1776
- "hashbrown 0.15.2",
1779
+ "hashbrown 0.15.3",
1777
1780
  "lz4",
1778
1781
  "num-traits",
1779
1782
  "polars-arrow",
@@ -1800,13 +1803,13 @@ dependencies = [
1800
1803
  [[package]]
1801
1804
  name = "polars-pipe"
1802
1805
  version = "0.46.0"
1803
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1806
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1804
1807
  dependencies = [
1805
1808
  "crossbeam-channel",
1806
1809
  "crossbeam-queue",
1807
1810
  "enum_dispatch",
1808
1811
  "futures",
1809
- "hashbrown 0.15.2",
1812
+ "hashbrown 0.15.3",
1810
1813
  "num-traits",
1811
1814
  "polars-arrow",
1812
1815
  "polars-compute",
@@ -1825,7 +1828,7 @@ dependencies = [
1825
1828
  [[package]]
1826
1829
  name = "polars-plan"
1827
1830
  version = "0.46.0"
1828
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1831
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1829
1832
  dependencies = [
1830
1833
  "bitflags",
1831
1834
  "bytemuck",
@@ -1833,7 +1836,7 @@ dependencies = [
1833
1836
  "chrono",
1834
1837
  "chrono-tz",
1835
1838
  "either",
1836
- "hashbrown 0.15.2",
1839
+ "hashbrown 0.15.3",
1837
1840
  "memmap2",
1838
1841
  "num-traits",
1839
1842
  "percent-encoding",
@@ -1855,7 +1858,7 @@ dependencies = [
1855
1858
  [[package]]
1856
1859
  name = "polars-row"
1857
1860
  version = "0.46.0"
1858
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1861
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1859
1862
  dependencies = [
1860
1863
  "bitflags",
1861
1864
  "bytemuck",
@@ -1868,7 +1871,7 @@ dependencies = [
1868
1871
  [[package]]
1869
1872
  name = "polars-schema"
1870
1873
  version = "0.46.0"
1871
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1874
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1872
1875
  dependencies = [
1873
1876
  "indexmap",
1874
1877
  "polars-error",
@@ -1879,7 +1882,7 @@ dependencies = [
1879
1882
  [[package]]
1880
1883
  name = "polars-sql"
1881
1884
  version = "0.46.0"
1882
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1885
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1883
1886
  dependencies = [
1884
1887
  "bitflags",
1885
1888
  "hex",
@@ -1899,7 +1902,7 @@ dependencies = [
1899
1902
  [[package]]
1900
1903
  name = "polars-stream"
1901
1904
  version = "0.46.0"
1902
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1905
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1903
1906
  dependencies = [
1904
1907
  "async-channel",
1905
1908
  "async-trait",
@@ -1935,7 +1938,7 @@ dependencies = [
1935
1938
  [[package]]
1936
1939
  name = "polars-time"
1937
1940
  version = "0.46.0"
1938
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1941
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1939
1942
  dependencies = [
1940
1943
  "atoi_simd",
1941
1944
  "bytemuck",
@@ -1957,13 +1960,13 @@ dependencies = [
1957
1960
  [[package]]
1958
1961
  name = "polars-utils"
1959
1962
  version = "0.46.0"
1960
- source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1963
+ source = "git+https://github.com/pola-rs/polars?rev=978d7ed761369a4ba06fa91669c39ac72f04a559#978d7ed761369a4ba06fa91669c39ac72f04a559"
1961
1964
  dependencies = [
1962
1965
  "bytemuck",
1963
1966
  "bytes",
1964
1967
  "compact_str",
1965
1968
  "foldhash",
1966
- "hashbrown 0.15.2",
1969
+ "hashbrown 0.15.3",
1967
1970
  "indexmap",
1968
1971
  "libc",
1969
1972
  "memmap2",
@@ -2000,7 +2003,7 @@ version = "0.2.21"
2000
2003
  source = "registry+https://github.com/rust-lang/crates.io-index"
2001
2004
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2002
2005
  dependencies = [
2003
- "zerocopy 0.8.24",
2006
+ "zerocopy 0.8.25",
2004
2007
  ]
2005
2008
 
2006
2009
  [[package]]
@@ -2014,26 +2017,28 @@ dependencies = [
2014
2017
 
2015
2018
  [[package]]
2016
2019
  name = "proc-macro2"
2017
- version = "1.0.94"
2020
+ version = "1.0.95"
2018
2021
  source = "registry+https://github.com/rust-lang/crates.io-index"
2019
- checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2022
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2020
2023
  dependencies = [
2021
2024
  "unicode-ident",
2022
2025
  ]
2023
2026
 
2024
2027
  [[package]]
2025
2028
  name = "psm"
2026
- version = "0.1.25"
2029
+ version = "0.1.26"
2027
2030
  source = "registry+https://github.com/rust-lang/crates.io-index"
2028
- checksum = "f58e5423e24c18cc840e1c98370b3993c6649cd1678b4d24318bcf0a083cbe88"
2031
+ checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
2029
2032
  dependencies = [
2030
2033
  "cc",
2031
2034
  ]
2032
2035
 
2033
2036
  [[package]]
2034
2037
  name = "py_maplib"
2035
- version = "0.15.13"
2038
+ version = "0.15.20"
2036
2039
  dependencies = [
2040
+ "chrono",
2041
+ "cimxml",
2037
2042
  "jemallocator",
2038
2043
  "log",
2039
2044
  "maplib",
@@ -2050,6 +2055,7 @@ dependencies = [
2050
2055
  "templates",
2051
2056
  "thiserror",
2052
2057
  "triplestore",
2058
+ "uuid",
2053
2059
  ]
2054
2060
 
2055
2061
  [[package]]
@@ -2065,9 +2071,9 @@ dependencies = [
2065
2071
 
2066
2072
  [[package]]
2067
2073
  name = "pyo3"
2068
- version = "0.24.1"
2074
+ version = "0.24.2"
2069
2075
  source = "registry+https://github.com/rust-lang/crates.io-index"
2070
- checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
2076
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2071
2077
  dependencies = [
2072
2078
  "cfg-if",
2073
2079
  "chrono",
@@ -2085,9 +2091,9 @@ dependencies = [
2085
2091
 
2086
2092
  [[package]]
2087
2093
  name = "pyo3-build-config"
2088
- version = "0.24.1"
2094
+ version = "0.24.2"
2089
2095
  source = "registry+https://github.com/rust-lang/crates.io-index"
2090
- checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
2096
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
2091
2097
  dependencies = [
2092
2098
  "once_cell",
2093
2099
  "target-lexicon",
@@ -2095,9 +2101,9 @@ dependencies = [
2095
2101
 
2096
2102
  [[package]]
2097
2103
  name = "pyo3-ffi"
2098
- version = "0.24.1"
2104
+ version = "0.24.2"
2099
2105
  source = "registry+https://github.com/rust-lang/crates.io-index"
2100
- checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
2106
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
2101
2107
  dependencies = [
2102
2108
  "libc",
2103
2109
  "pyo3-build-config",
@@ -2116,9 +2122,9 @@ dependencies = [
2116
2122
 
2117
2123
  [[package]]
2118
2124
  name = "pyo3-macros"
2119
- version = "0.24.1"
2125
+ version = "0.24.2"
2120
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2121
- checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
2127
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
2122
2128
  dependencies = [
2123
2129
  "proc-macro2",
2124
2130
  "pyo3-macros-backend",
@@ -2128,9 +2134,9 @@ dependencies = [
2128
2134
 
2129
2135
  [[package]]
2130
2136
  name = "pyo3-macros-backend"
2131
- version = "0.24.1"
2137
+ version = "0.24.2"
2132
2138
  source = "registry+https://github.com/rust-lang/crates.io-index"
2133
- checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
2139
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2134
2140
  dependencies = [
2135
2141
  "heck",
2136
2142
  "proc-macro2",
@@ -2156,9 +2162,9 @@ dependencies = [
2156
2162
 
2157
2163
  [[package]]
2158
2164
  name = "quick-xml"
2159
- version = "0.37.4"
2165
+ version = "0.37.5"
2160
2166
  source = "registry+https://github.com/rust-lang/crates.io-index"
2161
- checksum = "a4ce8c88de324ff838700f36fb6ab86c96df0e3c4ab6ef3a9b2044465cce1369"
2167
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2162
2168
  dependencies = [
2163
2169
  "memchr",
2164
2170
  ]
@@ -2191,13 +2197,12 @@ dependencies = [
2191
2197
 
2192
2198
  [[package]]
2193
2199
  name = "rand"
2194
- version = "0.9.0"
2200
+ version = "0.9.1"
2195
2201
  source = "registry+https://github.com/rust-lang/crates.io-index"
2196
- checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2202
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2197
2203
  dependencies = [
2198
2204
  "rand_chacha 0.9.0",
2199
2205
  "rand_core 0.9.3",
2200
- "zerocopy 0.8.24",
2201
2206
  ]
2202
2207
 
2203
2208
  [[package]]
@@ -2226,7 +2231,7 @@ version = "0.6.4"
2226
2231
  source = "registry+https://github.com/rust-lang/crates.io-index"
2227
2232
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2228
2233
  dependencies = [
2229
- "getrandom 0.2.15",
2234
+ "getrandom 0.2.16",
2230
2235
  ]
2231
2236
 
2232
2237
  [[package]]
@@ -2305,9 +2310,9 @@ dependencies = [
2305
2310
 
2306
2311
  [[package]]
2307
2312
  name = "redox_syscall"
2308
- version = "0.5.11"
2313
+ version = "0.5.12"
2309
2314
  source = "registry+https://github.com/rust-lang/crates.io-index"
2310
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2315
+ checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
2311
2316
  dependencies = [
2312
2317
  "bitflags",
2313
2318
  ]
@@ -2391,6 +2396,7 @@ dependencies = [
2391
2396
  "serde",
2392
2397
  "spargebra",
2393
2398
  "thiserror",
2399
+ "utils",
2394
2400
  "uuid",
2395
2401
  ]
2396
2402
 
@@ -2475,9 +2481,9 @@ dependencies = [
2475
2481
 
2476
2482
  [[package]]
2477
2483
  name = "scc"
2478
- version = "2.3.3"
2484
+ version = "2.3.4"
2479
2485
  source = "registry+https://github.com/rust-lang/crates.io-index"
2480
- checksum = "ea091f6cac2595aa38993f04f4ee692ed43757035c36e67c180b6828356385b1"
2486
+ checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
2481
2487
  dependencies = [
2482
2488
  "sdd",
2483
2489
  ]
@@ -2563,6 +2569,7 @@ version = "0.1.0"
2563
2569
  dependencies = [
2564
2570
  "oxrdf",
2565
2571
  "polars",
2572
+ "pyo3",
2566
2573
  "representation",
2567
2574
  "thiserror",
2568
2575
  "triplestore",
@@ -2586,9 +2593,9 @@ dependencies = [
2586
2593
 
2587
2594
  [[package]]
2588
2595
  name = "signal-hook-registry"
2589
- version = "1.4.2"
2596
+ version = "1.4.5"
2590
2597
  source = "registry+https://github.com/rust-lang/crates.io-index"
2591
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2598
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2592
2599
  dependencies = [
2593
2600
  "libc",
2594
2601
  ]
@@ -2600,7 +2607,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
2607
  checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
2601
2608
  dependencies = [
2602
2609
  "ahash",
2603
- "getrandom 0.2.15",
2610
+ "getrandom 0.2.16",
2604
2611
  "halfbrown",
2605
2612
  "once_cell",
2606
2613
  "ref-cast",
@@ -2715,9 +2722,9 @@ dependencies = [
2715
2722
 
2716
2723
  [[package]]
2717
2724
  name = "stacker"
2718
- version = "0.1.20"
2725
+ version = "0.1.21"
2719
2726
  source = "registry+https://github.com/rust-lang/crates.io-index"
2720
- checksum = "601f9201feb9b09c00266478bf459952b9ef9a6b94edb2f21eba14ab681a60a9"
2727
+ checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
2721
2728
  dependencies = [
2722
2729
  "cc",
2723
2730
  "cfg-if",
@@ -2768,9 +2775,9 @@ dependencies = [
2768
2775
 
2769
2776
  [[package]]
2770
2777
  name = "syn"
2771
- version = "2.0.100"
2778
+ version = "2.0.101"
2772
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2773
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2780
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2774
2781
  dependencies = [
2775
2782
  "proc-macro2",
2776
2783
  "quote",
@@ -2847,9 +2854,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2847
2854
 
2848
2855
  [[package]]
2849
2856
  name = "tokio"
2850
- version = "1.44.2"
2857
+ version = "1.45.0"
2851
2858
  source = "registry+https://github.com/rust-lang/crates.io-index"
2852
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
2859
+ checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
2853
2860
  dependencies = [
2854
2861
  "backtrace",
2855
2862
  "bytes",
@@ -2862,9 +2869,9 @@ dependencies = [
2862
2869
 
2863
2870
  [[package]]
2864
2871
  name = "tokio-util"
2865
- version = "0.7.14"
2872
+ version = "0.7.15"
2866
2873
  source = "registry+https://github.com/rust-lang/crates.io-index"
2867
- checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
2874
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2868
2875
  dependencies = [
2869
2876
  "bytes",
2870
2877
  "futures-core",
@@ -2875,15 +2882,15 @@ dependencies = [
2875
2882
 
2876
2883
  [[package]]
2877
2884
  name = "toml_datetime"
2878
- version = "0.6.8"
2885
+ version = "0.6.9"
2879
2886
  source = "registry+https://github.com/rust-lang/crates.io-index"
2880
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
2887
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
2881
2888
 
2882
2889
  [[package]]
2883
2890
  name = "toml_edit"
2884
- version = "0.22.24"
2891
+ version = "0.22.26"
2885
2892
  source = "registry+https://github.com/rust-lang/crates.io-index"
2886
- checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
2893
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
2887
2894
  dependencies = [
2888
2895
  "indexmap",
2889
2896
  "toml_datetime",
@@ -2904,6 +2911,7 @@ dependencies = [
2904
2911
  "oxttl",
2905
2912
  "polars",
2906
2913
  "polars-core",
2914
+ "pyo3",
2907
2915
  "query_processing",
2908
2916
  "rayon",
2909
2917
  "representation",
@@ -2912,6 +2920,7 @@ dependencies = [
2912
2920
  "spargebra",
2913
2921
  "sprs",
2914
2922
  "thiserror",
2923
+ "utils",
2915
2924
  "uuid",
2916
2925
  ]
2917
2926
 
@@ -2969,6 +2978,16 @@ version = "0.2.2"
2969
2978
  source = "registry+https://github.com/rust-lang/crates.io-index"
2970
2979
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2971
2980
 
2981
+ [[package]]
2982
+ name = "utils"
2983
+ version = "0.1.0"
2984
+ dependencies = [
2985
+ "polars",
2986
+ "polars-core",
2987
+ "pyo3",
2988
+ "thiserror",
2989
+ ]
2990
+
2972
2991
  [[package]]
2973
2992
  name = "uuid"
2974
2993
  version = "1.16.0"
@@ -2976,7 +2995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
2995
  checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
2977
2996
  dependencies = [
2978
2997
  "getrandom 0.3.2",
2979
- "rand 0.9.0",
2998
+ "rand 0.9.1",
2980
2999
  ]
2981
3000
 
2982
3001
  [[package]]
@@ -3307,9 +3326,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3307
3326
 
3308
3327
  [[package]]
3309
3328
  name = "winnow"
3310
- version = "0.7.6"
3329
+ version = "0.7.9"
3311
3330
  source = "registry+https://github.com/rust-lang/crates.io-index"
3312
- checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
3331
+ checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3"
3313
3332
  dependencies = [
3314
3333
  "memchr",
3315
3334
  ]
@@ -3340,11 +3359,11 @@ dependencies = [
3340
3359
 
3341
3360
  [[package]]
3342
3361
  name = "zerocopy"
3343
- version = "0.8.24"
3362
+ version = "0.8.25"
3344
3363
  source = "registry+https://github.com/rust-lang/crates.io-index"
3345
- checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3364
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
3346
3365
  dependencies = [
3347
- "zerocopy-derive 0.8.24",
3366
+ "zerocopy-derive 0.8.25",
3348
3367
  ]
3349
3368
 
3350
3369
  [[package]]
@@ -3360,9 +3379,9 @@ dependencies = [
3360
3379
 
3361
3380
  [[package]]
3362
3381
  name = "zerocopy-derive"
3363
- version = "0.8.24"
3382
+ version = "0.8.25"
3364
3383
  source = "registry+https://github.com/rust-lang/crates.io-index"
3365
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3384
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
3366
3385
  dependencies = [
3367
3386
  "proc-macro2",
3368
3387
  "quote",