maplib 0.15.11__tar.gz → 0.15.13__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 (193) hide show
  1. {maplib-0.15.11 → maplib-0.15.13}/Cargo.lock +216 -119
  2. {maplib-0.15.11 → maplib-0.15.13}/Cargo.toml +4 -4
  3. {maplib-0.15.11 → maplib-0.15.13}/PKG-INFO +1 -1
  4. maplib-0.15.13/lib/cimxml/Cargo.toml +11 -0
  5. maplib-0.15.13/lib/cimxml/src/lib.rs +18 -0
  6. maplib-0.15.13/lib/datalog/Cargo.toml +12 -0
  7. maplib-0.15.13/lib/datalog/src/ast.rs +8 -0
  8. maplib-0.15.13/lib/datalog/src/inference.rs +21 -0
  9. maplib-0.15.13/lib/datalog/src/lib.rs +3 -0
  10. maplib-0.15.13/lib/datalog/src/parser.rs +16 -0
  11. {maplib-0.15.11 → maplib-0.15.13}/lib/file_io/src/lib.rs +1 -1
  12. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/Cargo.toml +2 -0
  13. maplib-0.15.13/lib/maplib/src/errors.rs +45 -0
  14. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/src/mapping/default.rs +9 -12
  15. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/src/mapping/errors.rs +10 -36
  16. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/src/mapping/expansion/validation.rs +6 -9
  17. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/src/mapping/expansion.rs +3 -2
  18. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/src/mapping.rs +102 -38
  19. {maplib-0.15.11 → maplib-0.15.13}/lib/pydf_io/src/to_python.rs +10 -9
  20. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/aggregates.rs +10 -0
  21. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/constants.rs +2 -0
  22. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/expressions.rs +38 -46
  23. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/graph_patterns.rs +4 -4
  24. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/multitype.rs +2 -2
  25. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/python.rs +36 -19
  26. {maplib-0.15.11 → maplib-0.15.13}/lib/shacl/src/storage.rs +2 -0
  27. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/parser.rs +2 -2
  28. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/errors.rs +4 -11
  29. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/lib.rs +21 -2
  30. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_aggregate.rs +11 -3
  31. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +5 -8
  32. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +0 -1
  33. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql.rs +1 -2
  34. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/storage.rs +12 -27
  35. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/triples_read.rs +1 -1
  36. {maplib-0.15.11/py_maplib → maplib-0.15.13}/maplib/__init__.py +3 -1
  37. {maplib-0.15.11/py_maplib → maplib-0.15.13}/maplib/__init__.pyi +29 -0
  38. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/Cargo.toml +1 -1
  39. {maplib-0.15.11 → maplib-0.15.13/py_maplib}/maplib/__init__.py +3 -1
  40. {maplib-0.15.11 → maplib-0.15.13/py_maplib}/maplib/__init__.pyi +29 -0
  41. maplib-0.15.13/py_maplib/src/error.rs +50 -0
  42. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/src/lib.rs +83 -41
  43. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/src/shacl.rs +4 -3
  44. maplib-0.15.13/py_maplib/tests/test_exceptions.py +9 -0
  45. maplib-0.15.11/lib/maplib/src/errors.rs +0 -11
  46. maplib-0.15.11/py_maplib/src/error.rs +0 -91
  47. {maplib-0.15.11 → maplib-0.15.13}/LICENSE +0 -0
  48. {maplib-0.15.11 → maplib-0.15.13}/README.md +0 -0
  49. {maplib-0.15.11 → maplib-0.15.13}/lib/file_io/Cargo.toml +0 -0
  50. {maplib-0.15.11 → maplib-0.15.13}/lib/fts/Cargo.toml +0 -0
  51. {maplib-0.15.11 → maplib-0.15.13}/lib/fts/src/lib.rs +0 -0
  52. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/src/lib.rs +0 -0
  53. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/src/mapping/constant_terms.rs +0 -0
  54. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
  55. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
  56. {maplib-0.15.11 → maplib-0.15.13}/lib/maplib/tests/test_stottr.rs +0 -0
  57. {maplib-0.15.11 → maplib-0.15.13}/lib/pydf_io/Cargo.toml +0 -0
  58. {maplib-0.15.11 → maplib-0.15.13}/lib/pydf_io/LICENSE +0 -0
  59. {maplib-0.15.11 → maplib-0.15.13}/lib/pydf_io/README.md +0 -0
  60. {maplib-0.15.11 → maplib-0.15.13}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  61. {maplib-0.15.11 → maplib-0.15.13}/lib/pydf_io/src/lib.rs +0 -0
  62. {maplib-0.15.11 → maplib-0.15.13}/lib/pydf_io/src/to_rust.rs +0 -0
  63. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/Cargo.toml +0 -0
  64. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/LICENSE +0 -0
  65. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/README.md +0 -0
  66. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/errors.rs +0 -0
  67. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/exists_helper.rs +0 -0
  68. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/find_query_variables.rs +0 -0
  69. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/lib.rs +0 -0
  70. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/pushdowns.rs +0 -0
  71. {maplib-0.15.11 → maplib-0.15.13}/lib/query_processing/src/type_constraints.rs +0 -0
  72. {maplib-0.15.11 → maplib-0.15.13}/lib/report_mapping/Cargo.toml +0 -0
  73. {maplib-0.15.11 → maplib-0.15.13}/lib/report_mapping/src/lib.rs +0 -0
  74. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/Cargo.toml +0 -0
  75. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/LICENSE +0 -0
  76. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/README.md +0 -0
  77. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/errors.rs +0 -0
  78. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/formatting.rs +0 -0
  79. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/lib.rs +0 -0
  80. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/literals.rs +0 -0
  81. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/polars_to_rdf.rs +0 -0
  82. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/query_context.rs +0 -0
  83. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/rdf_to_polars.rs +0 -0
  84. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/solution_mapping.rs +0 -0
  85. {maplib-0.15.11 → maplib-0.15.13}/lib/representation/src/subtypes.rs +0 -0
  86. {maplib-0.15.11 → maplib-0.15.13}/lib/shacl/Cargo.toml +0 -0
  87. {maplib-0.15.11 → maplib-0.15.13}/lib/shacl/src/errors.rs +0 -0
  88. {maplib-0.15.11 → maplib-0.15.13}/lib/shacl/src/lib.rs +2 -2
  89. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/Cargo.toml +0 -0
  90. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/LICENSE +0 -0
  91. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/README.md +0 -0
  92. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/algebra.rs +0 -0
  93. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/lib.rs +0 -0
  94. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/query.rs +0 -0
  95. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/query_context.rs +0 -0
  96. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/remove_sugar.rs +0 -0
  97. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/term.rs +0 -0
  98. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/treehouse.rs +0 -0
  99. {maplib-0.15.11 → maplib-0.15.13}/lib/spargebra/src/update.rs +0 -0
  100. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/Cargo.toml +0 -0
  101. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/ast.rs +0 -0
  102. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/compatible.rs +0 -0
  103. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/constants.rs +0 -0
  104. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/dataset/errors.rs +0 -0
  105. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/dataset.rs +0 -0
  106. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/document.rs +0 -0
  107. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/lib.rs +0 -0
  108. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/parsing/errors.rs +0 -0
  109. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/parsing/nom_parsing.rs +0 -0
  110. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/parsing/parser_test.rs +0 -0
  111. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/parsing/parsing_ast.rs +0 -0
  112. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/parsing.rs +0 -0
  113. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/python.rs +0 -0
  114. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/resolver.rs +0 -0
  115. {maplib-0.15.11 → maplib-0.15.13}/lib/templates/src/subtypes_ext.rs +0 -0
  116. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/Cargo.toml +0 -0
  117. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/dblf.rs +0 -0
  118. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/io_funcs.rs +0 -0
  119. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/native_parquet_write.rs +0 -0
  120. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/query_solutions.rs +0 -0
  121. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/rdfs_inferencing.rs +0 -0
  122. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/errors.rs +0 -0
  123. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_expressions.rs +0 -0
  124. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +0 -0
  125. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +0 -0
  126. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +0 -0
  127. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +0 -0
  128. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +0 -0
  129. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +0 -0
  130. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +0 -0
  131. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +0 -0
  132. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +0 -0
  133. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +0 -0
  134. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +0 -0
  135. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  136. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +0 -0
  137. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +0 -0
  138. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_order.rs +0 -0
  139. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
  140. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
  141. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/triples_write/serializers.rs +0 -0
  142. {maplib-0.15.11 → maplib-0.15.13}/lib/triplestore/src/triples_write.rs +0 -0
  143. {maplib-0.15.11 → maplib-0.15.13}/maplib/add_triples.py +0 -0
  144. {maplib-0.15.11 → maplib-0.15.13}/maplib/py.typed +0 -0
  145. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/LICENSE +0 -0
  146. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/README.md +0 -0
  147. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/maplib/.gitignore +0 -0
  148. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/maplib/add_triples.py +0 -0
  149. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/maplib/py.typed +0 -0
  150. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/.gitignore +0 -0
  151. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/__init__.py +0 -0
  152. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/out.ttl +0 -0
  153. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/requirements.txt +0 -0
  154. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_basics.py +0 -0
  155. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
  156. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_data_validation.py +0 -0
  157. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_integration.py +0 -0
  158. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_multi_expressions.py +0 -0
  159. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_pizza_example.py +0 -0
  160. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
  161. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_rdf_parser.py +0 -0
  162. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_read_write.py +0 -0
  163. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/test_validate_iris.py +0 -0
  164. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  165. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  166. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  167. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  168. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  169. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/larger_query.csv +0 -0
  170. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_concat.csv +0 -0
  171. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  172. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  173. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  174. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  175. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  176. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  177. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  178. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  179. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  180. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
  181. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  182. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  183. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  184. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  185. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  186. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
  187. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
  188. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  189. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  190. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  191. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/simple_query.csv +0 -0
  192. {maplib-0.15.11 → maplib-0.15.13}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
  193. {maplib-0.15.11 → maplib-0.15.13}/pyproject.toml +0 -0
