maplib 0.19.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 (247) hide show
  1. maplib-0.19.13/Cargo.lock +4498 -0
  2. maplib-0.19.13/Cargo.toml +52 -0
  3. maplib-0.19.13/LICENSE +202 -0
  4. maplib-0.19.13/PKG-INFO +207 -0
  5. maplib-0.19.13/README.md +180 -0
  6. maplib-0.19.13/lib/cimxml_export/Cargo.toml +16 -0
  7. maplib-0.19.13/lib/cimxml_export/src/export.rs +43 -0
  8. maplib-0.19.13/lib/cimxml_export/src/lib.rs +1 -0
  9. maplib-0.19.13/lib/cimxml_import/Cargo.toml +10 -0
  10. maplib-0.19.13/lib/cimxml_import/src/lib.rs +10 -0
  11. maplib-0.19.13/lib/datalog/Cargo.toml +17 -0
  12. maplib-0.19.13/lib/datalog/src/ast.rs +8 -0
  13. maplib-0.19.13/lib/datalog/src/inference.rs +27 -0
  14. maplib-0.19.13/lib/datalog/src/lib.rs +4 -0
  15. maplib-0.19.13/lib/datalog/src/parser.rs +19 -0
  16. maplib-0.19.13/lib/datalog/src/python.rs +19 -0
  17. maplib-0.19.13/lib/file_io/Cargo.toml +9 -0
  18. maplib-0.19.13/lib/file_io/src/lib.rs +75 -0
  19. maplib-0.19.13/lib/fts/Cargo.toml +14 -0
  20. maplib-0.19.13/lib/fts/src/lib.rs +46 -0
  21. maplib-0.19.13/lib/maplib/Cargo.toml +33 -0
  22. maplib-0.19.13/lib/maplib/src/errors.rs +47 -0
  23. maplib-0.19.13/lib/maplib/src/lib.rs +5 -0
  24. maplib-0.19.13/lib/maplib/src/model/constant_terms.rs +171 -0
  25. maplib-0.19.13/lib/maplib/src/model/default.rs +162 -0
  26. maplib-0.19.13/lib/maplib/src/model/errors.rs +146 -0
  27. maplib-0.19.13/lib/maplib/src/model/expansion/validation.rs +403 -0
  28. maplib-0.19.13/lib/maplib/src/model/expansion.rs +878 -0
  29. maplib-0.19.13/lib/maplib/src/model.rs +584 -0
  30. maplib-0.19.13/lib/pydf_io/Cargo.toml +18 -0
  31. maplib-0.19.13/lib/pydf_io/LICENSE +201 -0
  32. maplib-0.19.13/lib/pydf_io/README.md +1 -0
  33. maplib-0.19.13/lib/pydf_io/licensing/POLARS_LICENSE +19 -0
  34. maplib-0.19.13/lib/pydf_io/src/lib.rs +2 -0
  35. maplib-0.19.13/lib/pydf_io/src/to_python.rs +144 -0
  36. maplib-0.19.13/lib/pydf_io/src/to_rust.rs +129 -0
  37. maplib-0.19.13/lib/query_processing/Cargo.toml +44 -0
  38. maplib-0.19.13/lib/query_processing/LICENSE +201 -0
  39. maplib-0.19.13/lib/query_processing/README.md +2 -0
  40. maplib-0.19.13/lib/query_processing/src/aggregates.rs +177 -0
  41. maplib-0.19.13/lib/query_processing/src/cats.rs +238 -0
  42. maplib-0.19.13/lib/query_processing/src/constants.rs +16 -0
  43. maplib-0.19.13/lib/query_processing/src/errors.rs +23 -0
  44. maplib-0.19.13/lib/query_processing/src/exists_helper.rs +99 -0
  45. maplib-0.19.13/lib/query_processing/src/expressions/comparisons.rs +167 -0
  46. maplib-0.19.13/lib/query_processing/src/expressions/functions.rs +2023 -0
  47. maplib-0.19.13/lib/query_processing/src/expressions/operations.rs +240 -0
  48. maplib-0.19.13/lib/query_processing/src/expressions.rs +722 -0
  49. maplib-0.19.13/lib/query_processing/src/find_query_variables.rs +363 -0
  50. maplib-0.19.13/lib/query_processing/src/graph_patterns/cats.rs +120 -0
  51. maplib-0.19.13/lib/query_processing/src/graph_patterns/group.rs +27 -0
  52. maplib-0.19.13/lib/query_processing/src/graph_patterns/join.rs +708 -0
  53. maplib-0.19.13/lib/query_processing/src/graph_patterns/order.rs +135 -0
  54. maplib-0.19.13/lib/query_processing/src/graph_patterns/union.rs +151 -0
  55. maplib-0.19.13/lib/query_processing/src/graph_patterns/values.rs +136 -0
  56. maplib-0.19.13/lib/query_processing/src/graph_patterns.rs +369 -0
  57. maplib-0.19.13/lib/query_processing/src/lib.rs +10 -0
  58. maplib-0.19.13/lib/query_processing/src/pushdowns.rs +487 -0
  59. maplib-0.19.13/lib/query_processing/src/type_constraints.rs +235 -0
  60. maplib-0.19.13/lib/report_mapping/Cargo.toml +9 -0
  61. maplib-0.19.13/lib/report_mapping/src/lib.rs +11 -0
  62. maplib-0.19.13/lib/representation/Cargo.toml +27 -0
  63. maplib-0.19.13/lib/representation/LICENSE +201 -0
  64. maplib-0.19.13/lib/representation/README.md +2 -0
  65. maplib-0.19.13/lib/representation/src/base_rdf_type.rs +365 -0
  66. maplib-0.19.13/lib/representation/src/cats/decode.rs +257 -0
  67. maplib-0.19.13/lib/representation/src/cats/encode.rs +315 -0
  68. maplib-0.19.13/lib/representation/src/cats/globalize.rs +73 -0
  69. maplib-0.19.13/lib/representation/src/cats/image.rs +211 -0
  70. maplib-0.19.13/lib/representation/src/cats/maps/in_memory.rs +619 -0
  71. maplib-0.19.13/lib/representation/src/cats/maps/on_disk.rs +71 -0
  72. maplib-0.19.13/lib/representation/src/cats/maps.rs +169 -0
  73. maplib-0.19.13/lib/representation/src/cats/re_encode.rs +232 -0
  74. maplib-0.19.13/lib/representation/src/cats.rs +302 -0
  75. maplib-0.19.13/lib/representation/src/constants.rs +33 -0
  76. maplib-0.19.13/lib/representation/src/dataset.rs +64 -0
  77. maplib-0.19.13/lib/representation/src/debug.rs +92 -0
  78. maplib-0.19.13/lib/representation/src/errors.rs +9 -0
  79. maplib-0.19.13/lib/representation/src/formatting.rs +244 -0
  80. maplib-0.19.13/lib/representation/src/lib.rs +85 -0
  81. maplib-0.19.13/lib/representation/src/literals.rs +20 -0
  82. maplib-0.19.13/lib/representation/src/multitype.rs +317 -0
  83. maplib-0.19.13/lib/representation/src/polars_to_rdf.rs +513 -0
  84. maplib-0.19.13/lib/representation/src/prefixes.rs +25 -0
  85. maplib-0.19.13/lib/representation/src/python.rs +557 -0
  86. maplib-0.19.13/lib/representation/src/query_context.rs +542 -0
  87. maplib-0.19.13/lib/representation/src/rdf_state.rs +176 -0
  88. maplib-0.19.13/lib/representation/src/rdf_to_polars.rs +473 -0
  89. maplib-0.19.13/lib/representation/src/rdf_type.rs +11 -0
  90. maplib-0.19.13/lib/representation/src/solution_mapping.rs +105 -0
  91. maplib-0.19.13/lib/representation/src/subtypes.rs +99 -0
  92. maplib-0.19.13/lib/shacl/Cargo.toml +16 -0
  93. maplib-0.19.13/lib/shacl/src/errors.rs +8 -0
  94. maplib-0.19.13/lib/shacl/src/lib.rs +101 -0
  95. maplib-0.19.13/lib/shacl/src/storage.rs +26 -0
  96. maplib-0.19.13/lib/spargebra/Cargo.toml +32 -0
  97. maplib-0.19.13/lib/spargebra/LICENSE +201 -0
  98. maplib-0.19.13/lib/spargebra/README.md +49 -0
  99. maplib-0.19.13/lib/spargebra/src/algebra.rs +1419 -0
  100. maplib-0.19.13/lib/spargebra/src/lib.rs +18 -0
  101. maplib-0.19.13/lib/spargebra/src/parser.rs +2186 -0
  102. maplib-0.19.13/lib/spargebra/src/query.rs +305 -0
  103. maplib-0.19.13/lib/spargebra/src/query_context.rs +292 -0
  104. maplib-0.19.13/lib/spargebra/src/remove_sugar.rs +997 -0
  105. maplib-0.19.13/lib/spargebra/src/term.rs +1012 -0
  106. maplib-0.19.13/lib/spargebra/src/treehouse.rs +171 -0
  107. maplib-0.19.13/lib/spargebra/src/update.rs +349 -0
  108. maplib-0.19.13/lib/templates/Cargo.toml +18 -0
  109. maplib-0.19.13/lib/templates/src/ast.rs +595 -0
  110. maplib-0.19.13/lib/templates/src/compatible.rs +23 -0
  111. maplib-0.19.13/lib/templates/src/dataset/errors.rs +49 -0
  112. maplib-0.19.13/lib/templates/src/dataset.rs +460 -0
  113. maplib-0.19.13/lib/templates/src/document.rs +23 -0
  114. maplib-0.19.13/lib/templates/src/lib.rs +50 -0
  115. maplib-0.19.13/lib/templates/src/parsing.rs +473 -0
  116. maplib-0.19.13/lib/templates/src/python/owl.rs +413 -0
  117. maplib-0.19.13/lib/templates/src/python/rdf.rs +105 -0
  118. maplib-0.19.13/lib/templates/src/python/rdfs.rs +95 -0
  119. maplib-0.19.13/lib/templates/src/python/xsd.rs +219 -0
  120. maplib-0.19.13/lib/templates/src/python.rs +446 -0
  121. maplib-0.19.13/lib/templates/src/subtypes_ext.rs +11 -0
  122. maplib-0.19.13/lib/triplestore/Cargo.toml +42 -0
  123. maplib-0.19.13/lib/triplestore/src/cats.rs +20 -0
  124. maplib-0.19.13/lib/triplestore/src/dblf.rs +713 -0
  125. maplib-0.19.13/lib/triplestore/src/errors.rs +60 -0
  126. maplib-0.19.13/lib/triplestore/src/io_funcs.rs +10 -0
  127. maplib-0.19.13/lib/triplestore/src/lib.rs +844 -0
  128. maplib-0.19.13/lib/triplestore/src/map_json.rs +357 -0
  129. maplib-0.19.13/lib/triplestore/src/native_parquet_write.rs +63 -0
  130. maplib-0.19.13/lib/triplestore/src/query_solutions.rs +252 -0
  131. maplib-0.19.13/lib/triplestore/src/rdfs_inferencing.rs +46 -0
  132. maplib-0.19.13/lib/triplestore/src/sparql/debug.rs +340 -0
  133. maplib-0.19.13/lib/triplestore/src/sparql/delete.rs +305 -0
  134. maplib-0.19.13/lib/triplestore/src/sparql/errors.rs +39 -0
  135. maplib-0.19.13/lib/triplestore/src/sparql/insert.rs +145 -0
  136. maplib-0.19.13/lib/triplestore/src/sparql/lazy_aggregate.rs +109 -0
  137. maplib-0.19.13/lib/triplestore/src/sparql/lazy_expressions.rs +575 -0
  138. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +38 -0
  139. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +66 -0
  140. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +59 -0
  141. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/graph.rs +45 -0
  142. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +108 -0
  143. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +340 -0
  144. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +100 -0
  145. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +52 -0
  146. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +72 -0
  147. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +873 -0
  148. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +61 -0
  149. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +67 -0
  150. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +283 -0
  151. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +124 -0
  152. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +59 -0
  153. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +41 -0
  154. maplib-0.19.13/lib/triplestore/src/sparql/lazy_graph_patterns.rs +313 -0
  155. maplib-0.19.13/lib/triplestore/src/sparql/lazy_order.rs +55 -0
  156. maplib-0.19.13/lib/triplestore/src/sparql/rewrite/rewrite_cse.rs +306 -0
  157. maplib-0.19.13/lib/triplestore/src/sparql/rewrite/rewrite_pushdown.rs +309 -0
  158. maplib-0.19.13/lib/triplestore/src/sparql/rewrite.rs +58 -0
  159. maplib-0.19.13/lib/triplestore/src/sparql.rs +754 -0
  160. maplib-0.19.13/lib/triplestore/src/storage/deduplication.rs +138 -0
  161. maplib-0.19.13/lib/triplestore/src/storage/so_index.rs +94 -0
  162. maplib-0.19.13/lib/triplestore/src/storage.rs +1308 -0
  163. maplib-0.19.13/lib/triplestore/src/triples_read.rs +523 -0
  164. maplib-0.19.13/lib/triplestore/src/triples_write/fast_ntriples.rs +144 -0
  165. maplib-0.19.13/lib/triplestore/src/triples_write/pretty_turtle.rs +1033 -0
  166. maplib-0.19.13/lib/triplestore/src/triples_write/serializers.rs +405 -0
  167. maplib-0.19.13/lib/triplestore/src/triples_write.rs +188 -0
  168. maplib-0.19.13/lib/utils/Cargo.toml +15 -0
  169. maplib-0.19.13/lib/utils/src/lib.rs +1 -0
  170. maplib-0.19.13/lib/utils/src/polars.rs +118 -0
  171. maplib-0.19.13/maplib/__init__.py +90 -0
  172. maplib-0.19.13/maplib/__init__.pyi +1072 -0
  173. maplib-0.19.13/maplib/adding_triples.py +29 -0
  174. maplib-0.19.13/maplib/py.typed +0 -0
  175. maplib-0.19.13/maplib/template_generator/__init__.py +1 -0
  176. maplib-0.19.13/maplib/template_generator/generate.py +234 -0
  177. maplib-0.19.13/maplib/template_generator/ordering.py +40 -0
  178. maplib-0.19.13/py_maplib/Cargo.toml +50 -0
  179. maplib-0.19.13/py_maplib/LICENSE +202 -0
  180. maplib-0.19.13/py_maplib/README.md +180 -0
  181. maplib-0.19.13/py_maplib/maplib/.gitignore +1 -0
  182. maplib-0.19.13/py_maplib/maplib/__init__.py +90 -0
  183. maplib-0.19.13/py_maplib/maplib/__init__.pyi +1072 -0
  184. maplib-0.19.13/py_maplib/maplib/adding_triples.py +29 -0
  185. maplib-0.19.13/py_maplib/maplib/py.typed +0 -0
  186. maplib-0.19.13/py_maplib/maplib/template_generator/__init__.py +1 -0
  187. maplib-0.19.13/py_maplib/maplib/template_generator/generate.py +234 -0
  188. maplib-0.19.13/py_maplib/maplib/template_generator/ordering.py +40 -0
  189. maplib-0.19.13/py_maplib/src/error.rs +54 -0
  190. maplib-0.19.13/py_maplib/src/lib.rs +1826 -0
  191. maplib-0.19.13/py_maplib/src/shacl.rs +143 -0
  192. maplib-0.19.13/py_maplib/tests/.gitignore +11 -0
  193. maplib-0.19.13/py_maplib/tests/__init__.py +0 -0
  194. maplib-0.19.13/py_maplib/tests/out.ttl +1 -0
  195. maplib-0.19.13/py_maplib/tests/requirements.txt +2 -0
  196. maplib-0.19.13/py_maplib/tests/test_basics.py +918 -0
  197. maplib-0.19.13/py_maplib/tests/test_blank_nodes_multi.py +295 -0
  198. maplib-0.19.13/py_maplib/tests/test_data_validation.py +711 -0
  199. maplib-0.19.13/py_maplib/tests/test_exceptions.py +27 -0
  200. maplib-0.19.13/py_maplib/tests/test_integration.py +765 -0
  201. maplib-0.19.13/py_maplib/tests/test_json.py +145 -0
  202. maplib-0.19.13/py_maplib/tests/test_multi_expressions.py +1417 -0
  203. maplib-0.19.13/py_maplib/tests/test_named_graphs.py +134 -0
  204. maplib-0.19.13/py_maplib/tests/test_pizza_example.py +288 -0
  205. maplib-0.19.13/py_maplib/tests/test_pretty_turtle.py +78 -0
  206. maplib-0.19.13/py_maplib/tests/test_programmatic_pizza_example.py +150 -0
  207. maplib-0.19.13/py_maplib/tests/test_rdf_parser.py +29 -0
  208. maplib-0.19.13/py_maplib/tests/test_read_write.py +122 -0
  209. maplib-0.19.13/py_maplib/tests/test_stottr.py +975 -0
  210. maplib-0.19.13/py_maplib/tests/test_validate_iris.py +74 -0
  211. maplib-0.19.13/py_maplib/tests/testdata/expected_easy_case.ttl +4 -0
  212. maplib-0.19.13/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +2 -0
  213. maplib-0.19.13/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +41 -0
  214. maplib-0.19.13/py_maplib/tests/testdata/iterated_property_path_query.csv +161 -0
  215. maplib-0.19.13/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +161 -0
  216. maplib-0.19.13/py_maplib/tests/testdata/jsons/1.json +22 -0
  217. maplib-0.19.13/py_maplib/tests/testdata/jsons/2.json +27 -0
  218. maplib-0.19.13/py_maplib/tests/testdata/jsons/3.json +89 -0
  219. maplib-0.19.13/py_maplib/tests/testdata/larger_ordered_query.csv +41 -0
  220. maplib-0.19.13/py_maplib/tests/testdata/larger_query.csv +2 -0
  221. maplib-0.19.13/py_maplib/tests/testdata/multi_concat.csv +26 -0
  222. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_join_query.csv +3 -0
  223. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +3 -0
  224. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +3 -0
  225. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_query.csv +9 -0
  226. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +9 -0
  227. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_union_query.csv +5 -0
  228. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  229. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +5 -0
  230. maplib-0.19.13/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +5 -0
  231. maplib-0.19.13/py_maplib/tests/testdata/multi_many_comp.csv +7 -0
  232. maplib-0.19.13/py_maplib/tests/testdata/property_path_query.csv +41 -0
  233. maplib-0.19.13/py_maplib/tests/testdata/rdf_parser/date_panic.nt +2 -0
  234. maplib-0.19.13/py_maplib/tests/testdata/read_lists.ttl +10 -0
  235. maplib-0.19.13/py_maplib/tests/testdata/read_ntriples.csv +9 -0
  236. maplib-0.19.13/py_maplib/tests/testdata/read_ntriples.nt +8 -0
  237. maplib-0.19.13/py_maplib/tests/testdata/read_ntriples2.csv +9 -0
  238. maplib-0.19.13/py_maplib/tests/testdata/simple_construct_query_nothing.csv +6 -0
  239. maplib-0.19.13/py_maplib/tests/testdata/simple_construct_query_something.csv +165 -0
  240. maplib-0.19.13/py_maplib/tests/testdata/simple_insert_query_nothing.csv +6 -0
  241. maplib-0.19.13/py_maplib/tests/testdata/simple_insert_query_something.csv +165 -0
  242. maplib-0.19.13/py_maplib/tests/testdata/simple_property_path_query.csv +41 -0
  243. maplib-0.19.13/py_maplib/tests/testdata/simple_query.csv +165 -0
  244. maplib-0.19.13/py_maplib/tests/testdata/stringfuncs.csv +14 -0
  245. maplib-0.19.13/py_maplib/tests/testdata/templates.ttl +10 -0
  246. maplib-0.19.13/py_maplib/tests/testdata/write_turtle_newlines_bug.nt +8 -0
  247. maplib-0.19.13/pyproject.toml +36 -0
