maplib 0.19.11__tar.gz → 0.19.14__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 (254) hide show
  1. {maplib-0.19.11 → maplib-0.19.14}/Cargo.lock +45 -234
  2. {maplib-0.19.11 → maplib-0.19.14}/Cargo.toml +6 -6
  3. {maplib-0.19.11 → maplib-0.19.14}/PKG-INFO +1 -1
  4. {maplib-0.19.11/lib/cimxml → maplib-0.19.14/lib/cimxml_export}/Cargo.toml +1 -1
  5. maplib-0.19.14/lib/cimxml_import/Cargo.toml +10 -0
  6. maplib-0.19.14/lib/cimxml_import/src/lib.rs +10 -0
  7. {maplib-0.19.11 → maplib-0.19.14}/lib/file_io/Cargo.toml +1 -1
  8. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/Cargo.toml +3 -8
  9. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/errors.rs +1 -1
  10. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/model.rs +12 -3
  11. {maplib-0.19.11 → maplib-0.19.14}/lib/pydf_io/Cargo.toml +1 -1
  12. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/Cargo.toml +1 -4
  13. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/errors.rs +2 -0
  14. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/graph_patterns.rs +11 -1
  15. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/Cargo.toml +1 -1
  16. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/polars_to_rdf.rs +1 -1
  17. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/python.rs +1 -1
  18. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/rdf_to_polars.rs +10 -4
  19. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/Cargo.toml +11 -16
  20. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/README.md +8 -4
  21. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/src/algebra.rs +279 -38
  22. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/src/lib.rs +2 -5
  23. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/src/parser.rs +801 -364
  24. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/src/query.rs +56 -21
  25. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/src/term.rs +71 -114
  26. {maplib-0.19.11 → maplib-0.19.14}/lib/spargebra/src/update.rs +25 -11
  27. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/Cargo.toml +1 -1
  28. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/Cargo.toml +3 -1
  29. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/errors.rs +2 -0
  30. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/map_json.rs +0 -1
  31. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/debug.rs +1 -1
  32. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/errors.rs +5 -2
  33. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +9 -8
  34. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +1 -4
  35. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +0 -3
  36. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/rewrite/rewrite_pushdown.rs +0 -1
  37. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql.rs +1 -1
  38. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/storage.rs +238 -63
  39. maplib-0.19.14/lib/triplestore/src/triples_read.rs +553 -0
  40. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/triples_write/pretty_turtle.rs +281 -193
  41. {maplib-0.19.11 → maplib-0.19.14}/lib/utils/Cargo.toml +1 -1
  42. {maplib-0.19.11 → maplib-0.19.14}/maplib/__init__.pyi +10 -6
  43. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/Cargo.toml +3 -3
  44. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/__init__.pyi +10 -6
  45. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/src/lib.rs +71 -12
  46. maplib-0.19.14/py_maplib/tests/test_exceptions.py +27 -0
  47. maplib-0.19.14/py_maplib/tests/test_jsonld.py +25 -0
  48. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_pretty_turtle.py +43 -0
  49. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_read_write.py +1 -0
  50. maplib-0.19.14/py_maplib/tests/testdata/jsonlds/csvw.jsonld +1554 -0
  51. maplib-0.19.14/py_maplib/tests/testdata/jsonlds/grit_bins.json +28 -0
  52. maplib-0.19.14/py_maplib/tests/testdata/jsonlds/test.jsonld +112 -0
  53. maplib-0.19.14/py_maplib/tests/testdata/pretty_turtle_write_multi_provided_expected.csv +25 -0
  54. maplib-0.19.11/lib/spargebra/LICENSE +0 -201
  55. maplib-0.19.11/lib/spargebra/src/query_context.rs +0 -292
  56. maplib-0.19.11/lib/spargebra/src/remove_sugar.rs +0 -997
  57. maplib-0.19.11/lib/spargebra/src/treehouse.rs +0 -171
  58. maplib-0.19.11/lib/triplestore/src/triples_read.rs +0 -450
  59. maplib-0.19.11/py_maplib/tests/test_exceptions.py +0 -10
  60. {maplib-0.19.11 → maplib-0.19.14}/LICENSE +0 -0
  61. {maplib-0.19.11 → maplib-0.19.14}/README.md +0 -0
  62. {maplib-0.19.11/lib/cimxml → maplib-0.19.14/lib/cimxml_export}/src/export.rs +0 -0
  63. {maplib-0.19.11/lib/cimxml → maplib-0.19.14/lib/cimxml_export}/src/lib.rs +0 -0
  64. {maplib-0.19.11 → maplib-0.19.14}/lib/datalog/Cargo.toml +0 -0
  65. {maplib-0.19.11 → maplib-0.19.14}/lib/datalog/src/ast.rs +0 -0
  66. {maplib-0.19.11 → maplib-0.19.14}/lib/datalog/src/inference.rs +0 -0
  67. {maplib-0.19.11 → maplib-0.19.14}/lib/datalog/src/lib.rs +0 -0
  68. {maplib-0.19.11 → maplib-0.19.14}/lib/datalog/src/parser.rs +0 -0
  69. {maplib-0.19.11 → maplib-0.19.14}/lib/datalog/src/python.rs +0 -0
  70. {maplib-0.19.11 → maplib-0.19.14}/lib/file_io/src/lib.rs +0 -0
  71. {maplib-0.19.11 → maplib-0.19.14}/lib/fts/Cargo.toml +0 -0
  72. {maplib-0.19.11 → maplib-0.19.14}/lib/fts/src/lib.rs +0 -0
  73. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/lib.rs +0 -0
  74. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/model/constant_terms.rs +0 -0
  75. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/model/default.rs +0 -0
  76. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/model/errors.rs +0 -0
  77. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/model/expansion/validation.rs +0 -0
  78. {maplib-0.19.11 → maplib-0.19.14}/lib/maplib/src/model/expansion.rs +0 -0
  79. {maplib-0.19.11 → maplib-0.19.14}/lib/pydf_io/LICENSE +0 -0
  80. {maplib-0.19.11 → maplib-0.19.14}/lib/pydf_io/README.md +0 -0
  81. {maplib-0.19.11 → maplib-0.19.14}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  82. {maplib-0.19.11 → maplib-0.19.14}/lib/pydf_io/src/lib.rs +0 -0
  83. {maplib-0.19.11 → maplib-0.19.14}/lib/pydf_io/src/to_python.rs +0 -0
  84. {maplib-0.19.11 → maplib-0.19.14}/lib/pydf_io/src/to_rust.rs +0 -0
  85. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/LICENSE +0 -0
  86. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/README.md +0 -0
  87. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/aggregates.rs +0 -0
  88. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/cats.rs +0 -0
  89. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/constants.rs +0 -0
  90. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/exists_helper.rs +0 -0
  91. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/expressions/comparisons.rs +0 -0
  92. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/expressions/functions.rs +0 -0
  93. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/expressions/operations.rs +0 -0
  94. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/expressions.rs +0 -0
  95. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/find_query_variables.rs +0 -0
  96. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/cats.rs +0 -0
  97. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/group.rs +0 -0
  98. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/join.rs +0 -0
  99. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/order.rs +0 -0
  100. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/union.rs +0 -0
  101. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/values.rs +0 -0
  102. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/lib.rs +0 -0
  103. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/pushdowns.rs +0 -0
  104. {maplib-0.19.11 → maplib-0.19.14}/lib/query_processing/src/type_constraints.rs +0 -0
  105. {maplib-0.19.11 → maplib-0.19.14}/lib/report_mapping/Cargo.toml +0 -0
  106. {maplib-0.19.11 → maplib-0.19.14}/lib/report_mapping/src/lib.rs +0 -0
  107. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/LICENSE +0 -0
  108. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/README.md +0 -0
  109. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/base_rdf_type.rs +0 -0
  110. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/decode.rs +0 -0
  111. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/encode.rs +0 -0
  112. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/globalize.rs +0 -0
  113. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/image.rs +0 -0
  114. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/maps/in_memory.rs +0 -0
  115. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/maps/on_disk.rs +0 -0
  116. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/maps.rs +0 -0
  117. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats/re_encode.rs +0 -0
  118. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/cats.rs +0 -0
  119. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/constants.rs +0 -0
  120. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/dataset.rs +0 -0
  121. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/debug.rs +0 -0
  122. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/errors.rs +0 -0
  123. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/formatting.rs +0 -0
  124. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/lib.rs +0 -0
  125. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/literals.rs +0 -0
  126. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/multitype.rs +0 -0
  127. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/prefixes.rs +0 -0
  128. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/query_context.rs +0 -0
  129. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/rdf_state.rs +0 -0
  130. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/rdf_type.rs +0 -0
  131. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/solution_mapping.rs +0 -0
  132. {maplib-0.19.11 → maplib-0.19.14}/lib/representation/src/subtypes.rs +0 -0
  133. {maplib-0.19.11 → maplib-0.19.14}/lib/shacl/Cargo.toml +0 -0
  134. {maplib-0.19.11 → maplib-0.19.14}/lib/shacl/src/errors.rs +0 -0
  135. {maplib-0.19.11 → maplib-0.19.14}/lib/shacl/src/lib.rs +0 -0
  136. {maplib-0.19.11 → maplib-0.19.14}/lib/shacl/src/storage.rs +0 -0
  137. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/ast.rs +0 -0
  138. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/compatible.rs +0 -0
  139. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/dataset/errors.rs +0 -0
  140. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/dataset.rs +0 -0
  141. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/document.rs +0 -0
  142. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/lib.rs +0 -0
  143. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/parsing.rs +0 -0
  144. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/python/owl.rs +0 -0
  145. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/python/rdf.rs +0 -0
  146. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/python/rdfs.rs +0 -0
  147. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/python/xsd.rs +0 -0
  148. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/python.rs +0 -0
  149. {maplib-0.19.11 → maplib-0.19.14}/lib/templates/src/subtypes_ext.rs +0 -0
  150. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/cats.rs +0 -0
  151. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/dblf.rs +0 -0
  152. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/io_funcs.rs +0 -0
  153. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/lib.rs +0 -0
  154. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/native_parquet_write.rs +0 -0
  155. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/query_solutions.rs +0 -0
  156. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/rdfs_inferencing.rs +0 -0
  157. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/delete.rs +0 -0
  158. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/insert.rs +0 -0
  159. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_aggregate.rs +0 -0
  160. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_expressions.rs +0 -0
  161. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +0 -0
  162. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +0 -0
  163. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +0 -0
  164. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/graph.rs +0 -0
  165. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +0 -0
  166. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +0 -0
  167. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +0 -0
  168. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +0 -0
  169. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +0 -0
  170. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +0 -0
  171. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +0 -0
  172. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  173. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +0 -0
  174. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +0 -0
  175. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_order.rs +0 -0
  176. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/rewrite/rewrite_cse.rs +0 -0
  177. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/sparql/rewrite.rs +0 -0
  178. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/storage/deduplication.rs +0 -0
  179. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/storage/so_index.rs +0 -0
  180. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
  181. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/triples_write/serializers.rs +0 -0
  182. {maplib-0.19.11 → maplib-0.19.14}/lib/triplestore/src/triples_write.rs +0 -0
  183. {maplib-0.19.11 → maplib-0.19.14}/lib/utils/src/lib.rs +0 -0
  184. {maplib-0.19.11 → maplib-0.19.14}/lib/utils/src/polars.rs +0 -0
  185. {maplib-0.19.11 → maplib-0.19.14}/maplib/__init__.py +0 -0
  186. {maplib-0.19.11 → maplib-0.19.14}/maplib/adding_triples.py +0 -0
  187. {maplib-0.19.11 → maplib-0.19.14}/maplib/py.typed +0 -0
  188. {maplib-0.19.11 → maplib-0.19.14}/maplib/template_generator/__init__.py +0 -0
  189. {maplib-0.19.11 → maplib-0.19.14}/maplib/template_generator/generate.py +0 -0
  190. {maplib-0.19.11 → maplib-0.19.14}/maplib/template_generator/ordering.py +0 -0
  191. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/LICENSE +0 -0
  192. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/README.md +0 -0
  193. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/.gitignore +0 -0
  194. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/__init__.py +0 -0
  195. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/adding_triples.py +0 -0
  196. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/py.typed +0 -0
  197. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/template_generator/__init__.py +0 -0
  198. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/template_generator/generate.py +0 -0
  199. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/maplib/template_generator/ordering.py +0 -0
  200. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/src/error.rs +0 -0
  201. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/src/shacl.rs +0 -0
  202. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/.gitignore +0 -0
  203. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/__init__.py +0 -0
  204. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/out.ttl +0 -0
  205. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/requirements.txt +0 -0
  206. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_basics.py +0 -0
  207. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
  208. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_data_validation.py +0 -0
  209. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_integration.py +0 -0
  210. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_json.py +0 -0
  211. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_multi_expressions.py +0 -0
  212. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_named_graphs.py +0 -0
  213. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_pizza_example.py +0 -0
  214. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
  215. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_rdf_parser.py +0 -0
  216. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_stottr.py +0 -0
  217. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/test_validate_iris.py +0 -0
  218. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/expected_easy_case.ttl +0 -0
  219. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  220. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  221. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  222. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  223. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/jsons/1.json +0 -0
  224. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/jsons/2.json +0 -0
  225. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/jsons/3.json +0 -0
  226. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  227. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/larger_query.csv +0 -0
  228. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_concat.csv +0 -0
  229. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  230. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  231. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  232. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  233. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  234. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  235. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  236. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  237. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  238. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
  239. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  240. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  241. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/read_lists.ttl +0 -0
  242. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  243. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  244. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  245. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
  246. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
  247. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  248. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  249. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  250. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/simple_query.csv +0 -0
  251. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
  252. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/templates.ttl +0 -0
  253. {maplib-0.19.11 → maplib-0.19.14}/py_maplib/tests/testdata/write_turtle_newlines_bug.nt +0 -0
  254. {maplib-0.19.11 → maplib-0.19.14}/pyproject.toml +0 -0