@@ -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"
@@ -311,9 +323,9 @@ dependencies = [
311
323
 
312
324
  [[package]]
313
325
  name = "cc"
314
- version = "1.2.17"
326
+ version = "1.2.19"
315
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
316
- checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
328
+ checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
317
329
  dependencies = [
318
330
  "jobserver",
319
331
  "libc",
@@ -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,27 @@ 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
+ "thiserror",
382
+ "triplestore",
384
383
  ]
385
384
 
386
385
  [[package]]
@@ -415,6 +414,15 @@ dependencies = [
415
414
  "static_assertions",
416
415
  ]
417
416
 
417
+ [[package]]
418
+ name = "concurrent-queue"
419
+ version = "2.5.0"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
422
+ dependencies = [
423
+ "crossbeam-utils",
424
+ ]
425
+
418
426
  [[package]]
419
427
  name = "core-foundation-sys"
420
428
  version = "0.8.7"
@@ -432,9 +440,9 @@ dependencies = [
432
440
 
433
441
  [[package]]
434
442
  name = "crossbeam-channel"
435
- version = "0.5.14"
443
+ version = "0.5.15"
436
444
  source = "registry+https://github.com/rust-lang/crates.io-index"
437
- checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
445
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
438
446
  dependencies = [
439
447
  "crossbeam-utils",
440
448
  ]
@@ -495,6 +503,16 @@ dependencies = [
495
503
  "winapi",
496
504
  ]
497
505
 
506
+ [[package]]
507
+ name = "datalog"
508
+ version = "0.1.0"
509
+ dependencies = [
510
+ "oxrdf",
511
+ "representation",
512
+ "thiserror",
513
+ "triplestore",
514
+ ]
515
+
498
516
  [[package]]
499
517
  name = "dyn-clone"
500
518
  version = "1.0.19"
@@ -531,9 +549,9 @@ dependencies = [
531
549
 
532
550
  [[package]]
533
551
  name = "env_logger"
534
- version = "0.11.7"
552
+ version = "0.11.8"
535
553
  source = "registry+https://github.com/rust-lang/crates.io-index"
536
- checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
554
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
537
555
  dependencies = [
538
556
  "anstream",
539
557
  "anstyle",
@@ -550,9 +568,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
550
568
 
551
569
  [[package]]
552
570
  name = "errno"
553
- version = "0.3.10"
571
+ version = "0.3.11"
554
572
  source = "registry+https://github.com/rust-lang/crates.io-index"
555
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
573
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
556
574
  dependencies = [
557
575
  "libc",
558
576
  "windows-sys 0.59.0",
@@ -564,6 +582,27 @@ version = "1.5.0"
564
582
  source = "registry+https://github.com/rust-lang/crates.io-index"
565
583
  checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
566
584
 
585
+ [[package]]
586
+ name = "event-listener"
587
+ version = "5.4.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
590
+ dependencies = [
591
+ "concurrent-queue",
592
+ "parking",
593
+ "pin-project-lite",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "event-listener-strategy"
598
+ version = "0.5.4"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
601
+ dependencies = [
602
+ "event-listener",
603
+ "pin-project-lite",
604
+ ]
605
+
567
606
  [[package]]
568
607
  name = "fallible-streaming-iterator"
569
608
  version = "0.1.9"
@@ -587,9 +626,9 @@ dependencies = [
587
626
 
588
627
  [[package]]
589
628
  name = "flate2"
590
- version = "1.1.0"
629
+ version = "1.1.1"
591
630
  source = "registry+https://github.com/rust-lang/crates.io-index"
592
- checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
631
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
593
632
  dependencies = [
594
633
  "crc32fast",
595
634
  "libz-rs-sys",
@@ -837,9 +876,9 @@ dependencies = [
837
876
 
838
877
  [[package]]
839
878
  name = "iana-time-zone"
840
- version = "0.1.62"
879
+ version = "0.1.63"
841
880
  source = "registry+https://github.com/rust-lang/crates.io-index"
842
- checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127"
881
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
843
882
  dependencies = [
844
883
  "android_system_properties",
845
884
  "core-foundation-sys",
@@ -847,7 +886,7 @@ dependencies = [
847
886
  "js-sys",
848
887
  "log",
849
888
  "wasm-bindgen",
850
- "windows-core 0.52.0",
889
+ "windows-core 0.61.0",
851
890
  ]
852
891
 
853
892
  [[package]]
@@ -861,9 +900,9 @@ dependencies = [
861
900
 
862
901
  [[package]]
863
902
  name = "indexmap"
864
- version = "2.8.0"
903
+ version = "2.9.0"
865
904
  source = "registry+https://github.com/rust-lang/crates.io-index"
866
- checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
905
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
867
906
  dependencies = [
868
907
  "equivalent",
869
908
  "hashbrown 0.15.2",
@@ -910,9 +949,9 @@ dependencies = [
910
949
 
911
950
  [[package]]
912
951
  name = "jiff"
913
- version = "0.2.5"
952
+ version = "0.2.6"
914
953
  source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "c102670231191d07d37a35af3eb77f1f0dbf7a71be51a962dcd57ea607be7260"
954
+ checksum = "1f33145a5cbea837164362c7bd596106eb7c5198f97d1ba6f6ebb3223952e488"
916
955
  dependencies = [
917
956
  "jiff-static",
918
957
  "log",
@@ -923,9 +962,9 @@ dependencies = [
923
962
 
924
963
  [[package]]
925
964
  name = "jiff-static"
926
- version = "0.2.5"
965
+ version = "0.2.6"
927
966
  source = "registry+https://github.com/rust-lang/crates.io-index"
928
- checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
967
+ checksum = "43ce13c40ec6956157a3635d97a1ee2df323b263f09ea14165131289cb0f5c19"
929
968
  dependencies = [
930
969
  "proc-macro2",
931
970
  "quote",
@@ -934,10 +973,11 @@ dependencies = [
934
973
 
935
974
  [[package]]
936
975
  name = "jobserver"
937
- version = "0.1.32"
976
+ version = "0.1.33"
938
977
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
978
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
940
979
  dependencies = [
980
+ "getrandom 0.3.2",
941
981
  "libc",
942
982
  ]
943
983
 
@@ -971,9 +1011,9 @@ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
971
1011
 
972
1012
  [[package]]
973
1013
  name = "libmimalloc-sys"
974
- version = "0.1.40"
1014
+ version = "0.1.42"
975
1015
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "07d0e07885d6a754b9c7993f2625187ad694ee985d60f23355ff0e7077261502"
1016
+ checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
977
1017
  dependencies = [
978
1018
  "cc",
979
1019
  "libc",
@@ -981,9 +1021,9 @@ dependencies = [
981
1021
 
982
1022
  [[package]]
983
1023
  name = "libz-rs-sys"
984
- version = "0.4.2"
1024
+ version = "0.5.0"
985
1025
  source = "registry+https://github.com/rust-lang/crates.io-index"
986
- checksum = "902bc563b5d65ad9bba616b490842ef0651066a1a1dc3ce1087113ffcb873c8d"
1026
+ checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
987
1027
  dependencies = [
988
1028
  "zlib-rs",
989
1029
  ]
@@ -1034,7 +1074,9 @@ name = "maplib"
1034
1074
  version = "0.6.0"
1035
1075
  dependencies = [
1036
1076
  "chrono",
1037
- "chrono-tz 0.10.3",
1077
+ "chrono-tz",
1078
+ "cimxml",
1079
+ "datalog",
1038
1080
  "env_logger",
1039
1081
  "log",
1040
1082
  "oxiri",
@@ -1088,9 +1130,9 @@ dependencies = [
1088
1130
 
1089
1131
  [[package]]
1090
1132
  name = "mimalloc"
1091
- version = "0.1.44"
1133
+ version = "0.1.46"
1092
1134
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
- checksum = "99585191385958383e13f6b822e6b6d8d9cf928e7d286ceb092da92b43c87bc1"
1135
+ checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
1094
1136
  dependencies = [
1095
1137
  "libmimalloc-sys",
1096
1138
  ]
@@ -1103,9 +1145,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1103
1145
 
1104
1146
  [[package]]
1105
1147
  name = "miniz_oxide"
1106
- version = "0.8.5"
1148
+ version = "0.8.8"
1107
1149
  source = "registry+https://github.com/rust-lang/crates.io-index"
1108
- checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1150
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1109
1151
  dependencies = [
1110
1152
  "adler2",
1111
1153
  ]
@@ -1302,6 +1344,12 @@ dependencies = [
1302
1344
  "thiserror",
1303
1345
  ]
1304
1346
 
1347
+ [[package]]
1348
+ name = "parking"
1349
+ version = "2.2.1"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1352
+
1305
1353
  [[package]]
1306
1354
  name = "parking_lot"
1307
1355
  version = "0.12.3"
@@ -1435,7 +1483,7 @@ dependencies = [
1435
1483
  [[package]]
1436
1484
  name = "polars"
1437
1485
  version = "0.46.0"
1438
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1486
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1439
1487
  dependencies = [
1440
1488
  "getrandom 0.2.15",
1441
1489
  "polars-arrow",
@@ -1455,12 +1503,12 @@ dependencies = [
1455
1503
  [[package]]
1456
1504
  name = "polars-arrow"
1457
1505
  version = "0.46.0"
1458
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1506
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1459
1507
  dependencies = [
1460
1508
  "atoi_simd",
1461
1509
  "bytemuck",
1462
1510
  "chrono",
1463
- "chrono-tz 0.10.3",
1511
+ "chrono-tz",
1464
1512
  "dyn-clone",
1465
1513
  "either",
1466
1514
  "ethnum",
@@ -1495,7 +1543,7 @@ dependencies = [
1495
1543
  [[package]]
1496
1544
  name = "polars-compute"
1497
1545
  version = "0.46.0"
1498
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1546
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1499
1547
  dependencies = [
1500
1548
  "atoi_simd",
1501
1549
  "bytemuck",
@@ -1518,12 +1566,12 @@ dependencies = [
1518
1566
  [[package]]
1519
1567
  name = "polars-core"
1520
1568
  version = "0.46.0"
1521
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1569
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1522
1570
  dependencies = [
1523
1571
  "bitflags",
1524
1572
  "bytemuck",
1525
1573
  "chrono",
1526
- "chrono-tz 0.10.3",
1574
+ "chrono-tz",
1527
1575
  "comfy-table",
1528
1576
  "either",
1529
1577
  "hashbrown 0.14.5",
@@ -1549,7 +1597,7 @@ dependencies = [
1549
1597
  [[package]]
1550
1598
  name = "polars-error"
1551
1599
  version = "0.46.0"
1552
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1600
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1553
1601
  dependencies = [
1554
1602
  "parking_lot",
1555
1603
  "polars-arrow-format",
@@ -1561,7 +1609,7 @@ dependencies = [
1561
1609
  [[package]]
1562
1610
  name = "polars-expr"
1563
1611
  version = "0.46.0"
1564
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1612
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1565
1613
  dependencies = [
1566
1614
  "bitflags",
1567
1615
  "hashbrown 0.15.2",
@@ -1577,18 +1625,19 @@ dependencies = [
1577
1625
  "polars-utils",
1578
1626
  "rand 0.8.5",
1579
1627
  "rayon",
1628
+ "recursive",
1580
1629
  ]
1581
1630
 
1582
1631
  [[package]]
1583
1632
  name = "polars-io"
1584
1633
  version = "0.46.0"
1585
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1634
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1586
1635
  dependencies = [
1587
1636
  "async-trait",
1588
1637
  "atoi_simd",
1589
1638
  "bytes",
1590
1639
  "chrono",
1591
- "chrono-tz 0.10.3",
1640
+ "chrono-tz",
1592
1641
  "fast-float2",
1593
1642
  "futures",
1594
1643
  "glob",
@@ -1618,10 +1667,10 @@ dependencies = [
1618
1667
  [[package]]
1619
1668
  name = "polars-json"
1620
1669
  version = "0.46.0"
1621
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1670
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1622
1671
  dependencies = [
1623
1672
  "chrono",
1624
- "chrono-tz 0.10.3",
1673
+ "chrono-tz",
1625
1674
  "fallible-streaming-iterator",
1626
1675
  "hashbrown 0.15.2",
1627
1676
  "indexmap",
@@ -1639,7 +1688,7 @@ dependencies = [
1639
1688
  [[package]]
1640
1689
  name = "polars-lazy"
1641
1690
  version = "0.46.0"
1642
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1691
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1643
1692
  dependencies = [
1644
1693
  "bitflags",
1645
1694
  "chrono",
@@ -1664,7 +1713,7 @@ dependencies = [
1664
1713
  [[package]]
1665
1714
  name = "polars-mem-engine"
1666
1715
  version = "0.46.0"
1667
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1716
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1668
1717
  dependencies = [
1669
1718
  "memmap2",
1670
1719
  "polars-arrow",
@@ -1683,17 +1732,18 @@ dependencies = [
1683
1732
  [[package]]
1684
1733
  name = "polars-ops"
1685
1734
  version = "0.46.0"
1686
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1735
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1687
1736
  dependencies = [
1688
1737
  "argminmax",
1689
1738
  "base64",
1690
1739
  "bytemuck",
1691
1740
  "chrono",
1692
- "chrono-tz 0.10.3",
1741
+ "chrono-tz",
1693
1742
  "either",
1694
1743
  "hashbrown 0.15.2",
1695
1744
  "hex",
1696
1745
  "indexmap",
1746
+ "libm",
1697
1747
  "memchr",
1698
1748
  "num-traits",
1699
1749
  "polars-arrow",
@@ -1714,7 +1764,7 @@ dependencies = [
1714
1764
  [[package]]
1715
1765
  name = "polars-parquet"
1716
1766
  version = "0.46.0"
1717
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1767
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1718
1768
  dependencies = [
1719
1769
  "async-stream",
1720
1770
  "base64",
@@ -1750,7 +1800,7 @@ dependencies = [
1750
1800
  [[package]]
1751
1801
  name = "polars-pipe"
1752
1802
  version = "0.46.0"
1753
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1803
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1754
1804
  dependencies = [
1755
1805
  "crossbeam-channel",
1756
1806
  "crossbeam-queue",
@@ -1775,13 +1825,13 @@ dependencies = [
1775
1825
  [[package]]
1776
1826
  name = "polars-plan"
1777
1827
  version = "0.46.0"
1778
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1828
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1779
1829
  dependencies = [
1780
1830
  "bitflags",
1781
1831
  "bytemuck",
1782
1832
  "bytes",
1783
1833
  "chrono",
1784
- "chrono-tz 0.10.3",
1834
+ "chrono-tz",
1785
1835
  "either",
1786
1836
  "hashbrown 0.15.2",
1787
1837
  "memmap2",
@@ -1805,7 +1855,7 @@ dependencies = [
1805
1855
  [[package]]
1806
1856
  name = "polars-row"
1807
1857
  version = "0.46.0"
1808
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1858
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1809
1859
  dependencies = [
1810
1860
  "bitflags",
1811
1861
  "bytemuck",
@@ -1818,7 +1868,7 @@ dependencies = [
1818
1868
  [[package]]
1819
1869
  name = "polars-schema"
1820
1870
  version = "0.46.0"
1821
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1871
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1822
1872
  dependencies = [
1823
1873
  "indexmap",
1824
1874
  "polars-error",
@@ -1829,7 +1879,7 @@ dependencies = [
1829
1879
  [[package]]
1830
1880
  name = "polars-sql"
1831
1881
  version = "0.46.0"
1832
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1882
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1833
1883
  dependencies = [
1834
1884
  "bitflags",
1835
1885
  "hex",
@@ -1849,8 +1899,9 @@ dependencies = [
1849
1899
  [[package]]
1850
1900
  name = "polars-stream"
1851
1901
  version = "0.46.0"
1852
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1902
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1853
1903
  dependencies = [
1904
+ "async-channel",
1854
1905
  "async-trait",
1855
1906
  "atomic-waker",
1856
1907
  "bitflags",
@@ -1884,12 +1935,12 @@ dependencies = [
1884
1935
  [[package]]
1885
1936
  name = "polars-time"
1886
1937
  version = "0.46.0"
1887
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1938
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1888
1939
  dependencies = [
1889
1940
  "atoi_simd",
1890
1941
  "bytemuck",
1891
1942
  "chrono",
1892
- "chrono-tz 0.10.3",
1943
+ "chrono-tz",
1893
1944
  "now",
1894
1945
  "num-traits",
1895
1946
  "polars-arrow",
@@ -1906,7 +1957,7 @@ dependencies = [
1906
1957
  [[package]]
1907
1958
  name = "polars-utils"
1908
1959
  version = "0.46.0"
1909
- source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1960
+ source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
1910
1961
  dependencies = [
1911
1962
  "bytemuck",
1912
1963
  "bytes",
@@ -1921,6 +1972,8 @@ dependencies = [
1921
1972
  "rand 0.8.5",
1922
1973
  "raw-cpuid",
1923
1974
  "rayon",
1975
+ "regex",
1976
+ "slotmap",
1924
1977
  "stacker",
1925
1978
  "sysinfo",
1926
1979
  "version_check",
@@ -1979,7 +2032,7 @@ dependencies = [
1979
2032
 
1980
2033
  [[package]]
1981
2034
  name = "py_maplib"
1982
- version = "0.15.11"
2035
+ version = "0.15.13"
1983
2036
  dependencies = [
1984
2037
  "jemallocator",
1985
2038
  "log",
@@ -2012,13 +2065,13 @@ dependencies = [
2012
2065
 
2013
2066
  [[package]]
2014
2067
  name = "pyo3"
2015
- version = "0.22.6"
2068
+ version = "0.24.1"
2016
2069
  source = "registry+https://github.com/rust-lang/crates.io-index"
2017
- checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2070
+ checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
2018
2071
  dependencies = [
2019
2072
  "cfg-if",
2020
2073
  "chrono",
2021
- "chrono-tz 0.9.0",
2074
+ "chrono-tz",
2022
2075
  "indoc",
2023
2076
  "libc",
2024
2077
  "memoffset",
@@ -2032,9 +2085,9 @@ dependencies = [
2032
2085
 
2033
2086
  [[package]]
2034
2087
  name = "pyo3-build-config"
2035
- version = "0.22.6"
2088
+ version = "0.24.1"
2036
2089
  source = "registry+https://github.com/rust-lang/crates.io-index"
2037
- checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2090
+ checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
2038
2091
  dependencies = [
2039
2092
  "once_cell",
2040
2093
  "target-lexicon",
@@ -2042,9 +2095,9 @@ dependencies = [
2042
2095
 
2043
2096
  [[package]]
2044
2097
  name = "pyo3-ffi"
2045
- version = "0.22.6"
2098
+ version = "0.24.1"
2046
2099
  source = "registry+https://github.com/rust-lang/crates.io-index"
2047
- checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2100
+ checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
2048
2101
  dependencies = [
2049
2102
  "libc",
2050
2103
  "pyo3-build-config",
@@ -2052,9 +2105,9 @@ dependencies = [
2052
2105
 
2053
2106
  [[package]]
2054
2107
  name = "pyo3-log"
2055
- version = "0.11.0"
2108
+ version = "0.12.3"
2056
2109
  source = "registry+https://github.com/rust-lang/crates.io-index"
2057
- checksum = "3ac84e6eec1159bc2a575c9ae6723baa6ee9d45873e9bebad1e3ad7e8d28a443"
2110
+ checksum = "7079e412e909af5d6be7c04a7f29f6a2837a080410e1c529c9dee2c367383db4"
2058
2111
  dependencies = [
2059
2112
  "arc-swap",
2060
2113
  "log",
@@ -2063,9 +2116,9 @@ dependencies = [
2063
2116
 
2064
2117
  [[package]]
2065
2118
  name = "pyo3-macros"
2066
- version = "0.22.6"
2119
+ version = "0.24.1"
2067
2120
  source = "registry+https://github.com/rust-lang/crates.io-index"
2068
- checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2121
+ checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
2069
2122
  dependencies = [
2070
2123
  "proc-macro2",
2071
2124
  "pyo3-macros-backend",
@@ -2075,9 +2128,9 @@ dependencies = [
2075
2128
 
2076
2129
  [[package]]
2077
2130
  name = "pyo3-macros-backend"
2078
- version = "0.22.6"
2131
+ version = "0.24.1"
2079
2132
  source = "registry+https://github.com/rust-lang/crates.io-index"
2080
- checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2133
+ checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
2081
2134
  dependencies = [
2082
2135
  "heck",
2083
2136
  "proc-macro2",
@@ -2103,9 +2156,9 @@ dependencies = [
2103
2156
 
2104
2157
  [[package]]
2105
2158
  name = "quick-xml"
2106
- version = "0.37.3"
2159
+ version = "0.37.4"
2107
2160
  source = "registry+https://github.com/rust-lang/crates.io-index"
2108
- checksum = "bf763ab1c7a3aa408be466efc86efe35ed1bd3dd74173ed39d6b0d0a6f0ba148"
2161
+ checksum = "a4ce8c88de324ff838700f36fb6ab86c96df0e3c4ab6ef3a9b2044465cce1369"
2109
2162
  dependencies = [
2110
2163
  "memchr",
2111
2164
  ]
@@ -2252,9 +2305,9 @@ dependencies = [
2252
2305
 
2253
2306
  [[package]]
2254
2307
  name = "redox_syscall"
2255
- version = "0.5.10"
2308
+ version = "0.5.11"
2256
2309
  source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
2310
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2258
2311
  dependencies = [
2259
2312
  "bitflags",
2260
2313
  ]
@@ -2328,7 +2381,7 @@ name = "representation"
2328
2381
  version = "0.6.10"
2329
2382
  dependencies = [
2330
2383
  "chrono",
2331
- "chrono-tz 0.10.3",
2384
+ "chrono-tz",
2332
2385
  "log",
2333
2386
  "oxrdf",
2334
2387
  "oxsdatatypes",
@@ -2589,9 +2642,9 @@ dependencies = [
2589
2642
 
2590
2643
  [[package]]
2591
2644
  name = "smallvec"
2592
- version = "1.14.0"
2645
+ version = "1.15.0"
2593
2646
  source = "registry+https://github.com/rust-lang/crates.io-index"
2594
- checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
2647
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2595
2648
 
2596
2649
  [[package]]
2597
2650
  name = "snap"
@@ -2601,9 +2654,9 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2601
2654
 
2602
2655
  [[package]]
2603
2656
  name = "socket2"
2604
- version = "0.5.8"
2657
+ version = "0.5.9"
2605
2658
  source = "registry+https://github.com/rust-lang/crates.io-index"
2606
- checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2659
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2607
2660
  dependencies = [
2608
2661
  "libc",
2609
2662
  "windows-sys 0.52.0",
@@ -2739,9 +2792,9 @@ dependencies = [
2739
2792
 
2740
2793
  [[package]]
2741
2794
  name = "target-lexicon"
2742
- version = "0.12.16"
2795
+ version = "0.13.2"
2743
2796
  source = "registry+https://github.com/rust-lang/crates.io-index"
2744
- checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2797
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
2745
2798
 
2746
2799
  [[package]]
2747
2800
  name = "templates"
@@ -2794,9 +2847,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2794
2847
 
2795
2848
  [[package]]
2796
2849
  name = "tokio"
2797
- version = "1.44.1"
2850
+ version = "1.44.2"
2798
2851
  source = "registry+https://github.com/rust-lang/crates.io-index"
2799
- checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
2852
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
2800
2853
  dependencies = [
2801
2854
  "backtrace",
2802
2855
  "bytes",
@@ -3070,23 +3123,27 @@ dependencies = [
3070
3123
 
3071
3124
  [[package]]
3072
3125
  name = "windows-core"
3073
- version = "0.52.0"
3126
+ version = "0.57.0"
3074
3127
  source = "registry+https://github.com/rust-lang/crates.io-index"
3075
- checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3128
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3076
3129
  dependencies = [
3130
+ "windows-implement 0.57.0",
3131
+ "windows-interface 0.57.0",
3132
+ "windows-result 0.1.2",
3077
3133
  "windows-targets",
3078
3134
  ]
3079
3135
 
3080
3136
  [[package]]
3081
3137
  name = "windows-core"
3082
- version = "0.57.0"
3138
+ version = "0.61.0"
3083
3139
  source = "registry+https://github.com/rust-lang/crates.io-index"
3084
- checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3140
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3085
3141
  dependencies = [
3086
- "windows-implement",
3087
- "windows-interface",
3088
- "windows-result",
3089
- "windows-targets",
3142
+ "windows-implement 0.60.0",
3143
+ "windows-interface 0.59.1",
3144
+ "windows-link",
3145
+ "windows-result 0.3.2",
3146
+ "windows-strings",
3090
3147
  ]
3091
3148
 
3092
3149
  [[package]]
@@ -3100,6 +3157,17 @@ dependencies = [
3100
3157
  "syn",
3101
3158
  ]
3102
3159
 
3160
+ [[package]]
3161
+ name = "windows-implement"
3162
+ version = "0.60.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3165
+ dependencies = [
3166
+ "proc-macro2",
3167
+ "quote",
3168
+ "syn",
3169
+ ]
3170
+
3103
3171
  [[package]]
3104
3172
  name = "windows-interface"
3105
3173
  version = "0.57.0"
@@ -3111,6 +3179,17 @@ dependencies = [
3111
3179
  "syn",
3112
3180
  ]
3113
3181
 
3182
+ [[package]]
3183
+ name = "windows-interface"
3184
+ version = "0.59.1"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3187
+ dependencies = [
3188
+ "proc-macro2",
3189
+ "quote",
3190
+ "syn",
3191
+ ]
3192
+
3114
3193
  [[package]]
3115
3194
  name = "windows-link"
3116
3195
  version = "0.1.1"
@@ -3126,6 +3205,24 @@ dependencies = [
3126
3205
  "windows-targets",
3127
3206
  ]
3128
3207
 
3208
+ [[package]]
3209
+ name = "windows-result"
3210
+ version = "0.3.2"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3213
+ dependencies = [
3214
+ "windows-link",
3215
+ ]
3216
+
3217
+ [[package]]
3218
+ name = "windows-strings"
3219
+ version = "0.4.0"
3220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3221
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
3222
+ dependencies = [
3223
+ "windows-link",
3224
+ ]
3225
+
3129
3226
  [[package]]
3130
3227
  name = "windows-sys"
3131
3228
  version = "0.52.0"
@@ -3210,9 +3307,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3210
3307
 
3211
3308
  [[package]]
3212
3309
  name = "winnow"
3213
- version = "0.7.4"
3310
+ version = "0.7.6"
3214
3311
  source = "registry+https://github.com/rust-lang/crates.io-index"
3215
- checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
3312
+ checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
3216
3313
  dependencies = [
3217
3314
  "memchr",
3218
3315
  ]
@@ -3274,9 +3371,9 @@ dependencies = [
3274
3371
 
3275
3372
  [[package]]
3276
3373
  name = "zlib-rs"
3277
- version = "0.4.2"
3374
+ version = "0.5.0"
3278
3375
  source = "registry+https://github.com/rust-lang/crates.io-index"
3279
- checksum = "8b20717f0917c908dc63de2e44e97f1e6b126ca58d0e391cee86d504eb8fbd05"
3376
+ checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
3280
3377
 
3281
3378
  [[package]]
3282
3379
  name = "zstd"