@@ -0,0 +1,4498 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom 0.3.3",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.4"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "alga"
44
+ version = "0.9.3"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
47
+ dependencies = [
48
+ "approx",
49
+ "num-complex 0.2.4",
50
+ "num-traits",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "alloc-no-stdlib"
55
+ version = "2.0.4"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
58
+
59
+ [[package]]
60
+ name = "alloc-stdlib"
61
+ version = "0.2.2"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
64
+ dependencies = [
65
+ "alloc-no-stdlib",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "allocator-api2"
70
+ version = "0.2.21"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
73
+
74
+ [[package]]
75
+ name = "android_system_properties"
76
+ version = "0.1.5"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
79
+ dependencies = [
80
+ "libc",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "approx"
85
+ version = "0.3.2"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
88
+ dependencies = [
89
+ "num-traits",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "argminmax"
94
+ version = "0.6.3"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
97
+ dependencies = [
98
+ "num-traits",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "array-init-cursor"
103
+ version = "0.2.1"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
106
+
107
+ [[package]]
108
+ name = "arrayref"
109
+ version = "0.3.9"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
112
+
113
+ [[package]]
114
+ name = "arrayvec"
115
+ version = "0.7.6"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
118
+
119
+ [[package]]
120
+ name = "async-channel"
121
+ version = "2.5.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
124
+ dependencies = [
125
+ "concurrent-queue",
126
+ "event-listener-strategy",
127
+ "futures-core",
128
+ "pin-project-lite",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "async-stream"
133
+ version = "0.3.6"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
136
+ dependencies = [
137
+ "async-stream-impl",
138
+ "futures-core",
139
+ "pin-project-lite",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "async-stream-impl"
144
+ version = "0.3.6"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
147
+ dependencies = [
148
+ "proc-macro2",
149
+ "quote",
150
+ "syn",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "async-trait"
155
+ version = "0.1.89"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
158
+ dependencies = [
159
+ "proc-macro2",
160
+ "quote",
161
+ "syn",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "atoi_simd"
166
+ version = "0.16.1"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
169
+ dependencies = [
170
+ "debug_unsafe",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "atomic-waker"
175
+ version = "1.1.2"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
178
+
179
+ [[package]]
180
+ name = "autocfg"
181
+ version = "1.5.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
184
+
185
+ [[package]]
186
+ name = "backtrace"
187
+ version = "0.3.76"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
190
+ dependencies = [
191
+ "addr2line",
192
+ "cfg-if",
193
+ "libc",
194
+ "miniz_oxide",
195
+ "object",
196
+ "rustc-demangle",
197
+ "windows-link",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "base64"
202
+ version = "0.22.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
205
+
206
+ [[package]]
207
+ name = "bincode"
208
+ version = "2.0.1"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
211
+ dependencies = [
212
+ "bincode_derive",
213
+ "serde",
214
+ "unty",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "bincode_derive"
219
+ version = "2.0.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
222
+ dependencies = [
223
+ "virtue",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "bitflags"
228
+ version = "2.9.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
231
+ dependencies = [
232
+ "serde",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "blake3"
237
+ version = "1.8.2"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
240
+ dependencies = [
241
+ "arrayref",
242
+ "arrayvec",
243
+ "cc",
244
+ "cfg-if",
245
+ "constant_time_eq",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "block-buffer"
250
+ version = "0.10.4"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
253
+ dependencies = [
254
+ "generic-array",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "boxcar"
259
+ version = "0.2.14"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
262
+
263
+ [[package]]
264
+ name = "brotli"
265
+ version = "8.0.2"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
268
+ dependencies = [
269
+ "alloc-no-stdlib",
270
+ "alloc-stdlib",
271
+ "brotli-decompressor",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "brotli-decompressor"
276
+ version = "5.0.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
279
+ dependencies = [
280
+ "alloc-no-stdlib",
281
+ "alloc-stdlib",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "bumpalo"
286
+ version = "3.19.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
289
+
290
+ [[package]]
291
+ name = "bytemuck"
292
+ version = "1.24.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
295
+ dependencies = [
296
+ "bytemuck_derive",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "bytemuck_derive"
301
+ version = "1.10.2"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
304
+ dependencies = [
305
+ "proc-macro2",
306
+ "quote",
307
+ "syn",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "byteorder"
312
+ version = "1.5.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
315
+
316
+ [[package]]
317
+ name = "bytes"
318
+ version = "1.10.1"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
321
+ dependencies = [
322
+ "serde",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "castaway"
327
+ version = "0.2.4"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
330
+ dependencies = [
331
+ "rustversion",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "cc"
336
+ version = "1.2.41"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
339
+ dependencies = [
340
+ "find-msvc-tools",
341
+ "jobserver",
342
+ "libc",
343
+ "shlex",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "cfg-if"
348
+ version = "1.0.3"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
351
+
352
+ [[package]]
353
+ name = "cfg_aliases"
354
+ version = "0.2.1"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
357
+
358
+ [[package]]
359
+ name = "chrono"
360
+ version = "0.4.42"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
363
+ dependencies = [
364
+ "iana-time-zone",
365
+ "js-sys",
366
+ "num-traits",
367
+ "serde",
368
+ "wasm-bindgen",
369
+ "windows-link",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "chrono-tz"
374
+ version = "0.10.4"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
377
+ dependencies = [
378
+ "chrono",
379
+ "phf",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "cimxml_export"
384
+ version = "0.1.0"
385
+ dependencies = [
386
+ "oxrdf",
387
+ "pyo3",
388
+ "representation",
389
+ "thiserror",
390
+ "triplestore",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "cimxml_import"
395
+ version = "0.1.0"
396
+ dependencies = [
397
+ "oxrdf",
398
+ "representation",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "comfy-table"
403
+ version = "7.2.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
406
+ dependencies = [
407
+ "crossterm",
408
+ "unicode-segmentation",
409
+ "unicode-width",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "compact_str"
414
+ version = "0.9.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
417
+ dependencies = [
418
+ "castaway",
419
+ "cfg-if",
420
+ "itoa",
421
+ "rustversion",
422
+ "ryu",
423
+ "serde",
424
+ "static_assertions",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "concurrent-queue"
429
+ version = "2.5.0"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
432
+ dependencies = [
433
+ "crossbeam-utils",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "constant_time_eq"
438
+ version = "0.3.1"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
441
+
442
+ [[package]]
443
+ name = "core-foundation"
444
+ version = "0.10.1"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
447
+ dependencies = [
448
+ "core-foundation-sys",
449
+ "libc",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "core-foundation-sys"
454
+ version = "0.8.7"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
457
+
458
+ [[package]]
459
+ name = "cpufeatures"
460
+ version = "0.2.17"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
463
+ dependencies = [
464
+ "libc",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "crc32fast"
469
+ version = "1.5.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
472
+ dependencies = [
473
+ "cfg-if",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "crossbeam-channel"
478
+ version = "0.5.15"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
481
+ dependencies = [
482
+ "crossbeam-utils",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "crossbeam-deque"
487
+ version = "0.8.6"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
490
+ dependencies = [
491
+ "crossbeam-epoch",
492
+ "crossbeam-utils",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "crossbeam-epoch"
497
+ version = "0.9.18"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
500
+ dependencies = [
501
+ "crossbeam-utils",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "crossbeam-queue"
506
+ version = "0.3.12"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
509
+ dependencies = [
510
+ "crossbeam-utils",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "crossbeam-utils"
515
+ version = "0.8.21"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
518
+
519
+ [[package]]
520
+ name = "crossterm"
521
+ version = "0.29.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
524
+ dependencies = [
525
+ "bitflags",
526
+ "crossterm_winapi",
527
+ "document-features",
528
+ "parking_lot",
529
+ "rustix",
530
+ "winapi",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "crossterm_winapi"
535
+ version = "0.9.1"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
538
+ dependencies = [
539
+ "winapi",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "crypto-common"
544
+ version = "0.1.6"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
547
+ dependencies = [
548
+ "generic-array",
549
+ "typenum",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "datalog"
554
+ version = "0.1.0"
555
+ dependencies = [
556
+ "oxrdf",
557
+ "pyo3",
558
+ "representation",
559
+ "thiserror",
560
+ "triplestore",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "debug_unsafe"
565
+ version = "0.1.3"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
568
+
569
+ [[package]]
570
+ name = "digest"
571
+ version = "0.10.7"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
574
+ dependencies = [
575
+ "block-buffer",
576
+ "crypto-common",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "displaydoc"
581
+ version = "0.2.5"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
584
+ dependencies = [
585
+ "proc-macro2",
586
+ "quote",
587
+ "syn",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "document-features"
592
+ version = "0.2.11"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
595
+ dependencies = [
596
+ "litrs",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "dyn-clone"
601
+ version = "1.0.20"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
604
+
605
+ [[package]]
606
+ name = "either"
607
+ version = "1.15.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
610
+
611
+ [[package]]
612
+ name = "equivalent"
613
+ version = "1.0.2"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
616
+
617
+ [[package]]
618
+ name = "errno"
619
+ version = "0.3.14"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
622
+ dependencies = [
623
+ "libc",
624
+ "windows-sys 0.61.2",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "ethnum"
629
+ version = "1.5.2"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
632
+
633
+ [[package]]
634
+ name = "event-listener"
635
+ version = "5.4.1"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
638
+ dependencies = [
639
+ "concurrent-queue",
640
+ "parking",
641
+ "pin-project-lite",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "event-listener-strategy"
646
+ version = "0.5.4"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
649
+ dependencies = [
650
+ "event-listener",
651
+ "pin-project-lite",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "fallible-streaming-iterator"
656
+ version = "0.1.9"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
659
+
660
+ [[package]]
661
+ name = "fast-float2"
662
+ version = "0.2.3"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
665
+
666
+ [[package]]
667
+ name = "file_io"
668
+ version = "0.5.0"
669
+ dependencies = [
670
+ "polars",
671
+ "thiserror",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "find-msvc-tools"
676
+ version = "0.1.4"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
679
+
680
+ [[package]]
681
+ name = "flate2"
682
+ version = "1.1.4"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9"
685
+ dependencies = [
686
+ "crc32fast",
687
+ "libz-rs-sys",
688
+ "miniz_oxide",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "float-cmp"
693
+ version = "0.10.0"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
696
+ dependencies = [
697
+ "num-traits",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "fnv"
702
+ version = "1.0.7"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
705
+
706
+ [[package]]
707
+ name = "foldhash"
708
+ version = "0.1.5"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
711
+
712
+ [[package]]
713
+ name = "foldhash"
714
+ version = "0.2.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
717
+
718
+ [[package]]
719
+ name = "form_urlencoded"
720
+ version = "1.2.2"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
723
+ dependencies = [
724
+ "percent-encoding",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "fs4"
729
+ version = "0.13.1"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
732
+ dependencies = [
733
+ "rustix",
734
+ "windows-sys 0.59.0",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "fts"
739
+ version = "0.1.0"
740
+ dependencies = [
741
+ "oxrdf",
742
+ "polars",
743
+ "query_processing",
744
+ "representation",
745
+ "spargebra",
746
+ "thiserror",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "fundu"
751
+ version = "2.0.1"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "2ce12752fc64f35be3d53e0a57017cd30970f0cffd73f62c791837d8845badbd"
754
+ dependencies = [
755
+ "fundu-core",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "fundu-core"
760
+ version = "0.3.1"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "e463452e2d8b7600d38dcea1ed819773a57f0d710691bfc78db3961bd3f4c3ba"
763
+ dependencies = [
764
+ "chrono",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "futures"
769
+ version = "0.3.31"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
772
+ dependencies = [
773
+ "futures-channel",
774
+ "futures-core",
775
+ "futures-executor",
776
+ "futures-io",
777
+ "futures-sink",
778
+ "futures-task",
779
+ "futures-util",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "futures-channel"
784
+ version = "0.3.31"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
787
+ dependencies = [
788
+ "futures-core",
789
+ "futures-sink",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "futures-core"
794
+ version = "0.3.31"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
797
+
798
+ [[package]]
799
+ name = "futures-executor"
800
+ version = "0.3.31"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
803
+ dependencies = [
804
+ "futures-core",
805
+ "futures-task",
806
+ "futures-util",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "futures-io"
811
+ version = "0.3.31"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
814
+
815
+ [[package]]
816
+ name = "futures-macro"
817
+ version = "0.3.31"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
820
+ dependencies = [
821
+ "proc-macro2",
822
+ "quote",
823
+ "syn",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "futures-sink"
828
+ version = "0.3.31"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
831
+
832
+ [[package]]
833
+ name = "futures-task"
834
+ version = "0.3.31"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
837
+
838
+ [[package]]
839
+ name = "futures-timer"
840
+ version = "3.0.3"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
843
+
844
+ [[package]]
845
+ name = "futures-util"
846
+ version = "0.3.31"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
849
+ dependencies = [
850
+ "futures-channel",
851
+ "futures-core",
852
+ "futures-io",
853
+ "futures-macro",
854
+ "futures-sink",
855
+ "futures-task",
856
+ "memchr",
857
+ "pin-project-lite",
858
+ "pin-utils",
859
+ "slab",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "generic-array"
864
+ version = "0.14.7"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
867
+ dependencies = [
868
+ "typenum",
869
+ "version_check",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "getrandom"
874
+ version = "0.2.16"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
877
+ dependencies = [
878
+ "cfg-if",
879
+ "js-sys",
880
+ "libc",
881
+ "wasi 0.11.1+wasi-snapshot-preview1",
882
+ "wasm-bindgen",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "getrandom"
887
+ version = "0.3.3"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
890
+ dependencies = [
891
+ "cfg-if",
892
+ "js-sys",
893
+ "libc",
894
+ "r-efi",
895
+ "wasi 0.14.7+wasi-0.2.4",
896
+ "wasm-bindgen",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "gimli"
901
+ version = "0.32.3"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
904
+
905
+ [[package]]
906
+ name = "glob"
907
+ version = "0.3.3"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
910
+
911
+ [[package]]
912
+ name = "h2"
913
+ version = "0.4.12"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
916
+ dependencies = [
917
+ "atomic-waker",
918
+ "bytes",
919
+ "fnv",
920
+ "futures-core",
921
+ "futures-sink",
922
+ "http",
923
+ "indexmap",
924
+ "slab",
925
+ "tokio",
926
+ "tokio-util",
927
+ "tracing",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "halfbrown"
932
+ version = "0.4.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
935
+ dependencies = [
936
+ "hashbrown 0.16.0",
937
+ "serde",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "hashbrown"
942
+ version = "0.15.5"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
945
+ dependencies = [
946
+ "allocator-api2",
947
+ "equivalent",
948
+ "foldhash 0.1.5",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "hashbrown"
953
+ version = "0.16.0"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
956
+ dependencies = [
957
+ "allocator-api2",
958
+ "equivalent",
959
+ "foldhash 0.2.0",
960
+ "rayon",
961
+ "serde",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "heck"
966
+ version = "0.5.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
969
+
970
+ [[package]]
971
+ name = "hermit-abi"
972
+ version = "0.5.2"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
975
+
976
+ [[package]]
977
+ name = "hex"
978
+ version = "0.4.3"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
981
+
982
+ [[package]]
983
+ name = "home"
984
+ version = "0.5.11"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
987
+ dependencies = [
988
+ "windows-sys 0.59.0",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "http"
993
+ version = "1.3.1"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
996
+ dependencies = [
997
+ "bytes",
998
+ "fnv",
999
+ "itoa",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "http-body"
1004
+ version = "1.0.1"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1007
+ dependencies = [
1008
+ "bytes",
1009
+ "http",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "http-body-util"
1014
+ version = "0.1.3"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1017
+ dependencies = [
1018
+ "bytes",
1019
+ "futures-core",
1020
+ "http",
1021
+ "http-body",
1022
+ "pin-project-lite",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "httparse"
1027
+ version = "1.10.1"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1030
+
1031
+ [[package]]
1032
+ name = "humantime"
1033
+ version = "2.3.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1036
+
1037
+ [[package]]
1038
+ name = "hyper"
1039
+ version = "1.7.0"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1042
+ dependencies = [
1043
+ "atomic-waker",
1044
+ "bytes",
1045
+ "futures-channel",
1046
+ "futures-core",
1047
+ "h2",
1048
+ "http",
1049
+ "http-body",
1050
+ "httparse",
1051
+ "itoa",
1052
+ "pin-project-lite",
1053
+ "pin-utils",
1054
+ "smallvec",
1055
+ "tokio",
1056
+ "want",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "hyper-rustls"
1061
+ version = "0.27.7"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1064
+ dependencies = [
1065
+ "http",
1066
+ "hyper",
1067
+ "hyper-util",
1068
+ "rustls",
1069
+ "rustls-native-certs",
1070
+ "rustls-pki-types",
1071
+ "tokio",
1072
+ "tokio-rustls",
1073
+ "tower-service",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "hyper-util"
1078
+ version = "0.1.17"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1081
+ dependencies = [
1082
+ "base64",
1083
+ "bytes",
1084
+ "futures-channel",
1085
+ "futures-core",
1086
+ "futures-util",
1087
+ "http",
1088
+ "http-body",
1089
+ "hyper",
1090
+ "ipnet",
1091
+ "libc",
1092
+ "percent-encoding",
1093
+ "pin-project-lite",
1094
+ "socket2",
1095
+ "tokio",
1096
+ "tower-service",
1097
+ "tracing",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "iana-time-zone"
1102
+ version = "0.1.64"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1105
+ dependencies = [
1106
+ "android_system_properties",
1107
+ "core-foundation-sys",
1108
+ "iana-time-zone-haiku",
1109
+ "js-sys",
1110
+ "log",
1111
+ "wasm-bindgen",
1112
+ "windows-core",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "iana-time-zone-haiku"
1117
+ version = "0.1.2"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1120
+ dependencies = [
1121
+ "cc",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "icu_collections"
1126
+ version = "2.0.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1129
+ dependencies = [
1130
+ "displaydoc",
1131
+ "potential_utf",
1132
+ "yoke",
1133
+ "zerofrom",
1134
+ "zerovec",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "icu_locale_core"
1139
+ version = "2.0.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1142
+ dependencies = [
1143
+ "displaydoc",
1144
+ "litemap",
1145
+ "tinystr",
1146
+ "writeable",
1147
+ "zerovec",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "icu_normalizer"
1152
+ version = "2.0.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1155
+ dependencies = [
1156
+ "displaydoc",
1157
+ "icu_collections",
1158
+ "icu_normalizer_data",
1159
+ "icu_properties",
1160
+ "icu_provider",
1161
+ "smallvec",
1162
+ "zerovec",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "icu_normalizer_data"
1167
+ version = "2.0.0"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1170
+
1171
+ [[package]]
1172
+ name = "icu_properties"
1173
+ version = "2.0.1"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1176
+ dependencies = [
1177
+ "displaydoc",
1178
+ "icu_collections",
1179
+ "icu_locale_core",
1180
+ "icu_properties_data",
1181
+ "icu_provider",
1182
+ "potential_utf",
1183
+ "zerotrie",
1184
+ "zerovec",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "icu_properties_data"
1189
+ version = "2.0.1"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1192
+
1193
+ [[package]]
1194
+ name = "icu_provider"
1195
+ version = "2.0.0"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1198
+ dependencies = [
1199
+ "displaydoc",
1200
+ "icu_locale_core",
1201
+ "stable_deref_trait",
1202
+ "tinystr",
1203
+ "writeable",
1204
+ "yoke",
1205
+ "zerofrom",
1206
+ "zerotrie",
1207
+ "zerovec",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "idna"
1212
+ version = "1.1.0"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1215
+ dependencies = [
1216
+ "idna_adapter",
1217
+ "smallvec",
1218
+ "utf8_iter",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "idna_adapter"
1223
+ version = "1.2.1"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1226
+ dependencies = [
1227
+ "icu_normalizer",
1228
+ "icu_properties",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "indexmap"
1233
+ version = "2.12.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1236
+ dependencies = [
1237
+ "equivalent",
1238
+ "hashbrown 0.16.0",
1239
+ "serde",
1240
+ "serde_core",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "indoc"
1245
+ version = "2.0.6"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1248
+
1249
+ [[package]]
1250
+ name = "io-uring"
1251
+ version = "0.7.10"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
1254
+ dependencies = [
1255
+ "bitflags",
1256
+ "cfg-if",
1257
+ "libc",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "ipnet"
1262
+ version = "2.11.0"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1265
+
1266
+ [[package]]
1267
+ name = "iri-string"
1268
+ version = "0.7.8"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1271
+ dependencies = [
1272
+ "memchr",
1273
+ "serde",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "itertools"
1278
+ version = "0.14.0"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1281
+ dependencies = [
1282
+ "either",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "itoa"
1287
+ version = "1.0.15"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1290
+
1291
+ [[package]]
1292
+ name = "jobserver"
1293
+ version = "0.1.34"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1296
+ dependencies = [
1297
+ "getrandom 0.3.3",
1298
+ "libc",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "js-sys"
1303
+ version = "0.3.81"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
1306
+ dependencies = [
1307
+ "once_cell",
1308
+ "wasm-bindgen",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "json-event-parser"
1313
+ version = "0.2.2"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
1316
+
1317
+ [[package]]
1318
+ name = "lazy_static"
1319
+ version = "1.5.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1322
+
1323
+ [[package]]
1324
+ name = "libc"
1325
+ version = "0.2.177"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1328
+
1329
+ [[package]]
1330
+ name = "libm"
1331
+ version = "0.2.15"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1334
+
1335
+ [[package]]
1336
+ name = "libmimalloc-sys"
1337
+ version = "0.1.44"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
1340
+ dependencies = [
1341
+ "cc",
1342
+ "libc",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "libz-rs-sys"
1347
+ version = "0.5.2"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
1350
+ dependencies = [
1351
+ "zlib-rs",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "linux-raw-sys"
1356
+ version = "0.11.0"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1359
+
1360
+ [[package]]
1361
+ name = "litemap"
1362
+ version = "0.8.0"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1365
+
1366
+ [[package]]
1367
+ name = "litrs"
1368
+ version = "0.4.2"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed"
1371
+
1372
+ [[package]]
1373
+ name = "lock_api"
1374
+ version = "0.4.14"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1377
+ dependencies = [
1378
+ "scopeguard",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "log"
1383
+ version = "0.4.28"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1386
+
1387
+ [[package]]
1388
+ name = "lru-slab"
1389
+ version = "0.1.2"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1392
+
1393
+ [[package]]
1394
+ name = "lz4"
1395
+ version = "1.28.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1398
+ dependencies = [
1399
+ "lz4-sys",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "lz4-sys"
1404
+ version = "1.11.1+lz4-1.10.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1407
+ dependencies = [
1408
+ "cc",
1409
+ "libc",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "maplib"
1414
+ version = "0.6.0"
1415
+ dependencies = [
1416
+ "chrono",
1417
+ "chrono-tz",
1418
+ "cimxml_export",
1419
+ "datalog",
1420
+ "oxiri",
1421
+ "oxrdf",
1422
+ "oxrdfio",
1423
+ "polars",
1424
+ "pyo3",
1425
+ "query_processing",
1426
+ "rayon",
1427
+ "representation",
1428
+ "shacl",
1429
+ "templates",
1430
+ "thiserror",
1431
+ "tracing",
1432
+ "triplestore",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "matchers"
1437
+ version = "0.2.0"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1440
+ dependencies = [
1441
+ "regex-automata",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "matrixmultiply"
1446
+ version = "0.3.10"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1449
+ dependencies = [
1450
+ "autocfg",
1451
+ "rawpointer",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "memchr"
1456
+ version = "2.7.6"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1459
+
1460
+ [[package]]
1461
+ name = "memmap2"
1462
+ version = "0.9.8"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
1465
+ dependencies = [
1466
+ "libc",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "memoffset"
1471
+ version = "0.9.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1474
+ dependencies = [
1475
+ "autocfg",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "mimalloc"
1480
+ version = "0.1.48"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
1483
+ dependencies = [
1484
+ "libmimalloc-sys",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "miniz_oxide"
1489
+ version = "0.8.9"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1492
+ dependencies = [
1493
+ "adler2",
1494
+ "simd-adler32",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "mio"
1499
+ version = "1.0.4"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1502
+ dependencies = [
1503
+ "libc",
1504
+ "wasi 0.11.1+wasi-snapshot-preview1",
1505
+ "windows-sys 0.59.0",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "ndarray"
1510
+ version = "0.16.1"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1513
+ dependencies = [
1514
+ "matrixmultiply",
1515
+ "num-complex 0.4.6",
1516
+ "num-integer",
1517
+ "num-traits",
1518
+ "portable-atomic",
1519
+ "portable-atomic-util",
1520
+ "rawpointer",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "nohash-hasher"
1525
+ version = "0.2.0"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1528
+
1529
+ [[package]]
1530
+ name = "now"
1531
+ version = "0.1.3"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1534
+ dependencies = [
1535
+ "chrono",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "nu-ansi-term"
1540
+ version = "0.50.3"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1543
+ dependencies = [
1544
+ "windows-sys 0.61.2",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "num-complex"
1549
+ version = "0.2.4"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
1552
+ dependencies = [
1553
+ "autocfg",
1554
+ "num-traits",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "num-complex"
1559
+ version = "0.4.6"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1562
+ dependencies = [
1563
+ "num-traits",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "num-integer"
1568
+ version = "0.1.46"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1571
+ dependencies = [
1572
+ "num-traits",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "num-traits"
1577
+ version = "0.2.19"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1580
+ dependencies = [
1581
+ "autocfg",
1582
+ "libm",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "num_cpus"
1587
+ version = "1.17.0"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1590
+ dependencies = [
1591
+ "hermit-abi",
1592
+ "libc",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "object"
1597
+ version = "0.37.3"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1600
+ dependencies = [
1601
+ "memchr",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "object_store"
1606
+ version = "0.12.4"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740"
1609
+ dependencies = [
1610
+ "async-trait",
1611
+ "base64",
1612
+ "bytes",
1613
+ "chrono",
1614
+ "form_urlencoded",
1615
+ "futures",
1616
+ "http",
1617
+ "http-body-util",
1618
+ "humantime",
1619
+ "hyper",
1620
+ "itertools",
1621
+ "parking_lot",
1622
+ "percent-encoding",
1623
+ "quick-xml 0.38.3",
1624
+ "rand 0.9.2",
1625
+ "reqwest",
1626
+ "ring",
1627
+ "serde",
1628
+ "serde_json",
1629
+ "serde_urlencoded",
1630
+ "thiserror",
1631
+ "tokio",
1632
+ "tracing",
1633
+ "url",
1634
+ "walkdir",
1635
+ "wasm-bindgen-futures",
1636
+ "web-time",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "once_cell"
1641
+ version = "1.21.3"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1644
+
1645
+ [[package]]
1646
+ name = "openssl-probe"
1647
+ version = "0.1.6"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1650
+
1651
+ [[package]]
1652
+ name = "oxilangtag"
1653
+ version = "0.1.5"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "23f3f87617a86af77fa3691e6350483e7154c2ead9f1261b75130e21ca0f8acb"
1656
+ dependencies = [
1657
+ "serde",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "oxiri"
1662
+ version = "0.2.11"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
1665
+
1666
+ [[package]]
1667
+ name = "oxjsonld"
1668
+ version = "0.1.0"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "13a1a66dc569350f3f4e5eff8a8e1a72b0c9e6ad395bb5805493cb7a2fda185f"
1671
+ dependencies = [
1672
+ "json-event-parser",
1673
+ "oxiri",
1674
+ "oxrdf",
1675
+ "thiserror",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "oxrdf"
1680
+ version = "0.2.4"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "a04761319ef84de1f59782f189d072cbfc3a9a40c4e8bded8667202fbd35b02a"
1683
+ dependencies = [
1684
+ "oxilangtag",
1685
+ "oxiri",
1686
+ "oxsdatatypes",
1687
+ "rand 0.8.5",
1688
+ "thiserror",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "oxrdfio"
1693
+ version = "0.1.8"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "14d33dd87769786a0bb7de342865e33bf0c6e9872fa76f1ede23e944fdc77898"
1696
+ dependencies = [
1697
+ "oxjsonld",
1698
+ "oxrdf",
1699
+ "oxrdfxml",
1700
+ "oxttl",
1701
+ "thiserror",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "oxrdfxml"
1706
+ version = "0.1.7"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "d8d4bf9c5331127f01efbd1245d90fd75b7c546a97cb3e95461121ce1ad5b1c8"
1709
+ dependencies = [
1710
+ "oxilangtag",
1711
+ "oxiri",
1712
+ "oxrdf",
1713
+ "quick-xml 0.37.5",
1714
+ "thiserror",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "oxsdatatypes"
1719
+ version = "0.2.2"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "06fa874d87eae638daae9b4e3198864fe2cce68589f227c0b2cf5b62b1530516"
1722
+ dependencies = [
1723
+ "thiserror",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "oxttl"
1728
+ version = "0.1.8"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "0d385f1776d7cace455ef6b7c54407838eff902ca897303d06eb12a26f4cf8a0"
1731
+ dependencies = [
1732
+ "memchr",
1733
+ "oxilangtag",
1734
+ "oxiri",
1735
+ "oxrdf",
1736
+ "thiserror",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "parking"
1741
+ version = "2.2.1"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1744
+
1745
+ [[package]]
1746
+ name = "parking_lot"
1747
+ version = "0.12.5"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1750
+ dependencies = [
1751
+ "lock_api",
1752
+ "parking_lot_core",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "parking_lot_core"
1757
+ version = "0.9.12"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1760
+ dependencies = [
1761
+ "cfg-if",
1762
+ "libc",
1763
+ "redox_syscall",
1764
+ "smallvec",
1765
+ "windows-link",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "paste"
1770
+ version = "1.0.15"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1773
+
1774
+ [[package]]
1775
+ name = "peg"
1776
+ version = "0.8.5"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "9928cfca101b36ec5163e70049ee5368a8a1c3c6efc9ca9c5f9cc2f816152477"
1779
+ dependencies = [
1780
+ "peg-macros",
1781
+ "peg-runtime",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "peg-macros"
1786
+ version = "0.8.5"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "6298ab04c202fa5b5d52ba03269fb7b74550b150323038878fe6c372d8280f71"
1789
+ dependencies = [
1790
+ "peg-runtime",
1791
+ "proc-macro2",
1792
+ "quote",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "peg-runtime"
1797
+ version = "0.8.5"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
1800
+
1801
+ [[package]]
1802
+ name = "percent-encoding"
1803
+ version = "2.3.2"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1806
+
1807
+ [[package]]
1808
+ name = "phf"
1809
+ version = "0.12.1"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1812
+ dependencies = [
1813
+ "phf_shared",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "phf_shared"
1818
+ version = "0.12.1"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1821
+ dependencies = [
1822
+ "siphasher",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "pin-project-lite"
1827
+ version = "0.2.16"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1830
+
1831
+ [[package]]
1832
+ name = "pin-utils"
1833
+ version = "0.1.0"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1836
+
1837
+ [[package]]
1838
+ name = "pkg-config"
1839
+ version = "0.3.32"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1842
+
1843
+ [[package]]
1844
+ name = "planus"
1845
+ version = "1.1.1"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
1848
+ dependencies = [
1849
+ "array-init-cursor",
1850
+ "hashbrown 0.15.5",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "polars"
1855
+ version = "0.52.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "6bc9ea901050c1bb8747ee411bc7fbb390f3b399931e7484719512965132a248"
1858
+ dependencies = [
1859
+ "getrandom 0.2.16",
1860
+ "getrandom 0.3.3",
1861
+ "polars-arrow",
1862
+ "polars-compute",
1863
+ "polars-core",
1864
+ "polars-error",
1865
+ "polars-expr",
1866
+ "polars-io",
1867
+ "polars-lazy",
1868
+ "polars-ops",
1869
+ "polars-parquet",
1870
+ "polars-plan",
1871
+ "polars-sql",
1872
+ "polars-time",
1873
+ "polars-utils",
1874
+ "version_check",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "polars-arrow"
1879
+ version = "0.52.0"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "33d3fe43f8702cf7899ff3d516c2e5f7dc84ee6f6a3007e1a831a0ff87940704"
1882
+ dependencies = [
1883
+ "atoi_simd",
1884
+ "bitflags",
1885
+ "bytemuck",
1886
+ "chrono",
1887
+ "chrono-tz",
1888
+ "dyn-clone",
1889
+ "either",
1890
+ "ethnum",
1891
+ "getrandom 0.2.16",
1892
+ "getrandom 0.3.3",
1893
+ "hashbrown 0.16.0",
1894
+ "itoa",
1895
+ "lz4",
1896
+ "num-traits",
1897
+ "polars-arrow-format",
1898
+ "polars-error",
1899
+ "polars-schema",
1900
+ "polars-utils",
1901
+ "serde",
1902
+ "simdutf8",
1903
+ "streaming-iterator",
1904
+ "strum_macros",
1905
+ "version_check",
1906
+ "zstd",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "polars-arrow-format"
1911
+ version = "0.2.1"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "a556ac0ee744e61e167f34c1eb0013ce740e0ee6cd8c158b2ec0b518f10e6675"
1914
+ dependencies = [
1915
+ "planus",
1916
+ "serde",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "polars-compute"
1921
+ version = "0.52.0"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "d29cc7497378dee3a002f117e0b4e16b7cbe6c8ed3da16a0229c89294af7c3bf"
1924
+ dependencies = [
1925
+ "atoi_simd",
1926
+ "bytemuck",
1927
+ "chrono",
1928
+ "either",
1929
+ "fast-float2",
1930
+ "hashbrown 0.16.0",
1931
+ "itoa",
1932
+ "num-traits",
1933
+ "polars-arrow",
1934
+ "polars-error",
1935
+ "polars-utils",
1936
+ "rand 0.9.2",
1937
+ "ryu",
1938
+ "serde",
1939
+ "strength_reduce",
1940
+ "strum_macros",
1941
+ "version_check",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "polars-core"
1946
+ version = "0.52.0"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "48409b7440cb1a4aa84953fe3a4189dfbfb300a3298266a92a37363476641e40"
1949
+ dependencies = [
1950
+ "bitflags",
1951
+ "boxcar",
1952
+ "bytemuck",
1953
+ "chrono",
1954
+ "chrono-tz",
1955
+ "comfy-table",
1956
+ "either",
1957
+ "hashbrown 0.16.0",
1958
+ "indexmap",
1959
+ "itoa",
1960
+ "num-traits",
1961
+ "polars-arrow",
1962
+ "polars-compute",
1963
+ "polars-dtype",
1964
+ "polars-error",
1965
+ "polars-row",
1966
+ "polars-schema",
1967
+ "polars-utils",
1968
+ "rand 0.9.2",
1969
+ "rand_distr",
1970
+ "rayon",
1971
+ "regex",
1972
+ "serde",
1973
+ "serde_json",
1974
+ "strum_macros",
1975
+ "uuid",
1976
+ "version_check",
1977
+ "xxhash-rust",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "polars-dtype"
1982
+ version = "0.52.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "7007e9e8b7b657cbd339b65246af7e87f5756ee9a860119b9424ddffd2aaf133"
1985
+ dependencies = [
1986
+ "boxcar",
1987
+ "hashbrown 0.16.0",
1988
+ "polars-arrow",
1989
+ "polars-error",
1990
+ "polars-utils",
1991
+ "serde",
1992
+ "uuid",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "polars-error"
1997
+ version = "0.52.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "f9a6be22566c89f6405f553bfdb7c8a6cb20ec51b35f3172de9a25fa3e252d85"
2000
+ dependencies = [
2001
+ "object_store",
2002
+ "parking_lot",
2003
+ "polars-arrow-format",
2004
+ "regex",
2005
+ "signal-hook",
2006
+ "simdutf8",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "polars-expr"
2011
+ version = "0.52.0"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "6199a50d3e1afd0674fb009e340cbfb0010682b2387187a36328c00f3f2ca87b"
2014
+ dependencies = [
2015
+ "bitflags",
2016
+ "hashbrown 0.16.0",
2017
+ "num-traits",
2018
+ "polars-arrow",
2019
+ "polars-compute",
2020
+ "polars-core",
2021
+ "polars-io",
2022
+ "polars-ops",
2023
+ "polars-plan",
2024
+ "polars-row",
2025
+ "polars-time",
2026
+ "polars-utils",
2027
+ "rand 0.9.2",
2028
+ "rayon",
2029
+ "recursive",
2030
+ "regex",
2031
+ "version_check",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "polars-io"
2036
+ version = "0.52.0"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "be3714acdff87170141880a07f5d9233490d3bd5531c41898f6969d440feee11"
2039
+ dependencies = [
2040
+ "async-trait",
2041
+ "atoi_simd",
2042
+ "blake3",
2043
+ "bytes",
2044
+ "chrono",
2045
+ "chrono-tz",
2046
+ "fast-float2",
2047
+ "fs4",
2048
+ "futures",
2049
+ "glob",
2050
+ "hashbrown 0.16.0",
2051
+ "home",
2052
+ "itoa",
2053
+ "memchr",
2054
+ "memmap2",
2055
+ "num-traits",
2056
+ "object_store",
2057
+ "percent-encoding",
2058
+ "polars-arrow",
2059
+ "polars-compute",
2060
+ "polars-core",
2061
+ "polars-error",
2062
+ "polars-json",
2063
+ "polars-parquet",
2064
+ "polars-schema",
2065
+ "polars-time",
2066
+ "polars-utils",
2067
+ "rayon",
2068
+ "regex",
2069
+ "reqwest",
2070
+ "ryu",
2071
+ "serde",
2072
+ "serde_json",
2073
+ "simdutf8",
2074
+ "tokio",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "polars-json"
2079
+ version = "0.52.0"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "3dd2126daebf58da564fc5840cd55eb8eb2479d24dfced0a1aea2178a9b33b12"
2082
+ dependencies = [
2083
+ "chrono",
2084
+ "chrono-tz",
2085
+ "fallible-streaming-iterator",
2086
+ "hashbrown 0.16.0",
2087
+ "indexmap",
2088
+ "itoa",
2089
+ "num-traits",
2090
+ "polars-arrow",
2091
+ "polars-compute",
2092
+ "polars-error",
2093
+ "polars-utils",
2094
+ "ryu",
2095
+ "simd-json",
2096
+ "streaming-iterator",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "polars-lazy"
2101
+ version = "0.52.0"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "ea136c360d03aafe56e0233495e30044ce43639b8b0360a4a38e840233f048a1"
2104
+ dependencies = [
2105
+ "bitflags",
2106
+ "chrono",
2107
+ "either",
2108
+ "memchr",
2109
+ "polars-arrow",
2110
+ "polars-compute",
2111
+ "polars-core",
2112
+ "polars-expr",
2113
+ "polars-io",
2114
+ "polars-mem-engine",
2115
+ "polars-ops",
2116
+ "polars-plan",
2117
+ "polars-stream",
2118
+ "polars-time",
2119
+ "polars-utils",
2120
+ "rayon",
2121
+ "version_check",
2122
+ ]
2123
+
2124
+ [[package]]
2125
+ name = "polars-mem-engine"
2126
+ version = "0.52.0"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "0f6e455ceb6e5aee7ed7d5c8944104e66992173e03a9c42f9670226318672249"
2129
+ dependencies = [
2130
+ "futures",
2131
+ "memmap2",
2132
+ "polars-arrow",
2133
+ "polars-core",
2134
+ "polars-error",
2135
+ "polars-expr",
2136
+ "polars-io",
2137
+ "polars-ops",
2138
+ "polars-plan",
2139
+ "polars-time",
2140
+ "polars-utils",
2141
+ "rayon",
2142
+ "recursive",
2143
+ "tokio",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "polars-ops"
2148
+ version = "0.52.0"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "7b59c80a019ef0e6f09b4416d2647076a52839305c9eb11919e8298ec667f853"
2151
+ dependencies = [
2152
+ "argminmax",
2153
+ "base64",
2154
+ "bytemuck",
2155
+ "chrono",
2156
+ "chrono-tz",
2157
+ "either",
2158
+ "hashbrown 0.16.0",
2159
+ "hex",
2160
+ "indexmap",
2161
+ "libm",
2162
+ "memchr",
2163
+ "num-traits",
2164
+ "polars-arrow",
2165
+ "polars-compute",
2166
+ "polars-core",
2167
+ "polars-error",
2168
+ "polars-schema",
2169
+ "polars-utils",
2170
+ "rand 0.9.2",
2171
+ "rayon",
2172
+ "regex",
2173
+ "regex-syntax",
2174
+ "strum_macros",
2175
+ "unicode-normalization",
2176
+ "unicode-reverse",
2177
+ "version_check",
2178
+ ]
2179
+
2180
+ [[package]]
2181
+ name = "polars-parquet"
2182
+ version = "0.52.0"
2183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2184
+ checksum = "93c2439d127c59e6bfc9d698419bdb45210068a6f501d44e6096429ad72c2eaa"
2185
+ dependencies = [
2186
+ "async-stream",
2187
+ "base64",
2188
+ "brotli",
2189
+ "bytemuck",
2190
+ "ethnum",
2191
+ "flate2",
2192
+ "futures",
2193
+ "hashbrown 0.16.0",
2194
+ "lz4",
2195
+ "num-traits",
2196
+ "polars-arrow",
2197
+ "polars-compute",
2198
+ "polars-error",
2199
+ "polars-parquet-format",
2200
+ "polars-utils",
2201
+ "serde",
2202
+ "simdutf8",
2203
+ "snap",
2204
+ "streaming-decompression",
2205
+ "zstd",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "polars-parquet-format"
2210
+ version = "0.1.0"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
2213
+ dependencies = [
2214
+ "async-trait",
2215
+ "futures",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "polars-plan"
2220
+ version = "0.52.0"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "65b4619f5c7e9b91f18611c9ed82ebeee4b10052160825c1316ecf4dbd4d97e6"
2223
+ dependencies = [
2224
+ "bitflags",
2225
+ "bytemuck",
2226
+ "bytes",
2227
+ "chrono",
2228
+ "chrono-tz",
2229
+ "either",
2230
+ "futures",
2231
+ "hashbrown 0.16.0",
2232
+ "memmap2",
2233
+ "num-traits",
2234
+ "percent-encoding",
2235
+ "polars-arrow",
2236
+ "polars-compute",
2237
+ "polars-core",
2238
+ "polars-error",
2239
+ "polars-io",
2240
+ "polars-ops",
2241
+ "polars-parquet",
2242
+ "polars-time",
2243
+ "polars-utils",
2244
+ "rayon",
2245
+ "recursive",
2246
+ "regex",
2247
+ "sha2",
2248
+ "slotmap",
2249
+ "strum_macros",
2250
+ "version_check",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "polars-row"
2255
+ version = "0.52.0"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "a18d232f25b83032e280a279a1f40beb8a6f8fc43907b13dc07b1c56f3b11eea"
2258
+ dependencies = [
2259
+ "bitflags",
2260
+ "bytemuck",
2261
+ "polars-arrow",
2262
+ "polars-compute",
2263
+ "polars-dtype",
2264
+ "polars-error",
2265
+ "polars-utils",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "polars-schema"
2270
+ version = "0.52.0"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "f73e21d429ae1c23f442b0220ccfe773a9734a44e997b5062a741842909d9441"
2273
+ dependencies = [
2274
+ "indexmap",
2275
+ "polars-error",
2276
+ "polars-utils",
2277
+ "serde",
2278
+ "version_check",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "polars-sql"
2283
+ version = "0.52.0"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "3e67ac1cbb0c972a57af3be12f19aa9803898863fe95c33cdd39df05f5738a75"
2286
+ dependencies = [
2287
+ "bitflags",
2288
+ "hex",
2289
+ "polars-core",
2290
+ "polars-error",
2291
+ "polars-lazy",
2292
+ "polars-ops",
2293
+ "polars-plan",
2294
+ "polars-time",
2295
+ "polars-utils",
2296
+ "rand 0.9.2",
2297
+ "regex",
2298
+ "serde",
2299
+ "sqlparser",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "polars-stream"
2304
+ version = "0.52.0"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "2ff19612074640a9d65e5928b7223db76ffee63e55b276f1e466d06719eb7362"
2307
+ dependencies = [
2308
+ "async-channel",
2309
+ "async-trait",
2310
+ "atomic-waker",
2311
+ "bitflags",
2312
+ "chrono-tz",
2313
+ "crossbeam-channel",
2314
+ "crossbeam-deque",
2315
+ "crossbeam-queue",
2316
+ "crossbeam-utils",
2317
+ "futures",
2318
+ "memmap2",
2319
+ "parking_lot",
2320
+ "percent-encoding",
2321
+ "pin-project-lite",
2322
+ "polars-arrow",
2323
+ "polars-compute",
2324
+ "polars-core",
2325
+ "polars-error",
2326
+ "polars-expr",
2327
+ "polars-io",
2328
+ "polars-mem-engine",
2329
+ "polars-ops",
2330
+ "polars-parquet",
2331
+ "polars-plan",
2332
+ "polars-time",
2333
+ "polars-utils",
2334
+ "rand 0.9.2",
2335
+ "rayon",
2336
+ "recursive",
2337
+ "slotmap",
2338
+ "tokio",
2339
+ "version_check",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "polars-time"
2344
+ version = "0.52.0"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "ddce7a9f81d5f47d981bcee4a8db004f9596bb51f0f4d9d93667a1a00d88166c"
2347
+ dependencies = [
2348
+ "atoi_simd",
2349
+ "bytemuck",
2350
+ "chrono",
2351
+ "chrono-tz",
2352
+ "now",
2353
+ "num-traits",
2354
+ "polars-arrow",
2355
+ "polars-compute",
2356
+ "polars-core",
2357
+ "polars-error",
2358
+ "polars-ops",
2359
+ "polars-utils",
2360
+ "rayon",
2361
+ "regex",
2362
+ "strum_macros",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "polars-utils"
2367
+ version = "0.52.0"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "667c1bc2d2313f934d711f6e3b58d8d9f80351d14ea60af936a26b7dfb06e309"
2370
+ dependencies = [
2371
+ "bincode",
2372
+ "bytemuck",
2373
+ "bytes",
2374
+ "compact_str",
2375
+ "either",
2376
+ "flate2",
2377
+ "foldhash 0.2.0",
2378
+ "hashbrown 0.16.0",
2379
+ "indexmap",
2380
+ "libc",
2381
+ "memmap2",
2382
+ "num-traits",
2383
+ "polars-error",
2384
+ "rand 0.9.2",
2385
+ "raw-cpuid",
2386
+ "rayon",
2387
+ "regex",
2388
+ "rmp-serde",
2389
+ "serde",
2390
+ "serde_json",
2391
+ "serde_stacker",
2392
+ "slotmap",
2393
+ "stacker",
2394
+ "uuid",
2395
+ "version_check",
2396
+ ]
2397
+
2398
+ [[package]]
2399
+ name = "portable-atomic"
2400
+ version = "1.11.1"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2403
+
2404
+ [[package]]
2405
+ name = "portable-atomic-util"
2406
+ version = "0.2.4"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2409
+ dependencies = [
2410
+ "portable-atomic",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "potential_utf"
2415
+ version = "0.1.3"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2418
+ dependencies = [
2419
+ "zerovec",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "ppv-lite86"
2424
+ version = "0.2.21"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2427
+ dependencies = [
2428
+ "zerocopy",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "proc-macro-crate"
2433
+ version = "3.4.0"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2436
+ dependencies = [
2437
+ "toml_edit",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "proc-macro2"
2442
+ version = "1.0.101"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2445
+ dependencies = [
2446
+ "unicode-ident",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "psm"
2451
+ version = "0.1.27"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "e66fcd288453b748497d8fb18bccc83a16b0518e3906d4b8df0a8d42d93dbb1c"
2454
+ dependencies = [
2455
+ "cc",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "py_maplib"
2460
+ version = "0.19.13"
2461
+ dependencies = [
2462
+ "chrono",
2463
+ "cimxml_export",
2464
+ "datalog",
2465
+ "maplib",
2466
+ "mimalloc",
2467
+ "oxrdf",
2468
+ "oxrdfio",
2469
+ "polars",
2470
+ "pydf_io",
2471
+ "pyo3",
2472
+ "report_mapping",
2473
+ "representation",
2474
+ "shacl",
2475
+ "templates",
2476
+ "thiserror",
2477
+ "tikv-jemallocator",
2478
+ "tracing",
2479
+ "tracing-subscriber",
2480
+ "triplestore",
2481
+ "uuid",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "pydf_io"
2486
+ version = "0.7.6"
2487
+ dependencies = [
2488
+ "polars",
2489
+ "polars-core",
2490
+ "pyo3",
2491
+ "representation",
2492
+ "thiserror",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "pyo3"
2497
+ version = "0.25.1"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
2500
+ dependencies = [
2501
+ "chrono",
2502
+ "chrono-tz",
2503
+ "indoc",
2504
+ "libc",
2505
+ "memoffset",
2506
+ "once_cell",
2507
+ "portable-atomic",
2508
+ "pyo3-build-config",
2509
+ "pyo3-ffi",
2510
+ "pyo3-macros",
2511
+ "unindent",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "pyo3-build-config"
2516
+ version = "0.25.1"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
2519
+ dependencies = [
2520
+ "once_cell",
2521
+ "target-lexicon",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "pyo3-ffi"
2526
+ version = "0.25.1"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
2529
+ dependencies = [
2530
+ "libc",
2531
+ "pyo3-build-config",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "pyo3-macros"
2536
+ version = "0.25.1"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
2539
+ dependencies = [
2540
+ "proc-macro2",
2541
+ "pyo3-macros-backend",
2542
+ "quote",
2543
+ "syn",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "pyo3-macros-backend"
2548
+ version = "0.25.1"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
2551
+ dependencies = [
2552
+ "heck",
2553
+ "proc-macro2",
2554
+ "pyo3-build-config",
2555
+ "quote",
2556
+ "syn",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "query_processing"
2561
+ version = "0.3.12"
2562
+ dependencies = [
2563
+ "oxrdf",
2564
+ "polars",
2565
+ "rayon",
2566
+ "representation",
2567
+ "rstest",
2568
+ "spargebra",
2569
+ "thiserror",
2570
+ "tracing",
2571
+ "uuid",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "quick-xml"
2576
+ version = "0.37.5"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2579
+ dependencies = [
2580
+ "memchr",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "quick-xml"
2585
+ version = "0.38.3"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
2588
+ dependencies = [
2589
+ "memchr",
2590
+ "serde",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "quinn"
2595
+ version = "0.11.9"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2598
+ dependencies = [
2599
+ "bytes",
2600
+ "cfg_aliases",
2601
+ "pin-project-lite",
2602
+ "quinn-proto",
2603
+ "quinn-udp",
2604
+ "rustc-hash",
2605
+ "rustls",
2606
+ "socket2",
2607
+ "thiserror",
2608
+ "tokio",
2609
+ "tracing",
2610
+ "web-time",
2611
+ ]
2612
+
2613
+ [[package]]
2614
+ name = "quinn-proto"
2615
+ version = "0.11.13"
2616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2617
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2618
+ dependencies = [
2619
+ "bytes",
2620
+ "getrandom 0.3.3",
2621
+ "lru-slab",
2622
+ "rand 0.9.2",
2623
+ "ring",
2624
+ "rustc-hash",
2625
+ "rustls",
2626
+ "rustls-pki-types",
2627
+ "slab",
2628
+ "thiserror",
2629
+ "tinyvec",
2630
+ "tracing",
2631
+ "web-time",
2632
+ ]
2633
+
2634
+ [[package]]
2635
+ name = "quinn-udp"
2636
+ version = "0.5.14"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2639
+ dependencies = [
2640
+ "cfg_aliases",
2641
+ "libc",
2642
+ "once_cell",
2643
+ "socket2",
2644
+ "tracing",
2645
+ "windows-sys 0.60.2",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "quote"
2650
+ version = "1.0.41"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
2653
+ dependencies = [
2654
+ "proc-macro2",
2655
+ ]
2656
+
2657
+ [[package]]
2658
+ name = "r-efi"
2659
+ version = "5.3.0"
2660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2661
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2662
+
2663
+ [[package]]
2664
+ name = "rand"
2665
+ version = "0.8.5"
2666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2667
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2668
+ dependencies = [
2669
+ "libc",
2670
+ "rand_chacha 0.3.1",
2671
+ "rand_core 0.6.4",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "rand"
2676
+ version = "0.9.2"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2679
+ dependencies = [
2680
+ "rand_chacha 0.9.0",
2681
+ "rand_core 0.9.3",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "rand_chacha"
2686
+ version = "0.3.1"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2689
+ dependencies = [
2690
+ "ppv-lite86",
2691
+ "rand_core 0.6.4",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "rand_chacha"
2696
+ version = "0.9.0"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2699
+ dependencies = [
2700
+ "ppv-lite86",
2701
+ "rand_core 0.9.3",
2702
+ ]
2703
+
2704
+ [[package]]
2705
+ name = "rand_core"
2706
+ version = "0.6.4"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2709
+ dependencies = [
2710
+ "getrandom 0.2.16",
2711
+ ]
2712
+
2713
+ [[package]]
2714
+ name = "rand_core"
2715
+ version = "0.9.3"
2716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2717
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2718
+ dependencies = [
2719
+ "getrandom 0.3.3",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "rand_distr"
2724
+ version = "0.5.1"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2727
+ dependencies = [
2728
+ "num-traits",
2729
+ "rand 0.9.2",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "raw-cpuid"
2734
+ version = "11.6.0"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2737
+ dependencies = [
2738
+ "bitflags",
2739
+ ]
2740
+
2741
+ [[package]]
2742
+ name = "rawpointer"
2743
+ version = "0.2.1"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2746
+
2747
+ [[package]]
2748
+ name = "rayon"
2749
+ version = "1.11.0"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2752
+ dependencies = [
2753
+ "either",
2754
+ "rayon-core",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "rayon-core"
2759
+ version = "1.13.0"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2762
+ dependencies = [
2763
+ "crossbeam-deque",
2764
+ "crossbeam-utils",
2765
+ ]
2766
+
2767
+ [[package]]
2768
+ name = "recursive"
2769
+ version = "0.1.1"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
2772
+ dependencies = [
2773
+ "recursive-proc-macro-impl",
2774
+ "stacker",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "recursive-proc-macro-impl"
2779
+ version = "0.1.1"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2782
+ dependencies = [
2783
+ "quote",
2784
+ "syn",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "redox_syscall"
2789
+ version = "0.5.18"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2792
+ dependencies = [
2793
+ "bitflags",
2794
+ ]
2795
+
2796
+ [[package]]
2797
+ name = "ref-cast"
2798
+ version = "1.0.25"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2801
+ dependencies = [
2802
+ "ref-cast-impl",
2803
+ ]
2804
+
2805
+ [[package]]
2806
+ name = "ref-cast-impl"
2807
+ version = "1.0.25"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2810
+ dependencies = [
2811
+ "proc-macro2",
2812
+ "quote",
2813
+ "syn",
2814
+ ]
2815
+
2816
+ [[package]]
2817
+ name = "regex"
2818
+ version = "1.12.1"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "4a52d8d02cacdb176ef4678de6c052efb4b3da14b78e4db683a4252762be5433"
2821
+ dependencies = [
2822
+ "aho-corasick",
2823
+ "memchr",
2824
+ "regex-automata",
2825
+ "regex-syntax",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "regex-automata"
2830
+ version = "0.4.12"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "722166aa0d7438abbaa4d5cc2c649dac844e8c56d82fb3d33e9c34b5cd268fc6"
2833
+ dependencies = [
2834
+ "aho-corasick",
2835
+ "memchr",
2836
+ "regex-syntax",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "regex-syntax"
2841
+ version = "0.8.7"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "c3160422bbd54dd5ecfdca71e5fd59b7b8fe2b1697ab2baf64f6d05dcc66d298"
2844
+
2845
+ [[package]]
2846
+ name = "relative-path"
2847
+ version = "1.9.3"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2850
+
2851
+ [[package]]
2852
+ name = "report_mapping"
2853
+ version = "0.1.0"
2854
+ dependencies = [
2855
+ "maplib",
2856
+ "shacl",
2857
+ "triplestore",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "representation"
2862
+ version = "0.6.10"
2863
+ dependencies = [
2864
+ "chrono",
2865
+ "chrono-tz",
2866
+ "nohash-hasher",
2867
+ "oxrdf",
2868
+ "oxsdatatypes",
2869
+ "polars",
2870
+ "pyo3",
2871
+ "rayon",
2872
+ "spargebra",
2873
+ "thiserror",
2874
+ "tracing",
2875
+ "utils",
2876
+ "uuid",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "reqwest"
2881
+ version = "0.12.23"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
2884
+ dependencies = [
2885
+ "base64",
2886
+ "bytes",
2887
+ "futures-core",
2888
+ "futures-util",
2889
+ "h2",
2890
+ "http",
2891
+ "http-body",
2892
+ "http-body-util",
2893
+ "hyper",
2894
+ "hyper-rustls",
2895
+ "hyper-util",
2896
+ "js-sys",
2897
+ "log",
2898
+ "percent-encoding",
2899
+ "pin-project-lite",
2900
+ "quinn",
2901
+ "rustls",
2902
+ "rustls-native-certs",
2903
+ "rustls-pki-types",
2904
+ "serde",
2905
+ "serde_json",
2906
+ "serde_urlencoded",
2907
+ "sync_wrapper",
2908
+ "tokio",
2909
+ "tokio-rustls",
2910
+ "tokio-util",
2911
+ "tower",
2912
+ "tower-http",
2913
+ "tower-service",
2914
+ "url",
2915
+ "wasm-bindgen",
2916
+ "wasm-bindgen-futures",
2917
+ "wasm-streams",
2918
+ "web-sys",
2919
+ ]
2920
+
2921
+ [[package]]
2922
+ name = "ring"
2923
+ version = "0.17.14"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2926
+ dependencies = [
2927
+ "cc",
2928
+ "cfg-if",
2929
+ "getrandom 0.2.16",
2930
+ "libc",
2931
+ "untrusted",
2932
+ "windows-sys 0.52.0",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "rmp"
2937
+ version = "0.8.14"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
2940
+ dependencies = [
2941
+ "byteorder",
2942
+ "num-traits",
2943
+ "paste",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "rmp-serde"
2948
+ version = "1.3.0"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
2951
+ dependencies = [
2952
+ "byteorder",
2953
+ "rmp",
2954
+ "serde",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "rstest"
2959
+ version = "0.25.0"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
2962
+ dependencies = [
2963
+ "futures-timer",
2964
+ "futures-util",
2965
+ "rstest_macros",
2966
+ "rustc_version",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "rstest_macros"
2971
+ version = "0.25.0"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
2974
+ dependencies = [
2975
+ "cfg-if",
2976
+ "glob",
2977
+ "proc-macro-crate",
2978
+ "proc-macro2",
2979
+ "quote",
2980
+ "regex",
2981
+ "relative-path",
2982
+ "rustc_version",
2983
+ "syn",
2984
+ "unicode-ident",
2985
+ ]
2986
+
2987
+ [[package]]
2988
+ name = "rustc-demangle"
2989
+ version = "0.1.26"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2992
+
2993
+ [[package]]
2994
+ name = "rustc-hash"
2995
+ version = "2.1.1"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2998
+
2999
+ [[package]]
3000
+ name = "rustc_version"
3001
+ version = "0.4.1"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3004
+ dependencies = [
3005
+ "semver",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "rustix"
3010
+ version = "1.1.2"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3013
+ dependencies = [
3014
+ "bitflags",
3015
+ "errno",
3016
+ "libc",
3017
+ "linux-raw-sys",
3018
+ "windows-sys 0.61.2",
3019
+ ]
3020
+
3021
+ [[package]]
3022
+ name = "rustls"
3023
+ version = "0.23.32"
3024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3025
+ checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40"
3026
+ dependencies = [
3027
+ "once_cell",
3028
+ "ring",
3029
+ "rustls-pki-types",
3030
+ "rustls-webpki",
3031
+ "subtle",
3032
+ "zeroize",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "rustls-native-certs"
3037
+ version = "0.8.1"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
3040
+ dependencies = [
3041
+ "openssl-probe",
3042
+ "rustls-pki-types",
3043
+ "schannel",
3044
+ "security-framework",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "rustls-pki-types"
3049
+ version = "1.12.0"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3052
+ dependencies = [
3053
+ "web-time",
3054
+ "zeroize",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "rustls-webpki"
3059
+ version = "0.103.7"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf"
3062
+ dependencies = [
3063
+ "ring",
3064
+ "rustls-pki-types",
3065
+ "untrusted",
3066
+ ]
3067
+
3068
+ [[package]]
3069
+ name = "rustversion"
3070
+ version = "1.0.22"
3071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3072
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3073
+
3074
+ [[package]]
3075
+ name = "ryu"
3076
+ version = "1.0.20"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3079
+
3080
+ [[package]]
3081
+ name = "same-file"
3082
+ version = "1.0.6"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3085
+ dependencies = [
3086
+ "winapi-util",
3087
+ ]
3088
+
3089
+ [[package]]
3090
+ name = "schannel"
3091
+ version = "0.1.28"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3094
+ dependencies = [
3095
+ "windows-sys 0.61.2",
3096
+ ]
3097
+
3098
+ [[package]]
3099
+ name = "scopeguard"
3100
+ version = "1.2.0"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3103
+
3104
+ [[package]]
3105
+ name = "security-framework"
3106
+ version = "3.5.1"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3109
+ dependencies = [
3110
+ "bitflags",
3111
+ "core-foundation",
3112
+ "core-foundation-sys",
3113
+ "libc",
3114
+ "security-framework-sys",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "security-framework-sys"
3119
+ version = "2.15.0"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3122
+ dependencies = [
3123
+ "core-foundation-sys",
3124
+ "libc",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "semver"
3129
+ version = "1.0.27"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3132
+
3133
+ [[package]]
3134
+ name = "serde"
3135
+ version = "1.0.228"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3138
+ dependencies = [
3139
+ "serde_core",
3140
+ "serde_derive",
3141
+ ]
3142
+
3143
+ [[package]]
3144
+ name = "serde_core"
3145
+ version = "1.0.228"
3146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3147
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3148
+ dependencies = [
3149
+ "serde_derive",
3150
+ ]
3151
+
3152
+ [[package]]
3153
+ name = "serde_derive"
3154
+ version = "1.0.228"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3157
+ dependencies = [
3158
+ "proc-macro2",
3159
+ "quote",
3160
+ "syn",
3161
+ ]
3162
+
3163
+ [[package]]
3164
+ name = "serde_json"
3165
+ version = "1.0.149"
3166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3167
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3168
+ dependencies = [
3169
+ "itoa",
3170
+ "memchr",
3171
+ "serde",
3172
+ "serde_core",
3173
+ "zmij",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "serde_stacker"
3178
+ version = "0.1.14"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a"
3181
+ dependencies = [
3182
+ "serde",
3183
+ "serde_core",
3184
+ "stacker",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "serde_urlencoded"
3189
+ version = "0.7.1"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3192
+ dependencies = [
3193
+ "form_urlencoded",
3194
+ "itoa",
3195
+ "ryu",
3196
+ "serde",
3197
+ ]
3198
+
3199
+ [[package]]
3200
+ name = "sha2"
3201
+ version = "0.10.9"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3204
+ dependencies = [
3205
+ "cfg-if",
3206
+ "cpufeatures",
3207
+ "digest",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "shacl"
3212
+ version = "0.1.0"
3213
+ dependencies = [
3214
+ "oxrdf",
3215
+ "polars",
3216
+ "pyo3",
3217
+ "representation",
3218
+ "thiserror",
3219
+ "triplestore",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "sharded-slab"
3224
+ version = "0.1.7"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3227
+ dependencies = [
3228
+ "lazy_static",
3229
+ ]
3230
+
3231
+ [[package]]
3232
+ name = "shlex"
3233
+ version = "1.3.0"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3236
+
3237
+ [[package]]
3238
+ name = "signal-hook"
3239
+ version = "0.3.18"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
3242
+ dependencies = [
3243
+ "libc",
3244
+ "signal-hook-registry",
3245
+ ]
3246
+
3247
+ [[package]]
3248
+ name = "signal-hook-registry"
3249
+ version = "1.4.6"
3250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3251
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3252
+ dependencies = [
3253
+ "libc",
3254
+ ]
3255
+
3256
+ [[package]]
3257
+ name = "simd-adler32"
3258
+ version = "0.3.7"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
3261
+
3262
+ [[package]]
3263
+ name = "simd-json"
3264
+ version = "0.17.0"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
3267
+ dependencies = [
3268
+ "ahash",
3269
+ "halfbrown",
3270
+ "once_cell",
3271
+ "ref-cast",
3272
+ "serde",
3273
+ "serde_json",
3274
+ "simdutf8",
3275
+ "value-trait",
3276
+ ]
3277
+
3278
+ [[package]]
3279
+ name = "simdutf8"
3280
+ version = "0.1.5"
3281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3282
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3283
+
3284
+ [[package]]
3285
+ name = "siphasher"
3286
+ version = "1.0.1"
3287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3288
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3289
+
3290
+ [[package]]
3291
+ name = "slab"
3292
+ version = "0.4.11"
3293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3294
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3295
+
3296
+ [[package]]
3297
+ name = "slotmap"
3298
+ version = "1.0.7"
3299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3300
+ checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
3301
+ dependencies = [
3302
+ "version_check",
3303
+ ]
3304
+
3305
+ [[package]]
3306
+ name = "smallvec"
3307
+ version = "1.15.1"
3308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3309
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3310
+
3311
+ [[package]]
3312
+ name = "snap"
3313
+ version = "1.1.1"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
3316
+
3317
+ [[package]]
3318
+ name = "socket2"
3319
+ version = "0.6.0"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
3322
+ dependencies = [
3323
+ "libc",
3324
+ "windows-sys 0.59.0",
3325
+ ]
3326
+
3327
+ [[package]]
3328
+ name = "sparesults"
3329
+ version = "0.2.5"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "f478f5ead16b6136bccee7a52ea43a615f8512086708f515e26ce33e0b184036"
3332
+ dependencies = [
3333
+ "json-event-parser",
3334
+ "memchr",
3335
+ "oxrdf",
3336
+ "quick-xml 0.37.5",
3337
+ "thiserror",
3338
+ ]
3339
+
3340
+ [[package]]
3341
+ name = "spargebra"
3342
+ version = "0.3.0-alpha.5-parparse"
3343
+ dependencies = [
3344
+ "chrono",
3345
+ "fundu",
3346
+ "oxilangtag",
3347
+ "oxiri",
3348
+ "oxrdf",
3349
+ "peg",
3350
+ "rand 0.9.2",
3351
+ "thiserror",
3352
+ ]
3353
+
3354
+ [[package]]
3355
+ name = "sprs"
3356
+ version = "0.11.3"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "8bff8419009a08f6cb7519a602c5590241fbff1446bcc823c07af15386eb801b"
3359
+ dependencies = [
3360
+ "alga",
3361
+ "ndarray",
3362
+ "num-complex 0.4.6",
3363
+ "num-traits",
3364
+ "num_cpus",
3365
+ "rayon",
3366
+ "smallvec",
3367
+ ]
3368
+
3369
+ [[package]]
3370
+ name = "sqlparser"
3371
+ version = "0.53.0"
3372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3373
+ checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
3374
+ dependencies = [
3375
+ "log",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "stable_deref_trait"
3380
+ version = "1.2.1"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3383
+
3384
+ [[package]]
3385
+ name = "stacker"
3386
+ version = "0.1.22"
3387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3388
+ checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
3389
+ dependencies = [
3390
+ "cc",
3391
+ "cfg-if",
3392
+ "libc",
3393
+ "psm",
3394
+ "windows-sys 0.59.0",
3395
+ ]
3396
+
3397
+ [[package]]
3398
+ name = "static_assertions"
3399
+ version = "1.1.0"
3400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3401
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3402
+
3403
+ [[package]]
3404
+ name = "streaming-decompression"
3405
+ version = "0.1.2"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
3408
+ dependencies = [
3409
+ "fallible-streaming-iterator",
3410
+ ]
3411
+
3412
+ [[package]]
3413
+ name = "streaming-iterator"
3414
+ version = "0.1.9"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
3417
+
3418
+ [[package]]
3419
+ name = "strength_reduce"
3420
+ version = "0.2.4"
3421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
3423
+
3424
+ [[package]]
3425
+ name = "strum_macros"
3426
+ version = "0.27.2"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
3429
+ dependencies = [
3430
+ "heck",
3431
+ "proc-macro2",
3432
+ "quote",
3433
+ "syn",
3434
+ ]
3435
+
3436
+ [[package]]
3437
+ name = "subtle"
3438
+ version = "2.6.1"
3439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3440
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3441
+
3442
+ [[package]]
3443
+ name = "syn"
3444
+ version = "2.0.106"
3445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3446
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
3447
+ dependencies = [
3448
+ "proc-macro2",
3449
+ "quote",
3450
+ "unicode-ident",
3451
+ ]
3452
+
3453
+ [[package]]
3454
+ name = "sync_wrapper"
3455
+ version = "1.0.2"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3458
+ dependencies = [
3459
+ "futures-core",
3460
+ ]
3461
+
3462
+ [[package]]
3463
+ name = "synstructure"
3464
+ version = "0.13.2"
3465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3466
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3467
+ dependencies = [
3468
+ "proc-macro2",
3469
+ "quote",
3470
+ "syn",
3471
+ ]
3472
+
3473
+ [[package]]
3474
+ name = "target-lexicon"
3475
+ version = "0.13.3"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
3478
+
3479
+ [[package]]
3480
+ name = "templates"
3481
+ version = "0.1.0"
3482
+ dependencies = [
3483
+ "oxilangtag",
3484
+ "oxiri",
3485
+ "oxrdf",
3486
+ "peg",
3487
+ "pyo3",
3488
+ "representation",
3489
+ "spargebra",
3490
+ "thiserror",
3491
+ "tracing",
3492
+ "walkdir",
3493
+ ]
3494
+
3495
+ [[package]]
3496
+ name = "thiserror"
3497
+ version = "2.0.17"
3498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3499
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3500
+ dependencies = [
3501
+ "thiserror-impl",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "thiserror-impl"
3506
+ version = "2.0.17"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3509
+ dependencies = [
3510
+ "proc-macro2",
3511
+ "quote",
3512
+ "syn",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "thread_local"
3517
+ version = "1.1.9"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3520
+ dependencies = [
3521
+ "cfg-if",
3522
+ ]
3523
+
3524
+ [[package]]
3525
+ name = "tikv-jemalloc-sys"
3526
+ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
3529
+ dependencies = [
3530
+ "cc",
3531
+ "libc",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "tikv-jemallocator"
3536
+ version = "0.6.1"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
3539
+ dependencies = [
3540
+ "libc",
3541
+ "tikv-jemalloc-sys",
3542
+ ]
3543
+
3544
+ [[package]]
3545
+ name = "tinystr"
3546
+ version = "0.8.1"
3547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3549
+ dependencies = [
3550
+ "displaydoc",
3551
+ "zerovec",
3552
+ ]
3553
+
3554
+ [[package]]
3555
+ name = "tinyvec"
3556
+ version = "1.10.0"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3559
+ dependencies = [
3560
+ "tinyvec_macros",
3561
+ ]
3562
+
3563
+ [[package]]
3564
+ name = "tinyvec_macros"
3565
+ version = "0.1.1"
3566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3567
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3568
+
3569
+ [[package]]
3570
+ name = "tokio"
3571
+ version = "1.47.1"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
3574
+ dependencies = [
3575
+ "backtrace",
3576
+ "bytes",
3577
+ "io-uring",
3578
+ "libc",
3579
+ "mio",
3580
+ "pin-project-lite",
3581
+ "slab",
3582
+ "socket2",
3583
+ "tokio-macros",
3584
+ "windows-sys 0.59.0",
3585
+ ]
3586
+
3587
+ [[package]]
3588
+ name = "tokio-macros"
3589
+ version = "2.5.0"
3590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3591
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3592
+ dependencies = [
3593
+ "proc-macro2",
3594
+ "quote",
3595
+ "syn",
3596
+ ]
3597
+
3598
+ [[package]]
3599
+ name = "tokio-rustls"
3600
+ version = "0.26.4"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3603
+ dependencies = [
3604
+ "rustls",
3605
+ "tokio",
3606
+ ]
3607
+
3608
+ [[package]]
3609
+ name = "tokio-util"
3610
+ version = "0.7.16"
3611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3612
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
3613
+ dependencies = [
3614
+ "bytes",
3615
+ "futures-core",
3616
+ "futures-sink",
3617
+ "pin-project-lite",
3618
+ "tokio",
3619
+ ]
3620
+
3621
+ [[package]]
3622
+ name = "toml_datetime"
3623
+ version = "0.7.3"
3624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3625
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
3626
+ dependencies = [
3627
+ "serde_core",
3628
+ ]
3629
+
3630
+ [[package]]
3631
+ name = "toml_edit"
3632
+ version = "0.23.7"
3633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3634
+ checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
3635
+ dependencies = [
3636
+ "indexmap",
3637
+ "toml_datetime",
3638
+ "toml_parser",
3639
+ "winnow",
3640
+ ]
3641
+
3642
+ [[package]]
3643
+ name = "toml_parser"
3644
+ version = "1.0.4"
3645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3646
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
3647
+ dependencies = [
3648
+ "winnow",
3649
+ ]
3650
+
3651
+ [[package]]
3652
+ name = "tower"
3653
+ version = "0.5.2"
3654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3655
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3656
+ dependencies = [
3657
+ "futures-core",
3658
+ "futures-util",
3659
+ "pin-project-lite",
3660
+ "sync_wrapper",
3661
+ "tokio",
3662
+ "tower-layer",
3663
+ "tower-service",
3664
+ ]
3665
+
3666
+ [[package]]
3667
+ name = "tower-http"
3668
+ version = "0.6.6"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3671
+ dependencies = [
3672
+ "bitflags",
3673
+ "bytes",
3674
+ "futures-util",
3675
+ "http",
3676
+ "http-body",
3677
+ "iri-string",
3678
+ "pin-project-lite",
3679
+ "tower",
3680
+ "tower-layer",
3681
+ "tower-service",
3682
+ ]
3683
+
3684
+ [[package]]
3685
+ name = "tower-layer"
3686
+ version = "0.3.3"
3687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3688
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3689
+
3690
+ [[package]]
3691
+ name = "tower-service"
3692
+ version = "0.3.3"
3693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3694
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3695
+
3696
+ [[package]]
3697
+ name = "tracing"
3698
+ version = "0.1.41"
3699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3700
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3701
+ dependencies = [
3702
+ "log",
3703
+ "pin-project-lite",
3704
+ "tracing-attributes",
3705
+ "tracing-core",
3706
+ ]
3707
+
3708
+ [[package]]
3709
+ name = "tracing-attributes"
3710
+ version = "0.1.30"
3711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3712
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3713
+ dependencies = [
3714
+ "proc-macro2",
3715
+ "quote",
3716
+ "syn",
3717
+ ]
3718
+
3719
+ [[package]]
3720
+ name = "tracing-core"
3721
+ version = "0.1.34"
3722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3723
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3724
+ dependencies = [
3725
+ "once_cell",
3726
+ "valuable",
3727
+ ]
3728
+
3729
+ [[package]]
3730
+ name = "tracing-log"
3731
+ version = "0.2.0"
3732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3733
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3734
+ dependencies = [
3735
+ "log",
3736
+ "once_cell",
3737
+ "tracing-core",
3738
+ ]
3739
+
3740
+ [[package]]
3741
+ name = "tracing-subscriber"
3742
+ version = "0.3.20"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
3745
+ dependencies = [
3746
+ "matchers",
3747
+ "nu-ansi-term",
3748
+ "once_cell",
3749
+ "regex-automata",
3750
+ "sharded-slab",
3751
+ "smallvec",
3752
+ "thread_local",
3753
+ "tracing",
3754
+ "tracing-core",
3755
+ "tracing-log",
3756
+ ]
3757
+
3758
+ [[package]]
3759
+ name = "triplestore"
3760
+ version = "0.5.0"
3761
+ dependencies = [
3762
+ "aho-corasick",
3763
+ "cimxml_import",
3764
+ "file_io",
3765
+ "fts",
3766
+ "itoa",
3767
+ "memmap2",
3768
+ "oxrdf",
3769
+ "oxrdfio",
3770
+ "oxttl",
3771
+ "polars",
3772
+ "polars-core",
3773
+ "pyo3",
3774
+ "query_processing",
3775
+ "rayon",
3776
+ "representation",
3777
+ "ryu",
3778
+ "serde_json",
3779
+ "simd-json",
3780
+ "sparesults",
3781
+ "spargebra",
3782
+ "sprs",
3783
+ "thiserror",
3784
+ "tracing",
3785
+ "utils",
3786
+ "uuid",
3787
+ ]
3788
+
3789
+ [[package]]
3790
+ name = "try-lock"
3791
+ version = "0.2.5"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3794
+
3795
+ [[package]]
3796
+ name = "typenum"
3797
+ version = "1.19.0"
3798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3799
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3800
+
3801
+ [[package]]
3802
+ name = "unicode-ident"
3803
+ version = "1.0.19"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
3806
+
3807
+ [[package]]
3808
+ name = "unicode-normalization"
3809
+ version = "0.1.24"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3812
+ dependencies = [
3813
+ "tinyvec",
3814
+ ]
3815
+
3816
+ [[package]]
3817
+ name = "unicode-reverse"
3818
+ version = "1.0.9"
3819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3820
+ checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
3821
+ dependencies = [
3822
+ "unicode-segmentation",
3823
+ ]
3824
+
3825
+ [[package]]
3826
+ name = "unicode-segmentation"
3827
+ version = "1.12.0"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3830
+
3831
+ [[package]]
3832
+ name = "unicode-width"
3833
+ version = "0.2.2"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3836
+
3837
+ [[package]]
3838
+ name = "unindent"
3839
+ version = "0.2.4"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3842
+
3843
+ [[package]]
3844
+ name = "untrusted"
3845
+ version = "0.9.0"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3848
+
3849
+ [[package]]
3850
+ name = "unty"
3851
+ version = "0.0.4"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
3854
+
3855
+ [[package]]
3856
+ name = "url"
3857
+ version = "2.5.7"
3858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3859
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3860
+ dependencies = [
3861
+ "form_urlencoded",
3862
+ "idna",
3863
+ "percent-encoding",
3864
+ "serde",
3865
+ ]
3866
+
3867
+ [[package]]
3868
+ name = "utf8_iter"
3869
+ version = "1.0.4"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3872
+
3873
+ [[package]]
3874
+ name = "utils"
3875
+ version = "0.1.0"
3876
+ dependencies = [
3877
+ "polars",
3878
+ "pyo3",
3879
+ "rayon",
3880
+ "thiserror",
3881
+ ]
3882
+
3883
+ [[package]]
3884
+ name = "uuid"
3885
+ version = "1.18.1"
3886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3887
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
3888
+ dependencies = [
3889
+ "getrandom 0.3.3",
3890
+ "js-sys",
3891
+ "rand 0.9.2",
3892
+ "serde",
3893
+ "wasm-bindgen",
3894
+ ]
3895
+
3896
+ [[package]]
3897
+ name = "valuable"
3898
+ version = "0.1.1"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3901
+
3902
+ [[package]]
3903
+ name = "value-trait"
3904
+ version = "0.12.1"
3905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3906
+ checksum = "8e80f0c733af0720a501b3905d22e2f97662d8eacfe082a75ed7ffb5ab08cb59"
3907
+ dependencies = [
3908
+ "float-cmp",
3909
+ "halfbrown",
3910
+ "itoa",
3911
+ "ryu",
3912
+ ]
3913
+
3914
+ [[package]]
3915
+ name = "version_check"
3916
+ version = "0.9.5"
3917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3918
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3919
+
3920
+ [[package]]
3921
+ name = "virtue"
3922
+ version = "0.0.18"
3923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3924
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
3925
+
3926
+ [[package]]
3927
+ name = "walkdir"
3928
+ version = "2.5.0"
3929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3930
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3931
+ dependencies = [
3932
+ "same-file",
3933
+ "winapi-util",
3934
+ ]
3935
+
3936
+ [[package]]
3937
+ name = "want"
3938
+ version = "0.3.1"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3941
+ dependencies = [
3942
+ "try-lock",
3943
+ ]
3944
+
3945
+ [[package]]
3946
+ name = "wasi"
3947
+ version = "0.11.1+wasi-snapshot-preview1"
3948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3949
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3950
+
3951
+ [[package]]
3952
+ name = "wasi"
3953
+ version = "0.14.7+wasi-0.2.4"
3954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3955
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
3956
+ dependencies = [
3957
+ "wasip2",
3958
+ ]
3959
+
3960
+ [[package]]
3961
+ name = "wasip2"
3962
+ version = "1.0.1+wasi-0.2.4"
3963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3964
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3965
+ dependencies = [
3966
+ "wit-bindgen",
3967
+ ]
3968
+
3969
+ [[package]]
3970
+ name = "wasm-bindgen"
3971
+ version = "0.2.104"
3972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3973
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
3974
+ dependencies = [
3975
+ "cfg-if",
3976
+ "once_cell",
3977
+ "rustversion",
3978
+ "wasm-bindgen-macro",
3979
+ "wasm-bindgen-shared",
3980
+ ]
3981
+
3982
+ [[package]]
3983
+ name = "wasm-bindgen-backend"
3984
+ version = "0.2.104"
3985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3986
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
3987
+ dependencies = [
3988
+ "bumpalo",
3989
+ "log",
3990
+ "proc-macro2",
3991
+ "quote",
3992
+ "syn",
3993
+ "wasm-bindgen-shared",
3994
+ ]
3995
+
3996
+ [[package]]
3997
+ name = "wasm-bindgen-futures"
3998
+ version = "0.4.54"
3999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4000
+ checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c"
4001
+ dependencies = [
4002
+ "cfg-if",
4003
+ "js-sys",
4004
+ "once_cell",
4005
+ "wasm-bindgen",
4006
+ "web-sys",
4007
+ ]
4008
+
4009
+ [[package]]
4010
+ name = "wasm-bindgen-macro"
4011
+ version = "0.2.104"
4012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4013
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
4014
+ dependencies = [
4015
+ "quote",
4016
+ "wasm-bindgen-macro-support",
4017
+ ]
4018
+
4019
+ [[package]]
4020
+ name = "wasm-bindgen-macro-support"
4021
+ version = "0.2.104"
4022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4023
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
4024
+ dependencies = [
4025
+ "proc-macro2",
4026
+ "quote",
4027
+ "syn",
4028
+ "wasm-bindgen-backend",
4029
+ "wasm-bindgen-shared",
4030
+ ]
4031
+
4032
+ [[package]]
4033
+ name = "wasm-bindgen-shared"
4034
+ version = "0.2.104"
4035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4036
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
4037
+ dependencies = [
4038
+ "unicode-ident",
4039
+ ]
4040
+
4041
+ [[package]]
4042
+ name = "wasm-streams"
4043
+ version = "0.4.2"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4046
+ dependencies = [
4047
+ "futures-util",
4048
+ "js-sys",
4049
+ "wasm-bindgen",
4050
+ "wasm-bindgen-futures",
4051
+ "web-sys",
4052
+ ]
4053
+
4054
+ [[package]]
4055
+ name = "web-sys"
4056
+ version = "0.3.81"
4057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4058
+ checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
4059
+ dependencies = [
4060
+ "js-sys",
4061
+ "wasm-bindgen",
4062
+ ]
4063
+
4064
+ [[package]]
4065
+ name = "web-time"
4066
+ version = "1.1.0"
4067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4068
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4069
+ dependencies = [
4070
+ "js-sys",
4071
+ "wasm-bindgen",
4072
+ ]
4073
+
4074
+ [[package]]
4075
+ name = "winapi"
4076
+ version = "0.3.9"
4077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4078
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4079
+ dependencies = [
4080
+ "winapi-i686-pc-windows-gnu",
4081
+ "winapi-x86_64-pc-windows-gnu",
4082
+ ]
4083
+
4084
+ [[package]]
4085
+ name = "winapi-i686-pc-windows-gnu"
4086
+ version = "0.4.0"
4087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4088
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4089
+
4090
+ [[package]]
4091
+ name = "winapi-util"
4092
+ version = "0.1.11"
4093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4094
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4095
+ dependencies = [
4096
+ "windows-sys 0.61.2",
4097
+ ]
4098
+
4099
+ [[package]]
4100
+ name = "winapi-x86_64-pc-windows-gnu"
4101
+ version = "0.4.0"
4102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4103
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4104
+
4105
+ [[package]]
4106
+ name = "windows-core"
4107
+ version = "0.62.2"
4108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4109
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4110
+ dependencies = [
4111
+ "windows-implement",
4112
+ "windows-interface",
4113
+ "windows-link",
4114
+ "windows-result",
4115
+ "windows-strings",
4116
+ ]
4117
+
4118
+ [[package]]
4119
+ name = "windows-implement"
4120
+ version = "0.60.2"
4121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4123
+ dependencies = [
4124
+ "proc-macro2",
4125
+ "quote",
4126
+ "syn",
4127
+ ]
4128
+
4129
+ [[package]]
4130
+ name = "windows-interface"
4131
+ version = "0.59.3"
4132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4133
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4134
+ dependencies = [
4135
+ "proc-macro2",
4136
+ "quote",
4137
+ "syn",
4138
+ ]
4139
+
4140
+ [[package]]
4141
+ name = "windows-link"
4142
+ version = "0.2.1"
4143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4144
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4145
+
4146
+ [[package]]
4147
+ name = "windows-result"
4148
+ version = "0.4.1"
4149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4150
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4151
+ dependencies = [
4152
+ "windows-link",
4153
+ ]
4154
+
4155
+ [[package]]
4156
+ name = "windows-strings"
4157
+ version = "0.5.1"
4158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4159
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4160
+ dependencies = [
4161
+ "windows-link",
4162
+ ]
4163
+
4164
+ [[package]]
4165
+ name = "windows-sys"
4166
+ version = "0.52.0"
4167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4168
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4169
+ dependencies = [
4170
+ "windows-targets 0.52.6",
4171
+ ]
4172
+
4173
+ [[package]]
4174
+ name = "windows-sys"
4175
+ version = "0.59.0"
4176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4177
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4178
+ dependencies = [
4179
+ "windows-targets 0.52.6",
4180
+ ]
4181
+
4182
+ [[package]]
4183
+ name = "windows-sys"
4184
+ version = "0.60.2"
4185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4186
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4187
+ dependencies = [
4188
+ "windows-targets 0.53.5",
4189
+ ]
4190
+
4191
+ [[package]]
4192
+ name = "windows-sys"
4193
+ version = "0.61.2"
4194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4195
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4196
+ dependencies = [
4197
+ "windows-link",
4198
+ ]
4199
+
4200
+ [[package]]
4201
+ name = "windows-targets"
4202
+ version = "0.52.6"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4205
+ dependencies = [
4206
+ "windows_aarch64_gnullvm 0.52.6",
4207
+ "windows_aarch64_msvc 0.52.6",
4208
+ "windows_i686_gnu 0.52.6",
4209
+ "windows_i686_gnullvm 0.52.6",
4210
+ "windows_i686_msvc 0.52.6",
4211
+ "windows_x86_64_gnu 0.52.6",
4212
+ "windows_x86_64_gnullvm 0.52.6",
4213
+ "windows_x86_64_msvc 0.52.6",
4214
+ ]
4215
+
4216
+ [[package]]
4217
+ name = "windows-targets"
4218
+ version = "0.53.5"
4219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4220
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4221
+ dependencies = [
4222
+ "windows-link",
4223
+ "windows_aarch64_gnullvm 0.53.1",
4224
+ "windows_aarch64_msvc 0.53.1",
4225
+ "windows_i686_gnu 0.53.1",
4226
+ "windows_i686_gnullvm 0.53.1",
4227
+ "windows_i686_msvc 0.53.1",
4228
+ "windows_x86_64_gnu 0.53.1",
4229
+ "windows_x86_64_gnullvm 0.53.1",
4230
+ "windows_x86_64_msvc 0.53.1",
4231
+ ]
4232
+
4233
+ [[package]]
4234
+ name = "windows_aarch64_gnullvm"
4235
+ version = "0.52.6"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4238
+
4239
+ [[package]]
4240
+ name = "windows_aarch64_gnullvm"
4241
+ version = "0.53.1"
4242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4243
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4244
+
4245
+ [[package]]
4246
+ name = "windows_aarch64_msvc"
4247
+ version = "0.52.6"
4248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4249
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4250
+
4251
+ [[package]]
4252
+ name = "windows_aarch64_msvc"
4253
+ version = "0.53.1"
4254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4255
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4256
+
4257
+ [[package]]
4258
+ name = "windows_i686_gnu"
4259
+ version = "0.52.6"
4260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4261
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4262
+
4263
+ [[package]]
4264
+ name = "windows_i686_gnu"
4265
+ version = "0.53.1"
4266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4267
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4268
+
4269
+ [[package]]
4270
+ name = "windows_i686_gnullvm"
4271
+ version = "0.52.6"
4272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4273
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4274
+
4275
+ [[package]]
4276
+ name = "windows_i686_gnullvm"
4277
+ version = "0.53.1"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4280
+
4281
+ [[package]]
4282
+ name = "windows_i686_msvc"
4283
+ version = "0.52.6"
4284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4285
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4286
+
4287
+ [[package]]
4288
+ name = "windows_i686_msvc"
4289
+ version = "0.53.1"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4292
+
4293
+ [[package]]
4294
+ name = "windows_x86_64_gnu"
4295
+ version = "0.52.6"
4296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4297
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4298
+
4299
+ [[package]]
4300
+ name = "windows_x86_64_gnu"
4301
+ version = "0.53.1"
4302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4303
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4304
+
4305
+ [[package]]
4306
+ name = "windows_x86_64_gnullvm"
4307
+ version = "0.52.6"
4308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4309
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4310
+
4311
+ [[package]]
4312
+ name = "windows_x86_64_gnullvm"
4313
+ version = "0.53.1"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4316
+
4317
+ [[package]]
4318
+ name = "windows_x86_64_msvc"
4319
+ version = "0.52.6"
4320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4321
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4322
+
4323
+ [[package]]
4324
+ name = "windows_x86_64_msvc"
4325
+ version = "0.53.1"
4326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4327
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4328
+
4329
+ [[package]]
4330
+ name = "winnow"
4331
+ version = "0.7.13"
4332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4333
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
4334
+ dependencies = [
4335
+ "memchr",
4336
+ ]
4337
+
4338
+ [[package]]
4339
+ name = "wit-bindgen"
4340
+ version = "0.46.0"
4341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4342
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4343
+
4344
+ [[package]]
4345
+ name = "writeable"
4346
+ version = "0.6.1"
4347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4348
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4349
+
4350
+ [[package]]
4351
+ name = "xxhash-rust"
4352
+ version = "0.8.15"
4353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4354
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
4355
+
4356
+ [[package]]
4357
+ name = "yoke"
4358
+ version = "0.8.0"
4359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4360
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4361
+ dependencies = [
4362
+ "serde",
4363
+ "stable_deref_trait",
4364
+ "yoke-derive",
4365
+ "zerofrom",
4366
+ ]
4367
+
4368
+ [[package]]
4369
+ name = "yoke-derive"
4370
+ version = "0.8.0"
4371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4372
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4373
+ dependencies = [
4374
+ "proc-macro2",
4375
+ "quote",
4376
+ "syn",
4377
+ "synstructure",
4378
+ ]
4379
+
4380
+ [[package]]
4381
+ name = "zerocopy"
4382
+ version = "0.8.27"
4383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4384
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
4385
+ dependencies = [
4386
+ "zerocopy-derive",
4387
+ ]
4388
+
4389
+ [[package]]
4390
+ name = "zerocopy-derive"
4391
+ version = "0.8.27"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
4394
+ dependencies = [
4395
+ "proc-macro2",
4396
+ "quote",
4397
+ "syn",
4398
+ ]
4399
+
4400
+ [[package]]
4401
+ name = "zerofrom"
4402
+ version = "0.1.6"
4403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4404
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4405
+ dependencies = [
4406
+ "zerofrom-derive",
4407
+ ]
4408
+
4409
+ [[package]]
4410
+ name = "zerofrom-derive"
4411
+ version = "0.1.6"
4412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4413
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4414
+ dependencies = [
4415
+ "proc-macro2",
4416
+ "quote",
4417
+ "syn",
4418
+ "synstructure",
4419
+ ]
4420
+
4421
+ [[package]]
4422
+ name = "zeroize"
4423
+ version = "1.8.2"
4424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4425
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4426
+
4427
+ [[package]]
4428
+ name = "zerotrie"
4429
+ version = "0.2.2"
4430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4431
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4432
+ dependencies = [
4433
+ "displaydoc",
4434
+ "yoke",
4435
+ "zerofrom",
4436
+ ]
4437
+
4438
+ [[package]]
4439
+ name = "zerovec"
4440
+ version = "0.11.4"
4441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4442
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
4443
+ dependencies = [
4444
+ "yoke",
4445
+ "zerofrom",
4446
+ "zerovec-derive",
4447
+ ]
4448
+
4449
+ [[package]]
4450
+ name = "zerovec-derive"
4451
+ version = "0.11.1"
4452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4453
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4454
+ dependencies = [
4455
+ "proc-macro2",
4456
+ "quote",
4457
+ "syn",
4458
+ ]
4459
+
4460
+ [[package]]
4461
+ name = "zlib-rs"
4462
+ version = "0.5.2"
4463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4464
+ checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
4465
+
4466
+ [[package]]
4467
+ name = "zmij"
4468
+ version = "1.0.16"
4469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4470
+ checksum = "dfcd145825aace48cff44a8844de64bf75feec3080e0aa5cdbde72961ae51a65"
4471
+
4472
+ [[package]]
4473
+ name = "zstd"
4474
+ version = "0.13.3"
4475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4476
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4477
+ dependencies = [
4478
+ "zstd-safe",
4479
+ ]
4480
+
4481
+ [[package]]
4482
+ name = "zstd-safe"
4483
+ version = "7.2.4"
4484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4485
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4486
+ dependencies = [
4487
+ "zstd-sys",
4488
+ ]
4489
+
4490
+ [[package]]
4491
+ name = "zstd-sys"
4492
+ version = "2.0.16+zstd.1.5.7"
4493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4494
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4495
+ dependencies = [
4496
+ "cc",
4497
+ "pkg-config",
4498
+ ]