@@ -315,9 +315,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
315
315
 
316
316
  [[package]]
317
317
  name = "bytes"
318
- version = "1.10.1"
318
+ version = "1.11.1"
319
319
  source = "registry+https://github.com/rust-lang/crates.io-index"
320
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
320
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
321
321
  dependencies = [
322
322
  "serde",
323
323
  ]
@@ -380,7 +380,7 @@ dependencies = [
380
380
  ]
381
381
 
382
382
  [[package]]
383
- name = "cimxml"
383
+ name = "cimxml_export"
384
384
  version = "0.1.0"
385
385
  dependencies = [
386
386
  "oxrdf",
@@ -390,6 +390,14 @@ dependencies = [
390
390
  "triplestore",
391
391
  ]
392
392
 
393
+ [[package]]
394
+ name = "cimxml_import"
395
+ version = "0.1.0"
396
+ dependencies = [
397
+ "oxrdf",
398
+ "representation",
399
+ ]
400
+
393
401
  [[package]]
394
402
  name = "comfy-table"
395
403
  version = "7.2.1"
@@ -738,24 +746,6 @@ dependencies = [
738
746
  "thiserror",
739
747
  ]
740
748
 
741
- [[package]]
742
- name = "fundu"
743
- version = "2.0.1"
744
- source = "registry+https://github.com/rust-lang/crates.io-index"
745
- checksum = "2ce12752fc64f35be3d53e0a57017cd30970f0cffd73f62c791837d8845badbd"
746
- dependencies = [
747
- "fundu-core",
748
- ]
749
-
750
- [[package]]
751
- name = "fundu-core"
752
- version = "0.3.1"
753
- source = "registry+https://github.com/rust-lang/crates.io-index"
754
- checksum = "e463452e2d8b7600d38dcea1ed819773a57f0d710691bfc78db3961bd3f4c3ba"
755
- dependencies = [
756
- "chrono",
757
- ]
758
-
759
749
  [[package]]
760
750
  name = "futures"
761
751
  version = "0.3.31"
@@ -827,12 +817,6 @@ version = "0.3.31"
827
817
  source = "registry+https://github.com/rust-lang/crates.io-index"
828
818
  checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
829
819
 
830
- [[package]]
831
- name = "futures-timer"
832
- version = "3.0.3"
833
- source = "registry+https://github.com/rust-lang/crates.io-index"
834
- checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
835
-
836
820
  [[package]]
837
821
  name = "futures-util"
838
822
  version = "0.3.31"
@@ -1407,7 +1391,7 @@ version = "0.6.0"
1407
1391
  dependencies = [
1408
1392
  "chrono",
1409
1393
  "chrono-tz",
1410
- "cimxml",
1394
+ "cimxml_export",
1411
1395
  "datalog",
1412
1396
  "oxiri",
1413
1397
  "oxrdf",
@@ -1417,14 +1401,11 @@ dependencies = [
1417
1401
  "query_processing",
1418
1402
  "rayon",
1419
1403
  "representation",
1420
- "rstest",
1421
- "serial_test",
1422
1404
  "shacl",
1423
1405
  "templates",
1424
1406
  "thiserror",
1425
1407
  "tracing",
1426
1408
  "triplestore",
1427
- "uuid",
1428
1409
  ]
1429
1410
 
1430
1411
  [[package]]
@@ -1616,7 +1597,7 @@ dependencies = [
1616
1597
  "parking_lot",
1617
1598
  "percent-encoding",
1618
1599
  "quick-xml 0.38.3",
1619
- "rand 0.9.2",
1600
+ "rand",
1620
1601
  "reqwest",
1621
1602
  "ring",
1622
1603
  "serde",
@@ -1660,9 +1641,9 @@ checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
1660
1641
 
1661
1642
  [[package]]
1662
1643
  name = "oxjsonld"
1663
- version = "0.1.0"
1644
+ version = "0.2.2"
1664
1645
  source = "registry+https://github.com/rust-lang/crates.io-index"
1665
- checksum = "13a1a66dc569350f3f4e5eff8a8e1a72b0c9e6ad395bb5805493cb7a2fda185f"
1646
+ checksum = "b1a98ed4bc15e5b34e62de88c514cd91bcecd8003bc8f15e8036edccb2f3ed85"
1666
1647
  dependencies = [
1667
1648
  "json-event-parser",
1668
1649
  "oxiri",
@@ -1672,22 +1653,22 @@ dependencies = [
1672
1653
 
1673
1654
  [[package]]
1674
1655
  name = "oxrdf"
1675
- version = "0.2.4"
1656
+ version = "0.3.2"
1676
1657
  source = "registry+https://github.com/rust-lang/crates.io-index"
1677
- checksum = "a04761319ef84de1f59782f189d072cbfc3a9a40c4e8bded8667202fbd35b02a"
1658
+ checksum = "647ec1bce9b009b5ef00d678587ff263d53ac793cfa0652d0f1e85bc9f9699d3"
1678
1659
  dependencies = [
1679
1660
  "oxilangtag",
1680
1661
  "oxiri",
1681
1662
  "oxsdatatypes",
1682
- "rand 0.8.5",
1663
+ "rand",
1683
1664
  "thiserror",
1684
1665
  ]
1685
1666
 
1686
1667
  [[package]]
1687
1668
  name = "oxrdfio"
1688
- version = "0.1.8"
1669
+ version = "0.2.2"
1689
1670
  source = "registry+https://github.com/rust-lang/crates.io-index"
1690
- checksum = "14d33dd87769786a0bb7de342865e33bf0c6e9872fa76f1ede23e944fdc77898"
1671
+ checksum = "b7d7fe02334223d57b3ade38c06532e3d63a2d9e4995f8ff7d5a8cfe0cbb7720"
1691
1672
  dependencies = [
1692
1673
  "oxjsonld",
1693
1674
  "oxrdf",
@@ -1698,9 +1679,9 @@ dependencies = [
1698
1679
 
1699
1680
  [[package]]
1700
1681
  name = "oxrdfxml"
1701
- version = "0.1.7"
1682
+ version = "0.2.2"
1702
1683
  source = "registry+https://github.com/rust-lang/crates.io-index"
1703
- checksum = "d8d4bf9c5331127f01efbd1245d90fd75b7c546a97cb3e95461121ce1ad5b1c8"
1684
+ checksum = "c6b0befe85eeba41a2dc4507742486d287a9fca366add4626778697189c5e648"
1704
1685
  dependencies = [
1705
1686
  "oxilangtag",
1706
1687
  "oxiri",
@@ -1720,9 +1701,9 @@ dependencies = [
1720
1701
 
1721
1702
  [[package]]
1722
1703
  name = "oxttl"
1723
- version = "0.1.8"
1704
+ version = "0.2.2"
1724
1705
  source = "registry+https://github.com/rust-lang/crates.io-index"
1725
- checksum = "0d385f1776d7cace455ef6b7c54407838eff902ca897303d06eb12a26f4cf8a0"
1706
+ checksum = "ee1a35ad74d990aa6be2f3f62cd895fb4e91d64167cb81885ae304628f970f8d"
1726
1707
  dependencies = [
1727
1708
  "memchr",
1728
1709
  "oxilangtag",
@@ -1928,7 +1909,7 @@ dependencies = [
1928
1909
  "polars-arrow",
1929
1910
  "polars-error",
1930
1911
  "polars-utils",
1931
- "rand 0.9.2",
1912
+ "rand",
1932
1913
  "ryu",
1933
1914
  "serde",
1934
1915
  "strength_reduce",
@@ -1960,7 +1941,7 @@ dependencies = [
1960
1941
  "polars-row",
1961
1942
  "polars-schema",
1962
1943
  "polars-utils",
1963
- "rand 0.9.2",
1944
+ "rand",
1964
1945
  "rand_distr",
1965
1946
  "rayon",
1966
1947
  "regex",
@@ -2019,7 +2000,7 @@ dependencies = [
2019
2000
  "polars-row",
2020
2001
  "polars-time",
2021
2002
  "polars-utils",
2022
- "rand 0.9.2",
2003
+ "rand",
2023
2004
  "rayon",
2024
2005
  "recursive",
2025
2006
  "regex",
@@ -2162,7 +2143,7 @@ dependencies = [
2162
2143
  "polars-error",
2163
2144
  "polars-schema",
2164
2145
  "polars-utils",
2165
- "rand 0.9.2",
2146
+ "rand",
2166
2147
  "rayon",
2167
2148
  "regex",
2168
2149
  "regex-syntax",
@@ -2288,7 +2269,7 @@ dependencies = [
2288
2269
  "polars-plan",
2289
2270
  "polars-time",
2290
2271
  "polars-utils",
2291
- "rand 0.9.2",
2272
+ "rand",
2292
2273
  "regex",
2293
2274
  "serde",
2294
2275
  "sqlparser",
@@ -2326,7 +2307,7 @@ dependencies = [
2326
2307
  "polars-plan",
2327
2308
  "polars-time",
2328
2309
  "polars-utils",
2329
- "rand 0.9.2",
2310
+ "rand",
2330
2311
  "rayon",
2331
2312
  "recursive",
2332
2313
  "slotmap",
@@ -2376,7 +2357,7 @@ dependencies = [
2376
2357
  "memmap2",
2377
2358
  "num-traits",
2378
2359
  "polars-error",
2379
- "rand 0.9.2",
2360
+ "rand",
2380
2361
  "raw-cpuid",
2381
2362
  "rayon",
2382
2363
  "regex",
@@ -2423,15 +2404,6 @@ dependencies = [
2423
2404
  "zerocopy",
2424
2405
  ]
2425
2406
 
2426
- [[package]]
2427
- name = "proc-macro-crate"
2428
- version = "3.4.0"
2429
- source = "registry+https://github.com/rust-lang/crates.io-index"
2430
- checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2431
- dependencies = [
2432
- "toml_edit",
2433
- ]
2434
-
2435
2407
  [[package]]
2436
2408
  name = "proc-macro2"
2437
2409
  version = "1.0.101"
@@ -2452,10 +2424,10 @@ dependencies = [
2452
2424
 
2453
2425
  [[package]]
2454
2426
  name = "py_maplib"
2455
- version = "0.19.11"
2427
+ version = "0.19.14"
2456
2428
  dependencies = [
2457
2429
  "chrono",
2458
- "cimxml",
2430
+ "cimxml_export",
2459
2431
  "datalog",
2460
2432
  "maplib",
2461
2433
  "mimalloc",
@@ -2559,7 +2531,6 @@ dependencies = [
2559
2531
  "polars",
2560
2532
  "rayon",
2561
2533
  "representation",
2562
- "rstest",
2563
2534
  "spargebra",
2564
2535
  "thiserror",
2565
2536
  "tracing",
@@ -2614,7 +2585,7 @@ dependencies = [
2614
2585
  "bytes",
2615
2586
  "getrandom 0.3.3",
2616
2587
  "lru-slab",
2617
- "rand 0.9.2",
2588
+ "rand",
2618
2589
  "ring",
2619
2590
  "rustc-hash",
2620
2591
  "rustls",
@@ -2655,35 +2626,14 @@ version = "5.3.0"
2655
2626
  source = "registry+https://github.com/rust-lang/crates.io-index"
2656
2627
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2657
2628
 
2658
- [[package]]
2659
- name = "rand"
2660
- version = "0.8.5"
2661
- source = "registry+https://github.com/rust-lang/crates.io-index"
2662
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2663
- dependencies = [
2664
- "libc",
2665
- "rand_chacha 0.3.1",
2666
- "rand_core 0.6.4",
2667
- ]
2668
-
2669
2629
  [[package]]
2670
2630
  name = "rand"
2671
2631
  version = "0.9.2"
2672
2632
  source = "registry+https://github.com/rust-lang/crates.io-index"
2673
2633
  checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2674
2634
  dependencies = [
2675
- "rand_chacha 0.9.0",
2676
- "rand_core 0.9.3",
2677
- ]
2678
-
2679
- [[package]]
2680
- name = "rand_chacha"
2681
- version = "0.3.1"
2682
- source = "registry+https://github.com/rust-lang/crates.io-index"
2683
- checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2684
- dependencies = [
2685
- "ppv-lite86",
2686
- "rand_core 0.6.4",
2635
+ "rand_chacha",
2636
+ "rand_core",
2687
2637
  ]
2688
2638
 
2689
2639
  [[package]]
@@ -2693,16 +2643,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
2643
  checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2694
2644
  dependencies = [
2695
2645
  "ppv-lite86",
2696
- "rand_core 0.9.3",
2697
- ]
2698
-
2699
- [[package]]
2700
- name = "rand_core"
2701
- version = "0.6.4"
2702
- source = "registry+https://github.com/rust-lang/crates.io-index"
2703
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2704
- dependencies = [
2705
- "getrandom 0.2.16",
2646
+ "rand_core",
2706
2647
  ]
2707
2648
 
2708
2649
  [[package]]
@@ -2721,7 +2662,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
2662
  checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2722
2663
  dependencies = [
2723
2664
  "num-traits",
2724
- "rand 0.9.2",
2665
+ "rand",
2725
2666
  ]
2726
2667
 
2727
2668
  [[package]]
@@ -2837,12 +2778,6 @@ version = "0.8.7"
2837
2778
  source = "registry+https://github.com/rust-lang/crates.io-index"
2838
2779
  checksum = "c3160422bbd54dd5ecfdca71e5fd59b7b8fe2b1697ab2baf64f6d05dcc66d298"
2839
2780
 
2840
- [[package]]
2841
- name = "relative-path"
2842
- version = "1.9.3"
2843
- source = "registry+https://github.com/rust-lang/crates.io-index"
2844
- checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2845
-
2846
2781
  [[package]]
2847
2782
  name = "report_mapping"
2848
2783
  version = "0.1.0"
@@ -2949,36 +2884,6 @@ dependencies = [
2949
2884
  "serde",
2950
2885
  ]
2951
2886
 
2952
- [[package]]
2953
- name = "rstest"
2954
- version = "0.25.0"
2955
- source = "registry+https://github.com/rust-lang/crates.io-index"
2956
- checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
2957
- dependencies = [
2958
- "futures-timer",
2959
- "futures-util",
2960
- "rstest_macros",
2961
- "rustc_version",
2962
- ]
2963
-
2964
- [[package]]
2965
- name = "rstest_macros"
2966
- version = "0.25.0"
2967
- source = "registry+https://github.com/rust-lang/crates.io-index"
2968
- checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
2969
- dependencies = [
2970
- "cfg-if",
2971
- "glob",
2972
- "proc-macro-crate",
2973
- "proc-macro2",
2974
- "quote",
2975
- "regex",
2976
- "relative-path",
2977
- "rustc_version",
2978
- "syn",
2979
- "unicode-ident",
2980
- ]
2981
-
2982
2887
  [[package]]
2983
2888
  name = "rustc-demangle"
2984
2889
  version = "0.1.26"
@@ -2991,15 +2896,6 @@ version = "2.1.1"
2991
2896
  source = "registry+https://github.com/rust-lang/crates.io-index"
2992
2897
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2993
2898
 
2994
- [[package]]
2995
- name = "rustc_version"
2996
- version = "0.4.1"
2997
- source = "registry+https://github.com/rust-lang/crates.io-index"
2998
- checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2999
- dependencies = [
3000
- "semver",
3001
- ]
3002
-
3003
2899
  [[package]]
3004
2900
  name = "rustix"
3005
2901
  version = "1.1.2"
@@ -3081,15 +2977,6 @@ dependencies = [
3081
2977
  "winapi-util",
3082
2978
  ]
3083
2979
 
3084
- [[package]]
3085
- name = "scc"
3086
- version = "2.4.0"
3087
- source = "registry+https://github.com/rust-lang/crates.io-index"
3088
- checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
3089
- dependencies = [
3090
- "sdd",
3091
- ]
3092
-
3093
2980
  [[package]]
3094
2981
  name = "schannel"
3095
2982
  version = "0.1.28"
@@ -3105,12 +2992,6 @@ version = "1.2.0"
3105
2992
  source = "registry+https://github.com/rust-lang/crates.io-index"
3106
2993
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3107
2994
 
3108
- [[package]]
3109
- name = "sdd"
3110
- version = "3.0.10"
3111
- source = "registry+https://github.com/rust-lang/crates.io-index"
3112
- checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
3113
-
3114
2995
  [[package]]
3115
2996
  name = "security-framework"
3116
2997
  version = "3.5.1"
@@ -3134,12 +3015,6 @@ dependencies = [
3134
3015
  "libc",
3135
3016
  ]
3136
3017
 
3137
- [[package]]
3138
- name = "semver"
3139
- version = "1.0.27"
3140
- source = "registry+https://github.com/rust-lang/crates.io-index"
3141
- checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3142
-
3143
3018
  [[package]]
3144
3019
  name = "serde"
3145
3020
  version = "1.0.228"
@@ -3206,31 +3081,6 @@ dependencies = [
3206
3081
  "serde",
3207
3082
  ]
3208
3083
 
3209
- [[package]]
3210
- name = "serial_test"
3211
- version = "3.2.0"
3212
- source = "registry+https://github.com/rust-lang/crates.io-index"
3213
- checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
3214
- dependencies = [
3215
- "futures",
3216
- "log",
3217
- "once_cell",
3218
- "parking_lot",
3219
- "scc",
3220
- "serial_test_derive",
3221
- ]
3222
-
3223
- [[package]]
3224
- name = "serial_test_derive"
3225
- version = "3.2.0"
3226
- source = "registry+https://github.com/rust-lang/crates.io-index"
3227
- checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
3228
- dependencies = [
3229
- "proc-macro2",
3230
- "quote",
3231
- "syn",
3232
- ]
3233
-
3234
3084
  [[package]]
3235
3085
  name = "sha2"
3236
3086
  version = "0.10.9"
@@ -3361,9 +3211,9 @@ dependencies = [
3361
3211
 
3362
3212
  [[package]]
3363
3213
  name = "sparesults"
3364
- version = "0.2.5"
3214
+ version = "0.3.2"
3365
3215
  source = "registry+https://github.com/rust-lang/crates.io-index"
3366
- checksum = "f478f5ead16b6136bccee7a52ea43a615f8512086708f515e26ce33e0b184036"
3216
+ checksum = "c093f91918540c91b4dd447bf1179ff66b4bd5c5816138a00057e0d156969dd0"
3367
3217
  dependencies = [
3368
3218
  "json-event-parser",
3369
3219
  "memchr",
@@ -3374,15 +3224,13 @@ dependencies = [
3374
3224
 
3375
3225
  [[package]]
3376
3226
  name = "spargebra"
3377
- version = "0.3.0-alpha.5-parparse"
3227
+ version = "0.4.4"
3378
3228
  dependencies = [
3379
- "chrono",
3380
- "fundu",
3381
3229
  "oxilangtag",
3382
3230
  "oxiri",
3383
3231
  "oxrdf",
3384
3232
  "peg",
3385
- "rand 0.9.2",
3233
+ "rand",
3386
3234
  "thiserror",
3387
3235
  ]
3388
3236
 
@@ -3653,36 +3501,6 @@ dependencies = [
3653
3501
  "tokio",
3654
3502
  ]
3655
3503
 
3656
- [[package]]
3657
- name = "toml_datetime"
3658
- version = "0.7.3"
3659
- source = "registry+https://github.com/rust-lang/crates.io-index"
3660
- checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
3661
- dependencies = [
3662
- "serde_core",
3663
- ]
3664
-
3665
- [[package]]
3666
- name = "toml_edit"
3667
- version = "0.23.7"
3668
- source = "registry+https://github.com/rust-lang/crates.io-index"
3669
- checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
3670
- dependencies = [
3671
- "indexmap",
3672
- "toml_datetime",
3673
- "toml_parser",
3674
- "winnow",
3675
- ]
3676
-
3677
- [[package]]
3678
- name = "toml_parser"
3679
- version = "1.0.4"
3680
- source = "registry+https://github.com/rust-lang/crates.io-index"
3681
- checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
3682
- dependencies = [
3683
- "winnow",
3684
- ]
3685
-
3686
3504
  [[package]]
3687
3505
  name = "tower"
3688
3506
  version = "0.5.2"
@@ -3795,10 +3613,12 @@ name = "triplestore"
3795
3613
  version = "0.5.0"
3796
3614
  dependencies = [
3797
3615
  "aho-corasick",
3616
+ "cimxml_import",
3798
3617
  "file_io",
3799
3618
  "fts",
3800
3619
  "itoa",
3801
3620
  "memmap2",
3621
+ "oxjsonld",
3802
3622
  "oxrdf",
3803
3623
  "oxrdfio",
3804
3624
  "oxttl",
@@ -3922,7 +3742,7 @@ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
3922
3742
  dependencies = [
3923
3743
  "getrandom 0.3.3",
3924
3744
  "js-sys",
3925
- "rand 0.9.2",
3745
+ "rand",
3926
3746
  "serde",
3927
3747
  "wasm-bindgen",
3928
3748
  ]
@@ -4360,15 +4180,6 @@ version = "0.53.1"
4360
4180
  source = "registry+https://github.com/rust-lang/crates.io-index"
4361
4181
  checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4362
4182
 
4363
- [[package]]
4364
- name = "winnow"
4365
- version = "0.7.13"
4366
- source = "registry+https://github.com/rust-lang/crates.io-index"
4367
- checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
4368
- dependencies = [
4369
- "memchr",
4370
- ]
4371
-
4372
4183
  [[package]]
4373
4184
  name = "wit-bindgen"
4374
4185
  version = "0.46.0"
@@ -4,6 +4,7 @@ members = ["py_maplib"]
4
4
 
5
5
  [workspace.package]
6
6
  rust-version = "1.88.0"
7
+ edition = "2021"
7
8
 
8
9
  [workspace.dependencies]
9
10
  pyo3 = {version = "0.25", features = ["py-clone"] }
@@ -12,11 +13,12 @@ polars = { version = "0.52.0", features = ["simd", "nightly", "new_streaming", "
12
13
  polars-core = { version = "0.52.0" }
13
14
  rayon = "1.10.0"
14
15
  regex = "1.11.1"
15
- oxrdf = { version = "0.2.4" }
16
- oxrdfio = { version = "0.1.7" }
17
- oxttl = { version="0.1.7" }
16
+ oxrdf = { version = "0.3.2" }
17
+ oxrdfio = { version = "0.2.2" }
18
+ oxttl = { version= "0.2.2" }
19
+ oxjsonld = {version = "0.2.2"}
18
20
  oxiri = "0.2.11"
19
- sparesults = "0.2.4"
21
+ sparesults = "0.3.2"
20
22
  oxsdatatypes = "0.2.2"
21
23
  chrono = "0.4.41"
22
24
  chrono-tz = "0.10.3"
@@ -43,8 +45,6 @@ tracing-log = "0.2"
43
45
  itoa = "1.0.15"
44
46
  ryu = "1.0.20"
45
47
  #dev-dependencies
46
- rstest = "0.25.0"
47
- serial_test = "3.2.0"
48
48
  nohash-hasher = "0.2.0"
49
49
 
50
50
  [patch.crates-io]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maplib
3
- Version: 0.19.11
3
+ Version: 0.19.14
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: License :: OSI Approved :: Apache Software License
6
6
  Classifier: Programming Language :: Python :: 3 :: Only
@@ -1,5 +1,5 @@
1
1
  [package]
2
- name = "cimxml"
2
+ name = "cimxml_export"
3
3
  version = "0.1.0"
4
4
  edition = "2021"
5
5
  rust-version.workspace = true
@@ -0,0 +1,10 @@
1
+ [package]
2
+ name = "cimxml_import"
3
+ version = "0.1.0"
4
+ edition = "2024"
5
+ rust-version.workspace = true
6
+
7
+ [dependencies]
8
+ representation = {path = "../representation"}
9
+
10
+ oxrdf.workspace = true
@@ -0,0 +1,10 @@
1
+
2
+ use oxrdf::{GraphName, Subject, Term};
3
+ use std::collections::HashMap;
4
+ type MapType = HashMap<String, HashMap<String, (Vec<Subject>, Vec<Term>)>>;
5
+
6
+ pub fn remap_predicate_datatype(
7
+ _predicate_map: HashMap<GraphName, HashMap<String, MapType>>,
8
+ ) -> HashMap<GraphName, HashMap<String, MapType>> {
9
+ unimplemented!("Contact Data Treehouse to try!")
10
+ }
@@ -1,7 +1,7 @@
1
1
  [package]
2
2
  name = "file_io"
3
3
  version = "0.5.0"
4
- edition = "2021"
4
+ edition.workspace = true
5
5
  rust-version.workspace = true
6
6
 
7
7
  [dependencies]
@@ -1,11 +1,11 @@
1
1
  [package]
2
2
  name = "maplib"
3
3
  version = "0.6.0"
4
- edition = "2021"
4
+ edition.workspace = true
5
5
  rust-version.workspace = true
6
6
 
7
7
  [features]
8
- pyo3 = [ "dep:pyo3", "triplestore/pyo3", "shacl/pyo3", "datalog/pyo3", "cimxml/pyo3" ]
8
+ pyo3 = [ "dep:pyo3", "triplestore/pyo3", "shacl/pyo3", "datalog/pyo3", "cimxml_export/pyo3" ]
9
9
 
10
10
  [dependencies]
11
11
  templates = {path = "../templates"}
@@ -13,7 +13,7 @@ triplestore = { path = "../triplestore" }
13
13
  shacl = { path = "../shacl" }
14
14
  representation = { path = "../representation" }
15
15
  datalog = {path = "../datalog"}
16
- cimxml = {path = "../cimxml"}
16
+ cimxml_export = {path = "../cimxml_export"}
17
17
  query_processing = {path ="../query_processing"}
18
18
 
19
19
  rayon = { workspace = true }
@@ -25,14 +25,9 @@ polars = { workspace = true, features = [
25
25
  ] }
26
26
  chrono = { workspace = true }
27
27
  chrono-tz = { workspace = true }
28
- uuid = { workspace = true }
29
28
  thiserror = { workspace = true }
30
29
  oxrdfio = { workspace = true }
31
30
  tracing = { workspace = true }
32
31
 
33
32
  pyo3 = { workspace = true, optional = true }
34
33
 
35
-
36
- [dev-dependencies]
37
- rstest.workspace=true
38
- serial_test.workspace = true