maplib 0.15.4__tar.gz → 0.15.11__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 (187) hide show
  1. {maplib-0.15.4 → maplib-0.15.11}/Cargo.lock +488 -382
  2. {maplib-0.15.4 → maplib-0.15.11}/Cargo.toml +4 -4
  3. {maplib-0.15.4 → maplib-0.15.11}/PKG-INFO +4 -4
  4. {maplib-0.15.4 → maplib-0.15.11}/README.md +3 -3
  5. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/mapping/constant_terms.rs +1 -1
  6. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/mapping/errors.rs +3 -3
  7. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/mapping.rs +22 -3
  8. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/tests/test_stottr.rs +11 -30
  9. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/expressions.rs +39 -25
  10. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/graph_patterns.rs +1 -1
  11. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/pushdowns.rs +1 -1
  12. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/formatting.rs +1 -1
  13. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/lib.rs +43 -53
  14. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/multitype.rs +65 -16
  15. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/polars_to_rdf.rs +25 -72
  16. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/python.rs +35 -30
  17. maplib-0.15.11/lib/representation/src/rdf_to_polars.rs +453 -0
  18. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/solution_mapping.rs +2 -2
  19. {maplib-0.15.4 → maplib-0.15.11}/lib/shacl/Cargo.toml +3 -1
  20. maplib-0.15.11/lib/shacl/src/errors.rs +8 -0
  21. {maplib-0.15.4 → maplib-0.15.11}/lib/shacl/src/lib.rs +32 -1
  22. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/parser.rs +38 -16
  23. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/dblf.rs +8 -3
  24. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/errors.rs +7 -3
  25. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/lib.rs +35 -11
  26. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/query_solutions.rs +4 -1
  27. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/rdfs_inferencing.rs +1 -1
  28. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_aggregate.rs +2 -0
  29. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_expressions.rs +38 -3
  30. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +4 -2
  31. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +5 -2
  32. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +5 -2
  33. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +5 -2
  34. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +5 -2
  35. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +6 -2
  36. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +5 -2
  37. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +5 -2
  38. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +7 -2
  39. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +11 -4
  40. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +1 -1
  41. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +5 -2
  42. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +5 -2
  43. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +1 -0
  44. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +33 -7
  45. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_order.rs +3 -0
  46. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql.rs +21 -6
  47. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/storage.rs +43 -36
  48. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/triples_read.rs +25 -8
  49. maplib-0.15.11/maplib/__init__.py +58 -0
  50. maplib-0.15.4/py_maplib/maplib/maplib.pyi → maplib-0.15.11/maplib/__init__.pyi +23 -4
  51. {maplib-0.15.4 → maplib-0.15.11}/maplib/add_triples.py +8 -2
  52. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/Cargo.toml +1 -1
  53. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/README.md +3 -3
  54. maplib-0.15.11/py_maplib/maplib/__init__.py +58 -0
  55. maplib-0.15.4/maplib/maplib.pyi → maplib-0.15.11/py_maplib/maplib/__init__.pyi +23 -4
  56. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/maplib/add_triples.py +8 -2
  57. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/src/lib.rs +50 -3
  58. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/src/shacl.rs +22 -5
  59. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_multi_expressions.py +21 -0
  60. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_pizza_example.py +23 -3
  61. maplib-0.15.4/lib/representation/src/rdf_to_polars.rs +0 -405
  62. maplib-0.15.4/lib/shacl/src/errors.rs +0 -4
  63. maplib-0.15.4/maplib/__init__.py +0 -9
  64. maplib-0.15.4/py_maplib/maplib/__init__.py +0 -9
  65. {maplib-0.15.4 → maplib-0.15.11}/LICENSE +0 -0
  66. {maplib-0.15.4 → maplib-0.15.11}/lib/file_io/Cargo.toml +0 -0
  67. {maplib-0.15.4 → maplib-0.15.11}/lib/file_io/src/lib.rs +0 -0
  68. {maplib-0.15.4 → maplib-0.15.11}/lib/fts/Cargo.toml +0 -0
  69. {maplib-0.15.4 → maplib-0.15.11}/lib/fts/src/lib.rs +0 -0
  70. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/Cargo.toml +0 -0
  71. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/errors.rs +0 -0
  72. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/lib.rs +0 -0
  73. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/mapping/default.rs +0 -0
  74. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/mapping/expansion/validation.rs +0 -0
  75. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/src/mapping/expansion.rs +0 -0
  76. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
  77. {maplib-0.15.4 → maplib-0.15.11}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
  78. {maplib-0.15.4 → maplib-0.15.11}/lib/pydf_io/Cargo.toml +0 -0
  79. {maplib-0.15.4 → maplib-0.15.11}/lib/pydf_io/LICENSE +0 -0
  80. {maplib-0.15.4 → maplib-0.15.11}/lib/pydf_io/README.md +0 -0
  81. {maplib-0.15.4 → maplib-0.15.11}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
  82. {maplib-0.15.4 → maplib-0.15.11}/lib/pydf_io/src/lib.rs +0 -0
  83. {maplib-0.15.4 → maplib-0.15.11}/lib/pydf_io/src/to_python.rs +0 -0
  84. {maplib-0.15.4 → maplib-0.15.11}/lib/pydf_io/src/to_rust.rs +0 -0
  85. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/Cargo.toml +0 -0
  86. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/LICENSE +0 -0
  87. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/README.md +0 -0
  88. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/aggregates.rs +0 -0
  89. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/constants.rs +0 -0
  90. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/errors.rs +0 -0
  91. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/exists_helper.rs +0 -0
  92. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/find_query_variables.rs +0 -0
  93. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/lib.rs +0 -0
  94. {maplib-0.15.4 → maplib-0.15.11}/lib/query_processing/src/type_constraints.rs +0 -0
  95. {maplib-0.15.4 → maplib-0.15.11}/lib/report_mapping/Cargo.toml +0 -0
  96. {maplib-0.15.4 → maplib-0.15.11}/lib/report_mapping/src/lib.rs +0 -0
  97. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/Cargo.toml +0 -0
  98. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/LICENSE +0 -0
  99. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/README.md +0 -0
  100. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/errors.rs +0 -0
  101. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/literals.rs +0 -0
  102. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/query_context.rs +0 -0
  103. {maplib-0.15.4 → maplib-0.15.11}/lib/representation/src/subtypes.rs +0 -0
  104. {maplib-0.15.4 → maplib-0.15.11}/lib/shacl/src/storage.rs +0 -0
  105. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/Cargo.toml +0 -0
  106. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/LICENSE +0 -0
  107. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/README.md +0 -0
  108. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/algebra.rs +0 -0
  109. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/lib.rs +0 -0
  110. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/query.rs +0 -0
  111. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/query_context.rs +0 -0
  112. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/remove_sugar.rs +0 -0
  113. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/term.rs +0 -0
  114. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/treehouse.rs +0 -0
  115. {maplib-0.15.4 → maplib-0.15.11}/lib/spargebra/src/update.rs +0 -0
  116. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/Cargo.toml +0 -0
  117. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/ast.rs +0 -0
  118. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/compatible.rs +0 -0
  119. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/constants.rs +0 -0
  120. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/dataset/errors.rs +0 -0
  121. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/dataset.rs +0 -0
  122. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/document.rs +0 -0
  123. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/lib.rs +0 -0
  124. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/parsing/errors.rs +0 -0
  125. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/parsing/nom_parsing.rs +0 -0
  126. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/parsing/parser_test.rs +0 -0
  127. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/parsing/parsing_ast.rs +0 -0
  128. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/parsing.rs +0 -0
  129. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/python.rs +0 -0
  130. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/resolver.rs +0 -0
  131. {maplib-0.15.4 → maplib-0.15.11}/lib/templates/src/subtypes_ext.rs +0 -0
  132. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/Cargo.toml +0 -0
  133. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/io_funcs.rs +0 -0
  134. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/native_parquet_write.rs +0 -0
  135. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/errors.rs +0 -0
  136. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
  137. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
  138. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
  139. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/triples_write/serializers.rs +0 -0
  140. {maplib-0.15.4 → maplib-0.15.11}/lib/triplestore/src/triples_write.rs +0 -0
  141. {maplib-0.15.4 → maplib-0.15.11}/maplib/py.typed +0 -0
  142. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/LICENSE +0 -0
  143. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/maplib/.gitignore +0 -0
  144. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/maplib/py.typed +0 -0
  145. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/src/error.rs +0 -0
  146. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/.gitignore +0 -0
  147. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/__init__.py +0 -0
  148. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/out.ttl +0 -0
  149. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/requirements.txt +0 -0
  150. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_basics.py +0 -0
  151. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
  152. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_data_validation.py +0 -0
  153. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_integration.py +0 -0
  154. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
  155. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_rdf_parser.py +0 -0
  156. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_read_write.py +0 -0
  157. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/test_validate_iris.py +0 -0
  158. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
  159. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
  160. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
  161. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
  162. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
  163. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/larger_query.csv +0 -0
  164. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_concat.csv +0 -0
  165. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
  166. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
  167. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
  168. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
  169. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
  170. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
  171. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
  172. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
  173. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
  174. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
  175. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/property_path_query.csv +0 -0
  176. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
  177. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
  178. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
  179. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
  180. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
  181. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
  182. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
  183. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
  184. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
  185. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/simple_query.csv +0 -0
  186. {maplib-0.15.4 → maplib-0.15.11}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
  187. {maplib-0.15.4 → maplib-0.15.11}/pyproject.toml +0 -0
@@ -24,10 +24,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
24
24
  checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
25
25
  dependencies = [
26
26
  "cfg-if",
27
- "getrandom",
27
+ "getrandom 0.2.15",
28
28
  "once_cell",
29
29
  "version_check",
30
- "zerocopy",
30
+ "zerocopy 0.7.35",
31
31
  ]
32
32
 
33
33
  [[package]]
@@ -127,11 +127,12 @@ dependencies = [
127
127
 
128
128
  [[package]]
129
129
  name = "anstyle-wincon"
130
- version = "3.0.6"
130
+ version = "3.0.7"
131
131
  source = "registry+https://github.com/rust-lang/crates.io-index"
132
- checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
132
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
133
133
  dependencies = [
134
134
  "anstyle",
135
+ "once_cell",
135
136
  "windows-sys 0.59.0",
136
137
  ]
137
138
 
@@ -184,27 +185,18 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
184
185
  dependencies = [
185
186
  "proc-macro2",
186
187
  "quote",
187
- "syn 2.0.94",
188
+ "syn",
188
189
  ]
189
190
 
190
191
  [[package]]
191
192
  name = "async-trait"
192
- version = "0.1.83"
193
+ version = "0.1.88"
193
194
  source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
195
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
195
196
  dependencies = [
196
197
  "proc-macro2",
197
198
  "quote",
198
- "syn 2.0.94",
199
- ]
200
-
201
- [[package]]
202
- name = "atoi"
203
- version = "2.0.0"
204
- source = "registry+https://github.com/rust-lang/crates.io-index"
205
- checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
206
- dependencies = [
207
- "num-traits",
199
+ "syn",
208
200
  ]
209
201
 
210
202
  [[package]]
@@ -248,9 +240,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
248
240
 
249
241
  [[package]]
250
242
  name = "bitflags"
251
- version = "2.6.0"
243
+ version = "2.9.0"
252
244
  source = "registry+https://github.com/rust-lang/crates.io-index"
253
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
245
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
254
246
 
255
247
  [[package]]
256
248
  name = "brotli"
@@ -265,9 +257,9 @@ dependencies = [
265
257
 
266
258
  [[package]]
267
259
  name = "brotli-decompressor"
268
- version = "4.0.1"
260
+ version = "4.0.2"
269
261
  source = "registry+https://github.com/rust-lang/crates.io-index"
270
- checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
262
+ checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
271
263
  dependencies = [
272
264
  "alloc-no-stdlib",
273
265
  "alloc-stdlib",
@@ -275,41 +267,35 @@ dependencies = [
275
267
 
276
268
  [[package]]
277
269
  name = "bumpalo"
278
- version = "3.16.0"
270
+ version = "3.17.0"
279
271
  source = "registry+https://github.com/rust-lang/crates.io-index"
280
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
272
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
281
273
 
282
274
  [[package]]
283
275
  name = "bytemuck"
284
- version = "1.21.0"
276
+ version = "1.22.0"
285
277
  source = "registry+https://github.com/rust-lang/crates.io-index"
286
- checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
278
+ checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
287
279
  dependencies = [
288
280
  "bytemuck_derive",
289
281
  ]
290
282
 
291
283
  [[package]]
292
284
  name = "bytemuck_derive"
293
- version = "1.8.1"
285
+ version = "1.9.3"
294
286
  source = "registry+https://github.com/rust-lang/crates.io-index"
295
- checksum = "3fa76293b4f7bb636ab88fd78228235b5248b4d05cc589aed610f954af5d7c7a"
287
+ checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
296
288
  dependencies = [
297
289
  "proc-macro2",
298
290
  "quote",
299
- "syn 2.0.94",
291
+ "syn",
300
292
  ]
301
293
 
302
- [[package]]
303
- name = "byteorder"
304
- version = "1.5.0"
305
- source = "registry+https://github.com/rust-lang/crates.io-index"
306
- checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
307
-
308
294
  [[package]]
309
295
  name = "bytes"
310
- version = "1.9.0"
296
+ version = "1.10.1"
311
297
  source = "registry+https://github.com/rust-lang/crates.io-index"
312
- checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
298
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
313
299
  dependencies = [
314
300
  "serde",
315
301
  ]
@@ -325,9 +311,9 @@ dependencies = [
325
311
 
326
312
  [[package]]
327
313
  name = "cc"
328
- version = "1.2.6"
314
+ version = "1.2.17"
329
315
  source = "registry+https://github.com/rust-lang/crates.io-index"
330
- checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
316
+ checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
331
317
  dependencies = [
332
318
  "jobserver",
333
319
  "libc",
@@ -342,16 +328,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
342
328
 
343
329
  [[package]]
344
330
  name = "chrono"
345
- version = "0.4.39"
331
+ version = "0.4.40"
346
332
  source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
333
+ checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
348
334
  dependencies = [
349
335
  "android-tzdata",
350
336
  "iana-time-zone",
351
337
  "js-sys",
352
338
  "num-traits",
353
339
  "wasm-bindgen",
354
- "windows-targets",
340
+ "windows-link",
355
341
  ]
356
342
 
357
343
  [[package]]
@@ -367,12 +353,12 @@ dependencies = [
367
353
 
368
354
  [[package]]
369
355
  name = "chrono-tz"
370
- version = "0.10.0"
356
+ version = "0.10.3"
371
357
  source = "registry+https://github.com/rust-lang/crates.io-index"
372
- checksum = "cd6dd8046d00723a59a2f8c5f295c515b9bb9a331ee4f8f3d4dd49e428acd3b6"
358
+ checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
373
359
  dependencies = [
374
360
  "chrono",
375
- "chrono-tz-build 0.4.0",
361
+ "chrono-tz-build 0.4.1",
376
362
  "phf",
377
363
  ]
378
364
 
@@ -389,9 +375,9 @@ dependencies = [
389
375
 
390
376
  [[package]]
391
377
  name = "chrono-tz-build"
392
- version = "0.4.0"
378
+ version = "0.4.1"
393
379
  source = "registry+https://github.com/rust-lang/crates.io-index"
394
- checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7"
380
+ checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
395
381
  dependencies = [
396
382
  "parse-zoneinfo",
397
383
  "phf_codegen",
@@ -405,13 +391,12 @@ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
405
391
 
406
392
  [[package]]
407
393
  name = "comfy-table"
408
- version = "7.1.3"
394
+ version = "7.1.4"
409
395
  source = "registry+https://github.com/rust-lang/crates.io-index"
410
- checksum = "24f165e7b643266ea80cb858aed492ad9280e3e05ce24d4a99d7d7b889b6a4d9"
396
+ checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
411
397
  dependencies = [
412
398
  "crossterm",
413
- "strum",
414
- "strum_macros",
399
+ "unicode-segmentation",
415
400
  "unicode-width",
416
401
  ]
417
402
 
@@ -512,15 +497,15 @@ dependencies = [
512
497
 
513
498
  [[package]]
514
499
  name = "dyn-clone"
515
- version = "1.0.17"
500
+ version = "1.0.19"
516
501
  source = "registry+https://github.com/rust-lang/crates.io-index"
517
- checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
502
+ checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
518
503
 
519
504
  [[package]]
520
505
  name = "either"
521
- version = "1.13.0"
506
+ version = "1.15.0"
522
507
  source = "registry+https://github.com/rust-lang/crates.io-index"
523
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
508
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
524
509
 
525
510
  [[package]]
526
511
  name = "enum_dispatch"
@@ -531,7 +516,7 @@ dependencies = [
531
516
  "once_cell",
532
517
  "proc-macro2",
533
518
  "quote",
534
- "syn 2.0.94",
519
+ "syn",
535
520
  ]
536
521
 
537
522
  [[package]]
@@ -546,22 +531,22 @@ dependencies = [
546
531
 
547
532
  [[package]]
548
533
  name = "env_logger"
549
- version = "0.11.6"
534
+ version = "0.11.7"
550
535
  source = "registry+https://github.com/rust-lang/crates.io-index"
551
- checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
536
+ checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
552
537
  dependencies = [
553
538
  "anstream",
554
539
  "anstyle",
555
540
  "env_filter",
556
- "humantime",
541
+ "jiff",
557
542
  "log",
558
543
  ]
559
544
 
560
545
  [[package]]
561
546
  name = "equivalent"
562
- version = "1.0.1"
547
+ version = "1.0.2"
563
548
  source = "registry+https://github.com/rust-lang/crates.io-index"
564
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
549
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
565
550
 
566
551
  [[package]]
567
552
  name = "errno"
@@ -602,11 +587,12 @@ dependencies = [
602
587
 
603
588
  [[package]]
604
589
  name = "flate2"
605
- version = "1.0.35"
590
+ version = "1.1.0"
606
591
  source = "registry+https://github.com/rust-lang/crates.io-index"
607
- checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
592
+ checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
608
593
  dependencies = [
609
594
  "crc32fast",
595
+ "libz-rs-sys",
610
596
  "miniz_oxide",
611
597
  ]
612
598
 
@@ -621,9 +607,9 @@ dependencies = [
621
607
 
622
608
  [[package]]
623
609
  name = "foldhash"
624
- version = "0.1.4"
610
+ version = "0.1.5"
625
611
  source = "registry+https://github.com/rust-lang/crates.io-index"
626
- checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
612
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
627
613
 
628
614
  [[package]]
629
615
  name = "fts"
@@ -711,7 +697,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
711
697
  dependencies = [
712
698
  "proc-macro2",
713
699
  "quote",
714
- "syn 2.0.94",
700
+ "syn",
715
701
  ]
716
702
 
717
703
  [[package]]
@@ -759,10 +745,22 @@ dependencies = [
759
745
  "cfg-if",
760
746
  "js-sys",
761
747
  "libc",
762
- "wasi",
748
+ "wasi 0.11.0+wasi-snapshot-preview1",
763
749
  "wasm-bindgen",
764
750
  ]
765
751
 
752
+ [[package]]
753
+ name = "getrandom"
754
+ version = "0.3.2"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
757
+ dependencies = [
758
+ "cfg-if",
759
+ "libc",
760
+ "r-efi",
761
+ "wasi 0.14.2+wasi-0.2.4",
762
+ ]
763
+
766
764
  [[package]]
767
765
  name = "gimli"
768
766
  version = "0.31.1"
@@ -837,22 +835,17 @@ dependencies = [
837
835
  "windows-sys 0.59.0",
838
836
  ]
839
837
 
840
- [[package]]
841
- name = "humantime"
842
- version = "2.1.0"
843
- source = "registry+https://github.com/rust-lang/crates.io-index"
844
- checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
845
-
846
838
  [[package]]
847
839
  name = "iana-time-zone"
848
- version = "0.1.61"
840
+ version = "0.1.62"
849
841
  source = "registry+https://github.com/rust-lang/crates.io-index"
850
- checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
842
+ checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127"
851
843
  dependencies = [
852
844
  "android_system_properties",
853
845
  "core-foundation-sys",
854
846
  "iana-time-zone-haiku",
855
847
  "js-sys",
848
+ "log",
856
849
  "wasm-bindgen",
857
850
  "windows-core 0.52.0",
858
851
  ]
@@ -868,9 +861,9 @@ dependencies = [
868
861
 
869
862
  [[package]]
870
863
  name = "indexmap"
871
- version = "2.7.0"
864
+ version = "2.8.0"
872
865
  source = "registry+https://github.com/rust-lang/crates.io-index"
873
- checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
866
+ checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
874
867
  dependencies = [
875
868
  "equivalent",
876
869
  "hashbrown 0.15.2",
@@ -879,9 +872,9 @@ dependencies = [
879
872
 
880
873
  [[package]]
881
874
  name = "indoc"
882
- version = "2.0.5"
875
+ version = "2.0.6"
883
876
  source = "registry+https://github.com/rust-lang/crates.io-index"
884
- checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
877
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
885
878
 
886
879
  [[package]]
887
880
  name = "is_terminal_polyfill"
@@ -891,15 +884,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
891
884
 
892
885
  [[package]]
893
886
  name = "itoa"
894
- version = "1.0.14"
887
+ version = "1.0.15"
895
888
  source = "registry+https://github.com/rust-lang/crates.io-index"
896
- checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
897
-
898
- [[package]]
899
- name = "itoap"
900
- version = "1.0.1"
901
- source = "registry+https://github.com/rust-lang/crates.io-index"
902
- checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
889
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
903
890
 
904
891
  [[package]]
905
892
  name = "jemalloc-sys"
@@ -921,6 +908,30 @@ dependencies = [
921
908
  "libc",
922
909
  ]
923
910
 
911
+ [[package]]
912
+ name = "jiff"
913
+ version = "0.2.5"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "c102670231191d07d37a35af3eb77f1f0dbf7a71be51a962dcd57ea607be7260"
916
+ dependencies = [
917
+ "jiff-static",
918
+ "log",
919
+ "portable-atomic",
920
+ "portable-atomic-util",
921
+ "serde",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "jiff-static"
926
+ version = "0.2.5"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
929
+ dependencies = [
930
+ "proc-macro2",
931
+ "quote",
932
+ "syn",
933
+ ]
934
+
924
935
  [[package]]
925
936
  name = "jobserver"
926
937
  version = "0.1.32"
@@ -932,9 +943,9 @@ dependencies = [
932
943
 
933
944
  [[package]]
934
945
  name = "js-sys"
935
- version = "0.3.76"
946
+ version = "0.3.77"
936
947
  source = "registry+https://github.com/rust-lang/crates.io-index"
937
- checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
948
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
938
949
  dependencies = [
939
950
  "once_cell",
940
951
  "wasm-bindgen",
@@ -942,15 +953,15 @@ dependencies = [
942
953
 
943
954
  [[package]]
944
955
  name = "json-event-parser"
945
- version = "0.2.0"
956
+ version = "0.2.2"
946
957
  source = "registry+https://github.com/rust-lang/crates.io-index"
947
- checksum = "f850fafca79ebacd70eab9d80cb75a33aeda38bde8f3dd784c1837cdf0bde631"
958
+ checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
948
959
 
949
960
  [[package]]
950
961
  name = "libc"
951
- version = "0.2.169"
962
+ version = "0.2.171"
952
963
  source = "registry+https://github.com/rust-lang/crates.io-index"
953
- checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
964
+ checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
954
965
 
955
966
  [[package]]
956
967
  name = "libm"
@@ -960,19 +971,28 @@ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
960
971
 
961
972
  [[package]]
962
973
  name = "libmimalloc-sys"
963
- version = "0.1.39"
974
+ version = "0.1.40"
964
975
  source = "registry+https://github.com/rust-lang/crates.io-index"
965
- checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
976
+ checksum = "07d0e07885d6a754b9c7993f2625187ad694ee985d60f23355ff0e7077261502"
966
977
  dependencies = [
967
978
  "cc",
968
979
  "libc",
969
980
  ]
970
981
 
982
+ [[package]]
983
+ name = "libz-rs-sys"
984
+ version = "0.4.2"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "902bc563b5d65ad9bba616b490842ef0651066a1a1dc3ce1087113ffcb873c8d"
987
+ dependencies = [
988
+ "zlib-rs",
989
+ ]
990
+
971
991
  [[package]]
972
992
  name = "linux-raw-sys"
973
- version = "0.4.14"
993
+ version = "0.4.15"
974
994
  source = "registry+https://github.com/rust-lang/crates.io-index"
975
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
995
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
976
996
 
977
997
  [[package]]
978
998
  name = "lock_api"
@@ -986,15 +1006,15 @@ dependencies = [
986
1006
 
987
1007
  [[package]]
988
1008
  name = "log"
989
- version = "0.4.22"
1009
+ version = "0.4.27"
990
1010
  source = "registry+https://github.com/rust-lang/crates.io-index"
991
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1011
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
992
1012
 
993
1013
  [[package]]
994
1014
  name = "lz4"
995
- version = "1.28.0"
1015
+ version = "1.28.1"
996
1016
  source = "registry+https://github.com/rust-lang/crates.io-index"
997
- checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725"
1017
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
998
1018
  dependencies = [
999
1019
  "lz4-sys",
1000
1020
  ]
@@ -1014,7 +1034,7 @@ name = "maplib"
1014
1034
  version = "0.6.0"
1015
1035
  dependencies = [
1016
1036
  "chrono",
1017
- "chrono-tz 0.10.0",
1037
+ "chrono-tz 0.10.3",
1018
1038
  "env_logger",
1019
1039
  "log",
1020
1040
  "oxiri",
@@ -1068,9 +1088,9 @@ dependencies = [
1068
1088
 
1069
1089
  [[package]]
1070
1090
  name = "mimalloc"
1071
- version = "0.1.43"
1091
+ version = "0.1.44"
1072
1092
  source = "registry+https://github.com/rust-lang/crates.io-index"
1073
- checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
1093
+ checksum = "99585191385958383e13f6b822e6b6d8d9cf928e7d286ceb092da92b43c87bc1"
1074
1094
  dependencies = [
1075
1095
  "libmimalloc-sys",
1076
1096
  ]
@@ -1083,9 +1103,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1083
1103
 
1084
1104
  [[package]]
1085
1105
  name = "miniz_oxide"
1086
- version = "0.8.2"
1106
+ version = "0.8.5"
1087
1107
  source = "registry+https://github.com/rust-lang/crates.io-index"
1088
- checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
1108
+ checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1089
1109
  dependencies = [
1090
1110
  "adler2",
1091
1111
  ]
@@ -1097,32 +1117,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
1117
  checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1098
1118
  dependencies = [
1099
1119
  "libc",
1100
- "wasi",
1120
+ "wasi 0.11.0+wasi-snapshot-preview1",
1101
1121
  "windows-sys 0.52.0",
1102
1122
  ]
1103
1123
 
1104
- [[package]]
1105
- name = "multiversion"
1106
- version = "0.7.4"
1107
- source = "registry+https://github.com/rust-lang/crates.io-index"
1108
- checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
1109
- dependencies = [
1110
- "multiversion-macros",
1111
- "target-features",
1112
- ]
1113
-
1114
- [[package]]
1115
- name = "multiversion-macros"
1116
- version = "0.7.4"
1117
- source = "registry+https://github.com/rust-lang/crates.io-index"
1118
- checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
1119
- dependencies = [
1120
- "proc-macro2",
1121
- "quote",
1122
- "syn 1.0.109",
1123
- "target-features",
1124
- ]
1125
-
1126
1124
  [[package]]
1127
1125
  name = "ndarray"
1128
1126
  version = "0.16.1"
@@ -1225,9 +1223,9 @@ dependencies = [
1225
1223
 
1226
1224
  [[package]]
1227
1225
  name = "once_cell"
1228
- version = "1.20.2"
1226
+ version = "1.21.3"
1229
1227
  source = "registry+https://github.com/rust-lang/crates.io-index"
1230
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1228
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1231
1229
 
1232
1230
  [[package]]
1233
1231
  name = "oxilangtag"
@@ -1240,28 +1238,28 @@ dependencies = [
1240
1238
 
1241
1239
  [[package]]
1242
1240
  name = "oxiri"
1243
- version = "0.2.9"
1241
+ version = "0.2.11"
1244
1242
  source = "registry+https://github.com/rust-lang/crates.io-index"
1245
- checksum = "6628603228a6483668f78b29dc400a33ff1444dd5eae0504e40b6ba3bf7d01de"
1243
+ checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
1246
1244
 
1247
1245
  [[package]]
1248
1246
  name = "oxrdf"
1249
- version = "0.2.3"
1247
+ version = "0.2.4"
1250
1248
  source = "registry+https://github.com/rust-lang/crates.io-index"
1251
- checksum = "934b857076ddaada5c987ef66c8a4e93ed10b7cd408ad15aa06a88762477a25d"
1249
+ checksum = "a04761319ef84de1f59782f189d072cbfc3a9a40c4e8bded8667202fbd35b02a"
1252
1250
  dependencies = [
1253
1251
  "oxilangtag",
1254
1252
  "oxiri",
1255
1253
  "oxsdatatypes",
1256
- "rand",
1254
+ "rand 0.8.5",
1257
1255
  "thiserror",
1258
1256
  ]
1259
1257
 
1260
1258
  [[package]]
1261
1259
  name = "oxrdfio"
1262
- version = "0.1.4"
1260
+ version = "0.1.7"
1263
1261
  source = "registry+https://github.com/rust-lang/crates.io-index"
1264
- checksum = "f841436309a8b23b3bf5ce5a3e7ba453017e47050c52e86eaadba371b1d54d4a"
1262
+ checksum = "47d45d81e8e5313e13f88da6c040f5edcd5aa48e91d1cdf0972f5bc79362890d"
1265
1263
  dependencies = [
1266
1264
  "oxrdf",
1267
1265
  "oxrdfxml",
@@ -1271,9 +1269,9 @@ dependencies = [
1271
1269
 
1272
1270
  [[package]]
1273
1271
  name = "oxrdfxml"
1274
- version = "0.1.4"
1272
+ version = "0.1.6"
1275
1273
  source = "registry+https://github.com/rust-lang/crates.io-index"
1276
- checksum = "63ea9f5735650707979481b08e03b0d9df7c348ca6ec1702d4c8994a872712bb"
1274
+ checksum = "7e00a36021b71d74281cf9ffbbda57210bb9cb84b7f28bda50a3ee9641b6ce5d"
1277
1275
  dependencies = [
1278
1276
  "oxilangtag",
1279
1277
  "oxiri",
@@ -1284,18 +1282,18 @@ dependencies = [
1284
1282
 
1285
1283
  [[package]]
1286
1284
  name = "oxsdatatypes"
1287
- version = "0.2.1"
1285
+ version = "0.2.2"
1288
1286
  source = "registry+https://github.com/rust-lang/crates.io-index"
1289
- checksum = "f3e0497e4fa5caa8e0d1cc750cb6546a98feb938f2d45db065aceb03210f741d"
1287
+ checksum = "06fa874d87eae638daae9b4e3198864fe2cce68589f227c0b2cf5b62b1530516"
1290
1288
  dependencies = [
1291
1289
  "thiserror",
1292
1290
  ]
1293
1291
 
1294
1292
  [[package]]
1295
1293
  name = "oxttl"
1296
- version = "0.1.4"
1294
+ version = "0.1.7"
1297
1295
  source = "registry+https://github.com/rust-lang/crates.io-index"
1298
- checksum = "31b818f1b4303ed67685ff113d0814d00ef4b06c80a5d59828b16495b27461ad"
1296
+ checksum = "2bc2f05b9179f1033582fe3ae58a96cb4311dd1a2116791c3236117d5427f275"
1299
1297
  dependencies = [
1300
1298
  "memchr",
1301
1299
  "oxilangtag",
@@ -1338,9 +1336,9 @@ dependencies = [
1338
1336
 
1339
1337
  [[package]]
1340
1338
  name = "peg"
1341
- version = "0.8.4"
1339
+ version = "0.8.5"
1342
1340
  source = "registry+https://github.com/rust-lang/crates.io-index"
1343
- checksum = "295283b02df346d1ef66052a757869b2876ac29a6bb0ac3f5f7cd44aebe40e8f"
1341
+ checksum = "9928cfca101b36ec5163e70049ee5368a8a1c3c6efc9ca9c5f9cc2f816152477"
1344
1342
  dependencies = [
1345
1343
  "peg-macros",
1346
1344
  "peg-runtime",
@@ -1348,9 +1346,9 @@ dependencies = [
1348
1346
 
1349
1347
  [[package]]
1350
1348
  name = "peg-macros"
1351
- version = "0.8.4"
1349
+ version = "0.8.5"
1352
1350
  source = "registry+https://github.com/rust-lang/crates.io-index"
1353
- checksum = "bdad6a1d9cf116a059582ce415d5f5566aabcd4008646779dab7fdc2a9a9d426"
1351
+ checksum = "6298ab04c202fa5b5d52ba03269fb7b74550b150323038878fe6c372d8280f71"
1354
1352
  dependencies = [
1355
1353
  "peg-runtime",
1356
1354
  "proc-macro2",
@@ -1359,9 +1357,9 @@ dependencies = [
1359
1357
 
1360
1358
  [[package]]
1361
1359
  name = "peg-runtime"
1362
- version = "0.8.3"
1360
+ version = "0.8.5"
1363
1361
  source = "registry+https://github.com/rust-lang/crates.io-index"
1364
- checksum = "e3aeb8f54c078314c2065ee649a7241f46b9d8e418e1a9581ba0546657d7aa3a"
1362
+ checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
1365
1363
 
1366
1364
  [[package]]
1367
1365
  name = "percent-encoding"
@@ -1371,18 +1369,18 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1371
1369
 
1372
1370
  [[package]]
1373
1371
  name = "phf"
1374
- version = "0.11.2"
1372
+ version = "0.11.3"
1375
1373
  source = "registry+https://github.com/rust-lang/crates.io-index"
1376
- checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
1374
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1377
1375
  dependencies = [
1378
1376
  "phf_shared",
1379
1377
  ]
1380
1378
 
1381
1379
  [[package]]
1382
1380
  name = "phf_codegen"
1383
- version = "0.11.2"
1381
+ version = "0.11.3"
1384
1382
  source = "registry+https://github.com/rust-lang/crates.io-index"
1385
- checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
1383
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1386
1384
  dependencies = [
1387
1385
  "phf_generator",
1388
1386
  "phf_shared",
@@ -1390,28 +1388,28 @@ dependencies = [
1390
1388
 
1391
1389
  [[package]]
1392
1390
  name = "phf_generator"
1393
- version = "0.11.2"
1391
+ version = "0.11.3"
1394
1392
  source = "registry+https://github.com/rust-lang/crates.io-index"
1395
- checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
1393
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1396
1394
  dependencies = [
1397
1395
  "phf_shared",
1398
- "rand",
1396
+ "rand 0.8.5",
1399
1397
  ]
1400
1398
 
1401
1399
  [[package]]
1402
1400
  name = "phf_shared"
1403
- version = "0.11.2"
1401
+ version = "0.11.3"
1404
1402
  source = "registry+https://github.com/rust-lang/crates.io-index"
1405
- checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
1403
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1406
1404
  dependencies = [
1407
1405
  "siphasher",
1408
1406
  ]
1409
1407
 
1410
1408
  [[package]]
1411
1409
  name = "pin-project-lite"
1412
- version = "0.2.15"
1410
+ version = "0.2.16"
1413
1411
  source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
1412
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1415
1413
 
1416
1414
  [[package]]
1417
1415
  name = "pin-utils"
@@ -1421,9 +1419,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1421
1419
 
1422
1420
  [[package]]
1423
1421
  name = "pkg-config"
1424
- version = "0.3.31"
1422
+ version = "0.3.32"
1425
1423
  source = "registry+https://github.com/rust-lang/crates.io-index"
1426
- checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1424
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1427
1425
 
1428
1426
  [[package]]
1429
1427
  name = "planus"
@@ -1436,10 +1434,10 @@ dependencies = [
1436
1434
 
1437
1435
  [[package]]
1438
1436
  name = "polars"
1439
- version = "0.45.1"
1440
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1437
+ version = "0.46.0"
1438
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1441
1439
  dependencies = [
1442
- "getrandom",
1440
+ "getrandom 0.2.15",
1443
1441
  "polars-arrow",
1444
1442
  "polars-core",
1445
1443
  "polars-error",
@@ -1456,22 +1454,20 @@ dependencies = [
1456
1454
 
1457
1455
  [[package]]
1458
1456
  name = "polars-arrow"
1459
- version = "0.45.1"
1460
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1457
+ version = "0.46.0"
1458
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1461
1459
  dependencies = [
1462
- "ahash",
1463
- "atoi",
1460
+ "atoi_simd",
1464
1461
  "bytemuck",
1465
1462
  "chrono",
1466
- "chrono-tz 0.10.0",
1463
+ "chrono-tz 0.10.3",
1467
1464
  "dyn-clone",
1468
1465
  "either",
1469
1466
  "ethnum",
1470
- "getrandom",
1467
+ "getrandom 0.2.15",
1471
1468
  "hashbrown 0.15.2",
1472
- "itoap",
1469
+ "itoa",
1473
1470
  "lz4",
1474
- "multiversion",
1475
1471
  "num-traits",
1476
1472
  "parking_lot",
1477
1473
  "polars-arrow-format",
@@ -1498,35 +1494,36 @@ dependencies = [
1498
1494
 
1499
1495
  [[package]]
1500
1496
  name = "polars-compute"
1501
- version = "0.45.1"
1502
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1497
+ version = "0.46.0"
1498
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1503
1499
  dependencies = [
1504
1500
  "atoi_simd",
1505
1501
  "bytemuck",
1506
1502
  "chrono",
1507
1503
  "either",
1508
1504
  "fast-float2",
1505
+ "hashbrown 0.15.2",
1509
1506
  "itoa",
1510
- "itoap",
1511
1507
  "num-traits",
1512
1508
  "polars-arrow",
1513
1509
  "polars-error",
1514
1510
  "polars-utils",
1511
+ "rand 0.8.5",
1515
1512
  "ryu",
1516
1513
  "strength_reduce",
1514
+ "strum_macros",
1517
1515
  "version_check",
1518
1516
  ]
1519
1517
 
1520
1518
  [[package]]
1521
1519
  name = "polars-core"
1522
- version = "0.45.1"
1523
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1520
+ version = "0.46.0"
1521
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1524
1522
  dependencies = [
1525
- "ahash",
1526
1523
  "bitflags",
1527
1524
  "bytemuck",
1528
1525
  "chrono",
1529
- "chrono-tz 0.10.0",
1526
+ "chrono-tz 0.10.3",
1530
1527
  "comfy-table",
1531
1528
  "either",
1532
1529
  "hashbrown 0.14.5",
@@ -1534,44 +1531,41 @@ dependencies = [
1534
1531
  "indexmap",
1535
1532
  "itoa",
1536
1533
  "num-traits",
1537
- "once_cell",
1538
1534
  "polars-arrow",
1539
1535
  "polars-compute",
1540
1536
  "polars-error",
1541
1537
  "polars-row",
1542
1538
  "polars-schema",
1543
1539
  "polars-utils",
1544
- "rand",
1540
+ "rand 0.8.5",
1545
1541
  "rand_distr",
1546
1542
  "rayon",
1547
1543
  "regex",
1548
1544
  "strum_macros",
1549
- "thiserror",
1550
1545
  "version_check",
1551
1546
  "xxhash-rust",
1552
1547
  ]
1553
1548
 
1554
1549
  [[package]]
1555
1550
  name = "polars-error"
1556
- version = "0.45.1"
1557
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1551
+ version = "0.46.0"
1552
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1558
1553
  dependencies = [
1554
+ "parking_lot",
1559
1555
  "polars-arrow-format",
1560
1556
  "regex",
1557
+ "signal-hook",
1561
1558
  "simdutf8",
1562
- "thiserror",
1563
1559
  ]
1564
1560
 
1565
1561
  [[package]]
1566
1562
  name = "polars-expr"
1567
- version = "0.45.1"
1568
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1563
+ version = "0.46.0"
1564
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1569
1565
  dependencies = [
1570
- "ahash",
1571
1566
  "bitflags",
1572
1567
  "hashbrown 0.15.2",
1573
1568
  "num-traits",
1574
- "once_cell",
1575
1569
  "polars-arrow",
1576
1570
  "polars-compute",
1577
1571
  "polars-core",
@@ -1581,21 +1575,20 @@ dependencies = [
1581
1575
  "polars-row",
1582
1576
  "polars-time",
1583
1577
  "polars-utils",
1584
- "rand",
1578
+ "rand 0.8.5",
1585
1579
  "rayon",
1586
1580
  ]
1587
1581
 
1588
1582
  [[package]]
1589
1583
  name = "polars-io"
1590
- version = "0.45.1"
1591
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1584
+ version = "0.46.0"
1585
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1592
1586
  dependencies = [
1593
- "ahash",
1594
1587
  "async-trait",
1595
1588
  "atoi_simd",
1596
1589
  "bytes",
1597
1590
  "chrono",
1598
- "chrono-tz 0.10.0",
1591
+ "chrono-tz 0.10.3",
1599
1592
  "fast-float2",
1600
1593
  "futures",
1601
1594
  "glob",
@@ -1605,7 +1598,6 @@ dependencies = [
1605
1598
  "memchr",
1606
1599
  "memmap2",
1607
1600
  "num-traits",
1608
- "once_cell",
1609
1601
  "percent-encoding",
1610
1602
  "polars-arrow",
1611
1603
  "polars-core",
@@ -1625,12 +1617,11 @@ dependencies = [
1625
1617
 
1626
1618
  [[package]]
1627
1619
  name = "polars-json"
1628
- version = "0.45.1"
1629
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1620
+ version = "0.46.0"
1621
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1630
1622
  dependencies = [
1631
- "ahash",
1632
1623
  "chrono",
1633
- "chrono-tz 0.10.0",
1624
+ "chrono-tz 0.10.3",
1634
1625
  "fallible-streaming-iterator",
1635
1626
  "hashbrown 0.15.2",
1636
1627
  "indexmap",
@@ -1647,14 +1638,15 @@ dependencies = [
1647
1638
 
1648
1639
  [[package]]
1649
1640
  name = "polars-lazy"
1650
- version = "0.45.1"
1651
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1641
+ version = "0.46.0"
1642
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1652
1643
  dependencies = [
1653
- "ahash",
1654
1644
  "bitflags",
1645
+ "chrono",
1646
+ "either",
1655
1647
  "memchr",
1656
- "once_cell",
1657
1648
  "polars-arrow",
1649
+ "polars-compute",
1658
1650
  "polars-core",
1659
1651
  "polars-expr",
1660
1652
  "polars-io",
@@ -1671,8 +1663,8 @@ dependencies = [
1671
1663
 
1672
1664
  [[package]]
1673
1665
  name = "polars-mem-engine"
1674
- version = "0.45.1"
1675
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1666
+ version = "0.46.0"
1667
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1676
1668
  dependencies = [
1677
1669
  "memmap2",
1678
1670
  "polars-arrow",
@@ -1685,19 +1677,19 @@ dependencies = [
1685
1677
  "polars-time",
1686
1678
  "polars-utils",
1687
1679
  "rayon",
1680
+ "recursive",
1688
1681
  ]
1689
1682
 
1690
1683
  [[package]]
1691
1684
  name = "polars-ops"
1692
- version = "0.45.1"
1693
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1685
+ version = "0.46.0"
1686
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1694
1687
  dependencies = [
1695
- "ahash",
1696
1688
  "argminmax",
1697
1689
  "base64",
1698
1690
  "bytemuck",
1699
1691
  "chrono",
1700
- "chrono-tz 0.10.0",
1692
+ "chrono-tz 0.10.3",
1701
1693
  "either",
1702
1694
  "hashbrown 0.15.2",
1703
1695
  "hex",
@@ -1714,16 +1706,16 @@ dependencies = [
1714
1706
  "regex",
1715
1707
  "regex-syntax",
1716
1708
  "strum_macros",
1709
+ "unicode-normalization",
1717
1710
  "unicode-reverse",
1718
1711
  "version_check",
1719
1712
  ]
1720
1713
 
1721
1714
  [[package]]
1722
1715
  name = "polars-parquet"
1723
- version = "0.45.1"
1724
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1716
+ version = "0.46.0"
1717
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1725
1718
  dependencies = [
1726
- "ahash",
1727
1719
  "async-stream",
1728
1720
  "base64",
1729
1721
  "brotli",
@@ -1757,8 +1749,8 @@ dependencies = [
1757
1749
 
1758
1750
  [[package]]
1759
1751
  name = "polars-pipe"
1760
- version = "0.45.1"
1761
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1752
+ version = "0.46.0"
1753
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1762
1754
  dependencies = [
1763
1755
  "crossbeam-channel",
1764
1756
  "crossbeam-queue",
@@ -1782,20 +1774,18 @@ dependencies = [
1782
1774
 
1783
1775
  [[package]]
1784
1776
  name = "polars-plan"
1785
- version = "0.45.1"
1786
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1777
+ version = "0.46.0"
1778
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1787
1779
  dependencies = [
1788
- "ahash",
1789
1780
  "bitflags",
1790
1781
  "bytemuck",
1791
1782
  "bytes",
1792
1783
  "chrono",
1793
- "chrono-tz 0.10.0",
1784
+ "chrono-tz 0.10.3",
1794
1785
  "either",
1795
1786
  "hashbrown 0.15.2",
1796
1787
  "memmap2",
1797
1788
  "num-traits",
1798
- "once_cell",
1799
1789
  "percent-encoding",
1800
1790
  "polars-arrow",
1801
1791
  "polars-compute",
@@ -1814,8 +1804,8 @@ dependencies = [
1814
1804
 
1815
1805
  [[package]]
1816
1806
  name = "polars-row"
1817
- version = "0.45.1"
1818
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1807
+ version = "0.46.0"
1808
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1819
1809
  dependencies = [
1820
1810
  "bitflags",
1821
1811
  "bytemuck",
@@ -1827,8 +1817,8 @@ dependencies = [
1827
1817
 
1828
1818
  [[package]]
1829
1819
  name = "polars-schema"
1830
- version = "0.45.1"
1831
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1820
+ version = "0.46.0"
1821
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1832
1822
  dependencies = [
1833
1823
  "indexmap",
1834
1824
  "polars-error",
@@ -1838,12 +1828,11 @@ dependencies = [
1838
1828
 
1839
1829
  [[package]]
1840
1830
  name = "polars-sql"
1841
- version = "0.45.1"
1842
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1831
+ version = "0.46.0"
1832
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1843
1833
  dependencies = [
1834
+ "bitflags",
1844
1835
  "hex",
1845
- "once_cell",
1846
- "polars-arrow",
1847
1836
  "polars-core",
1848
1837
  "polars-error",
1849
1838
  "polars-lazy",
@@ -1851,24 +1840,30 @@ dependencies = [
1851
1840
  "polars-plan",
1852
1841
  "polars-time",
1853
1842
  "polars-utils",
1854
- "rand",
1843
+ "rand 0.8.5",
1844
+ "regex",
1855
1845
  "serde",
1856
- "serde_json",
1857
1846
  "sqlparser",
1858
1847
  ]
1859
1848
 
1860
1849
  [[package]]
1861
1850
  name = "polars-stream"
1862
- version = "0.45.1"
1863
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1851
+ version = "0.46.0"
1852
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1864
1853
  dependencies = [
1854
+ "async-trait",
1865
1855
  "atomic-waker",
1856
+ "bitflags",
1857
+ "crossbeam-channel",
1866
1858
  "crossbeam-deque",
1859
+ "crossbeam-queue",
1867
1860
  "crossbeam-utils",
1868
1861
  "futures",
1869
1862
  "memmap2",
1870
1863
  "parking_lot",
1864
+ "percent-encoding",
1871
1865
  "pin-project-lite",
1866
+ "polars-arrow",
1872
1867
  "polars-core",
1873
1868
  "polars-error",
1874
1869
  "polars-expr",
@@ -1878,7 +1873,7 @@ dependencies = [
1878
1873
  "polars-parquet",
1879
1874
  "polars-plan",
1880
1875
  "polars-utils",
1881
- "rand",
1876
+ "rand 0.8.5",
1882
1877
  "rayon",
1883
1878
  "recursive",
1884
1879
  "slotmap",
@@ -1888,42 +1883,42 @@ dependencies = [
1888
1883
 
1889
1884
  [[package]]
1890
1885
  name = "polars-time"
1891
- version = "0.45.1"
1892
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1886
+ version = "0.46.0"
1887
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1893
1888
  dependencies = [
1894
- "atoi",
1889
+ "atoi_simd",
1895
1890
  "bytemuck",
1896
1891
  "chrono",
1897
- "chrono-tz 0.10.0",
1892
+ "chrono-tz 0.10.3",
1898
1893
  "now",
1899
- "once_cell",
1894
+ "num-traits",
1900
1895
  "polars-arrow",
1901
1896
  "polars-compute",
1902
1897
  "polars-core",
1903
1898
  "polars-error",
1904
1899
  "polars-ops",
1905
1900
  "polars-utils",
1901
+ "rayon",
1906
1902
  "regex",
1907
1903
  "strum_macros",
1908
1904
  ]
1909
1905
 
1910
1906
  [[package]]
1911
1907
  name = "polars-utils"
1912
- version = "0.45.1"
1913
- source = "git+https://github.com/pola-rs/polars?rev=841c387d99d7024037556c4ef79d96bf2caac397#841c387d99d7024037556c4ef79d96bf2caac397"
1908
+ version = "0.46.0"
1909
+ source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
1914
1910
  dependencies = [
1915
- "ahash",
1916
1911
  "bytemuck",
1917
1912
  "bytes",
1918
1913
  "compact_str",
1914
+ "foldhash",
1919
1915
  "hashbrown 0.15.2",
1920
1916
  "indexmap",
1921
1917
  "libc",
1922
1918
  "memmap2",
1923
1919
  "num-traits",
1924
- "once_cell",
1925
1920
  "polars-error",
1926
- "rand",
1921
+ "rand 0.8.5",
1927
1922
  "raw-cpuid",
1928
1923
  "rayon",
1929
1924
  "stacker",
@@ -1933,9 +1928,9 @@ dependencies = [
1933
1928
 
1934
1929
  [[package]]
1935
1930
  name = "portable-atomic"
1936
- version = "1.10.0"
1931
+ version = "1.11.0"
1937
1932
  source = "registry+https://github.com/rust-lang/crates.io-index"
1938
- checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
1933
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1939
1934
 
1940
1935
  [[package]]
1941
1936
  name = "portable-atomic-util"
@@ -1948,43 +1943,43 @@ dependencies = [
1948
1943
 
1949
1944
  [[package]]
1950
1945
  name = "ppv-lite86"
1951
- version = "0.2.20"
1946
+ version = "0.2.21"
1952
1947
  source = "registry+https://github.com/rust-lang/crates.io-index"
1953
- checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1948
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1954
1949
  dependencies = [
1955
- "zerocopy",
1950
+ "zerocopy 0.8.24",
1956
1951
  ]
1957
1952
 
1958
1953
  [[package]]
1959
1954
  name = "proc-macro-crate"
1960
- version = "3.2.0"
1955
+ version = "3.3.0"
1961
1956
  source = "registry+https://github.com/rust-lang/crates.io-index"
1962
- checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
1957
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
1963
1958
  dependencies = [
1964
1959
  "toml_edit",
1965
1960
  ]
1966
1961
 
1967
1962
  [[package]]
1968
1963
  name = "proc-macro2"
1969
- version = "1.0.92"
1964
+ version = "1.0.94"
1970
1965
  source = "registry+https://github.com/rust-lang/crates.io-index"
1971
- checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
1966
+ checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
1972
1967
  dependencies = [
1973
1968
  "unicode-ident",
1974
1969
  ]
1975
1970
 
1976
1971
  [[package]]
1977
1972
  name = "psm"
1978
- version = "0.1.24"
1973
+ version = "0.1.25"
1979
1974
  source = "registry+https://github.com/rust-lang/crates.io-index"
1980
- checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810"
1975
+ checksum = "f58e5423e24c18cc840e1c98370b3993c6649cd1678b4d24318bcf0a083cbe88"
1981
1976
  dependencies = [
1982
1977
  "cc",
1983
1978
  ]
1984
1979
 
1985
1980
  [[package]]
1986
1981
  name = "py_maplib"
1987
- version = "0.15.4"
1982
+ version = "0.15.11"
1988
1983
  dependencies = [
1989
1984
  "jemallocator",
1990
1985
  "log",
@@ -2075,7 +2070,7 @@ dependencies = [
2075
2070
  "proc-macro2",
2076
2071
  "pyo3-macros-backend",
2077
2072
  "quote",
2078
- "syn 2.0.94",
2073
+ "syn",
2079
2074
  ]
2080
2075
 
2081
2076
  [[package]]
@@ -2088,7 +2083,7 @@ dependencies = [
2088
2083
  "proc-macro2",
2089
2084
  "pyo3-build-config",
2090
2085
  "quote",
2091
- "syn 2.0.94",
2086
+ "syn",
2092
2087
  ]
2093
2088
 
2094
2089
  [[package]]
@@ -2108,22 +2103,28 @@ dependencies = [
2108
2103
 
2109
2104
  [[package]]
2110
2105
  name = "quick-xml"
2111
- version = "0.37.2"
2106
+ version = "0.37.3"
2112
2107
  source = "registry+https://github.com/rust-lang/crates.io-index"
2113
- checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003"
2108
+ checksum = "bf763ab1c7a3aa408be466efc86efe35ed1bd3dd74173ed39d6b0d0a6f0ba148"
2114
2109
  dependencies = [
2115
2110
  "memchr",
2116
2111
  ]
2117
2112
 
2118
2113
  [[package]]
2119
2114
  name = "quote"
2120
- version = "1.0.38"
2115
+ version = "1.0.40"
2121
2116
  source = "registry+https://github.com/rust-lang/crates.io-index"
2122
- checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2117
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2123
2118
  dependencies = [
2124
2119
  "proc-macro2",
2125
2120
  ]
2126
2121
 
2122
+ [[package]]
2123
+ name = "r-efi"
2124
+ version = "5.2.0"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2127
+
2127
2128
  [[package]]
2128
2129
  name = "rand"
2129
2130
  version = "0.8.5"
@@ -2131,8 +2132,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
2132
  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2132
2133
  dependencies = [
2133
2134
  "libc",
2134
- "rand_chacha",
2135
- "rand_core",
2135
+ "rand_chacha 0.3.1",
2136
+ "rand_core 0.6.4",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "rand"
2141
+ version = "0.9.0"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2144
+ dependencies = [
2145
+ "rand_chacha 0.9.0",
2146
+ "rand_core 0.9.3",
2147
+ "zerocopy 0.8.24",
2136
2148
  ]
2137
2149
 
2138
2150
  [[package]]
@@ -2142,7 +2154,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
2154
  checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2143
2155
  dependencies = [
2144
2156
  "ppv-lite86",
2145
- "rand_core",
2157
+ "rand_core 0.6.4",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "rand_chacha"
2162
+ version = "0.9.0"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2165
+ dependencies = [
2166
+ "ppv-lite86",
2167
+ "rand_core 0.9.3",
2146
2168
  ]
2147
2169
 
2148
2170
  [[package]]
@@ -2151,7 +2173,16 @@ version = "0.6.4"
2151
2173
  source = "registry+https://github.com/rust-lang/crates.io-index"
2152
2174
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2153
2175
  dependencies = [
2154
- "getrandom",
2176
+ "getrandom 0.2.15",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "rand_core"
2181
+ version = "0.9.3"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2184
+ dependencies = [
2185
+ "getrandom 0.3.2",
2155
2186
  ]
2156
2187
 
2157
2188
  [[package]]
@@ -2161,14 +2192,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
2192
  checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2162
2193
  dependencies = [
2163
2194
  "num-traits",
2164
- "rand",
2195
+ "rand 0.8.5",
2165
2196
  ]
2166
2197
 
2167
2198
  [[package]]
2168
2199
  name = "raw-cpuid"
2169
- version = "11.2.0"
2200
+ version = "11.5.0"
2170
2201
  source = "registry+https://github.com/rust-lang/crates.io-index"
2171
- checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
2202
+ checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
2172
2203
  dependencies = [
2173
2204
  "bitflags",
2174
2205
  ]
@@ -2216,36 +2247,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
2247
  checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2217
2248
  dependencies = [
2218
2249
  "quote",
2219
- "syn 2.0.94",
2250
+ "syn",
2220
2251
  ]
2221
2252
 
2222
2253
  [[package]]
2223
2254
  name = "redox_syscall"
2224
- version = "0.5.8"
2255
+ version = "0.5.10"
2225
2256
  source = "registry+https://github.com/rust-lang/crates.io-index"
2226
- checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2257
+ checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
2227
2258
  dependencies = [
2228
2259
  "bitflags",
2229
2260
  ]
2230
2261
 
2231
2262
  [[package]]
2232
2263
  name = "ref-cast"
2233
- version = "1.0.23"
2264
+ version = "1.0.24"
2234
2265
  source = "registry+https://github.com/rust-lang/crates.io-index"
2235
- checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
2266
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
2236
2267
  dependencies = [
2237
2268
  "ref-cast-impl",
2238
2269
  ]
2239
2270
 
2240
2271
  [[package]]
2241
2272
  name = "ref-cast-impl"
2242
- version = "1.0.23"
2273
+ version = "1.0.24"
2243
2274
  source = "registry+https://github.com/rust-lang/crates.io-index"
2244
- checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
2275
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
2245
2276
  dependencies = [
2246
2277
  "proc-macro2",
2247
2278
  "quote",
2248
- "syn 2.0.94",
2279
+ "syn",
2249
2280
  ]
2250
2281
 
2251
2282
  [[package]]
@@ -2297,7 +2328,7 @@ name = "representation"
2297
2328
  version = "0.6.10"
2298
2329
  dependencies = [
2299
2330
  "chrono",
2300
- "chrono-tz 0.10.0",
2331
+ "chrono-tz 0.10.3",
2301
2332
  "log",
2302
2333
  "oxrdf",
2303
2334
  "oxsdatatypes",
@@ -2336,7 +2367,7 @@ dependencies = [
2336
2367
  "regex",
2337
2368
  "relative-path",
2338
2369
  "rustc_version",
2339
- "syn 2.0.94",
2370
+ "syn",
2340
2371
  "unicode-ident",
2341
2372
  ]
2342
2373
 
@@ -2357,9 +2388,9 @@ dependencies = [
2357
2388
 
2358
2389
  [[package]]
2359
2390
  name = "rustix"
2360
- version = "0.38.42"
2391
+ version = "0.38.44"
2361
2392
  source = "registry+https://github.com/rust-lang/crates.io-index"
2362
- checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
2393
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2363
2394
  dependencies = [
2364
2395
  "bitflags",
2365
2396
  "errno",
@@ -2370,15 +2401,15 @@ dependencies = [
2370
2401
 
2371
2402
  [[package]]
2372
2403
  name = "rustversion"
2373
- version = "1.0.19"
2404
+ version = "1.0.20"
2374
2405
  source = "registry+https://github.com/rust-lang/crates.io-index"
2375
- checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
2406
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2376
2407
 
2377
2408
  [[package]]
2378
2409
  name = "ryu"
2379
- version = "1.0.18"
2410
+ version = "1.0.20"
2380
2411
  source = "registry+https://github.com/rust-lang/crates.io-index"
2381
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2412
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2382
2413
 
2383
2414
  [[package]]
2384
2415
  name = "same-file"
@@ -2391,9 +2422,9 @@ dependencies = [
2391
2422
 
2392
2423
  [[package]]
2393
2424
  name = "scc"
2394
- version = "2.3.0"
2425
+ version = "2.3.3"
2395
2426
  source = "registry+https://github.com/rust-lang/crates.io-index"
2396
- checksum = "28e1c91382686d21b5ac7959341fcb9780fa7c03773646995a87c950fa7be640"
2427
+ checksum = "ea091f6cac2595aa38993f04f4ee692ed43757035c36e67c180b6828356385b1"
2397
2428
  dependencies = [
2398
2429
  "sdd",
2399
2430
  ]
@@ -2406,41 +2437,41 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2406
2437
 
2407
2438
  [[package]]
2408
2439
  name = "sdd"
2409
- version = "3.0.5"
2440
+ version = "3.0.8"
2410
2441
  source = "registry+https://github.com/rust-lang/crates.io-index"
2411
- checksum = "478f121bb72bbf63c52c93011ea1791dca40140dfe13f8336c4c5ac952c33aa9"
2442
+ checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21"
2412
2443
 
2413
2444
  [[package]]
2414
2445
  name = "semver"
2415
- version = "1.0.24"
2446
+ version = "1.0.26"
2416
2447
  source = "registry+https://github.com/rust-lang/crates.io-index"
2417
- checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
2448
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2418
2449
 
2419
2450
  [[package]]
2420
2451
  name = "serde"
2421
- version = "1.0.217"
2452
+ version = "1.0.219"
2422
2453
  source = "registry+https://github.com/rust-lang/crates.io-index"
2423
- checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
2454
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2424
2455
  dependencies = [
2425
2456
  "serde_derive",
2426
2457
  ]
2427
2458
 
2428
2459
  [[package]]
2429
2460
  name = "serde_derive"
2430
- version = "1.0.217"
2461
+ version = "1.0.219"
2431
2462
  source = "registry+https://github.com/rust-lang/crates.io-index"
2432
- checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
2463
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2433
2464
  dependencies = [
2434
2465
  "proc-macro2",
2435
2466
  "quote",
2436
- "syn 2.0.94",
2467
+ "syn",
2437
2468
  ]
2438
2469
 
2439
2470
  [[package]]
2440
2471
  name = "serde_json"
2441
- version = "1.0.134"
2472
+ version = "1.0.140"
2442
2473
  source = "registry+https://github.com/rust-lang/crates.io-index"
2443
- checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
2474
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2444
2475
  dependencies = [
2445
2476
  "itoa",
2446
2477
  "memchr",
@@ -2470,13 +2501,15 @@ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
2470
2501
  dependencies = [
2471
2502
  "proc-macro2",
2472
2503
  "quote",
2473
- "syn 2.0.94",
2504
+ "syn",
2474
2505
  ]
2475
2506
 
2476
2507
  [[package]]
2477
2508
  name = "shacl"
2478
2509
  version = "0.1.0"
2479
2510
  dependencies = [
2511
+ "oxrdf",
2512
+ "polars",
2480
2513
  "representation",
2481
2514
  "thiserror",
2482
2515
  "triplestore",
@@ -2488,6 +2521,25 @@ version = "1.3.0"
2488
2521
  source = "registry+https://github.com/rust-lang/crates.io-index"
2489
2522
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2490
2523
 
2524
+ [[package]]
2525
+ name = "signal-hook"
2526
+ version = "0.3.17"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
2529
+ dependencies = [
2530
+ "libc",
2531
+ "signal-hook-registry",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "signal-hook-registry"
2536
+ version = "1.4.2"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2539
+ dependencies = [
2540
+ "libc",
2541
+ ]
2542
+
2491
2543
  [[package]]
2492
2544
  name = "simd-json"
2493
2545
  version = "0.14.3"
@@ -2495,7 +2547,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
2547
  checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
2496
2548
  dependencies = [
2497
2549
  "ahash",
2498
- "getrandom",
2550
+ "getrandom 0.2.15",
2499
2551
  "halfbrown",
2500
2552
  "once_cell",
2501
2553
  "ref-cast",
@@ -2513,9 +2565,9 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2513
2565
 
2514
2566
  [[package]]
2515
2567
  name = "siphasher"
2516
- version = "0.3.11"
2568
+ version = "1.0.1"
2517
2569
  source = "registry+https://github.com/rust-lang/crates.io-index"
2518
- checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2570
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2519
2571
 
2520
2572
  [[package]]
2521
2573
  name = "slab"
@@ -2537,9 +2589,9 @@ dependencies = [
2537
2589
 
2538
2590
  [[package]]
2539
2591
  name = "smallvec"
2540
- version = "1.13.2"
2592
+ version = "1.14.0"
2541
2593
  source = "registry+https://github.com/rust-lang/crates.io-index"
2542
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2594
+ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
2543
2595
 
2544
2596
  [[package]]
2545
2597
  name = "snap"
@@ -2559,9 +2611,9 @@ dependencies = [
2559
2611
 
2560
2612
  [[package]]
2561
2613
  name = "sparesults"
2562
- version = "0.2.3"
2614
+ version = "0.2.4"
2563
2615
  source = "registry+https://github.com/rust-lang/crates.io-index"
2564
- checksum = "7d5d1bfb0d8dcd4e44080619bb791d20b3c1d06f2525172304711ee8ebb351fb"
2616
+ checksum = "4b845f8f37245959132c0561bb737c28eb9c0b693b92535fc5c3965a9390724d"
2565
2617
  dependencies = [
2566
2618
  "json-event-parser",
2567
2619
  "memchr",
@@ -2580,15 +2632,15 @@ dependencies = [
2580
2632
  "oxiri",
2581
2633
  "oxrdf",
2582
2634
  "peg",
2583
- "rand",
2635
+ "rand 0.8.5",
2584
2636
  "thiserror",
2585
2637
  ]
2586
2638
 
2587
2639
  [[package]]
2588
2640
  name = "sprs"
2589
- version = "0.11.2"
2641
+ version = "0.11.3"
2590
2642
  source = "registry+https://github.com/rust-lang/crates.io-index"
2591
- checksum = "704ef26d974e8a452313ed629828cd9d4e4fa34667ca1ad9d6b1fffa43c6e166"
2643
+ checksum = "8bff8419009a08f6cb7519a602c5590241fbff1446bcc823c07af15386eb801b"
2592
2644
  dependencies = [
2593
2645
  "alga",
2594
2646
  "ndarray",
@@ -2601,18 +2653,18 @@ dependencies = [
2601
2653
 
2602
2654
  [[package]]
2603
2655
  name = "sqlparser"
2604
- version = "0.52.0"
2656
+ version = "0.53.0"
2605
2657
  source = "registry+https://github.com/rust-lang/crates.io-index"
2606
- checksum = "9a875d8cd437cc8a97e9aeaeea352ec9a19aea99c23e9effb17757291de80b08"
2658
+ checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
2607
2659
  dependencies = [
2608
2660
  "log",
2609
2661
  ]
2610
2662
 
2611
2663
  [[package]]
2612
2664
  name = "stacker"
2613
- version = "0.1.17"
2665
+ version = "0.1.20"
2614
2666
  source = "registry+https://github.com/rust-lang/crates.io-index"
2615
- checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b"
2667
+ checksum = "601f9201feb9b09c00266478bf459952b9ef9a6b94edb2f21eba14ab681a60a9"
2616
2668
  dependencies = [
2617
2669
  "cc",
2618
2670
  "cfg-if",
@@ -2648,12 +2700,6 @@ version = "0.2.4"
2648
2700
  source = "registry+https://github.com/rust-lang/crates.io-index"
2649
2701
  checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
2650
2702
 
2651
- [[package]]
2652
- name = "strum"
2653
- version = "0.26.3"
2654
- source = "registry+https://github.com/rust-lang/crates.io-index"
2655
- checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
2656
-
2657
2703
  [[package]]
2658
2704
  name = "strum_macros"
2659
2705
  version = "0.26.4"
@@ -2664,25 +2710,14 @@ dependencies = [
2664
2710
  "proc-macro2",
2665
2711
  "quote",
2666
2712
  "rustversion",
2667
- "syn 2.0.94",
2713
+ "syn",
2668
2714
  ]
2669
2715
 
2670
2716
  [[package]]
2671
2717
  name = "syn"
2672
- version = "1.0.109"
2718
+ version = "2.0.100"
2673
2719
  source = "registry+https://github.com/rust-lang/crates.io-index"
2674
- checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2675
- dependencies = [
2676
- "proc-macro2",
2677
- "quote",
2678
- "unicode-ident",
2679
- ]
2680
-
2681
- [[package]]
2682
- name = "syn"
2683
- version = "2.0.94"
2684
- source = "registry+https://github.com/rust-lang/crates.io-index"
2685
- checksum = "987bc0be1cdea8b10216bd06e2ca407d40b9543468fafd3ddfb02f36e77f71f3"
2720
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2686
2721
  dependencies = [
2687
2722
  "proc-macro2",
2688
2723
  "quote",
@@ -2702,12 +2737,6 @@ dependencies = [
2702
2737
  "windows",
2703
2738
  ]
2704
2739
 
2705
- [[package]]
2706
- name = "target-features"
2707
- version = "0.1.6"
2708
- source = "registry+https://github.com/rust-lang/crates.io-index"
2709
- checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
2710
-
2711
2740
  [[package]]
2712
2741
  name = "target-lexicon"
2713
2742
  version = "0.12.16"
@@ -2730,29 +2759,44 @@ dependencies = [
2730
2759
 
2731
2760
  [[package]]
2732
2761
  name = "thiserror"
2733
- version = "2.0.9"
2762
+ version = "2.0.12"
2734
2763
  source = "registry+https://github.com/rust-lang/crates.io-index"
2735
- checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
2764
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2736
2765
  dependencies = [
2737
2766
  "thiserror-impl",
2738
2767
  ]
2739
2768
 
2740
2769
  [[package]]
2741
2770
  name = "thiserror-impl"
2742
- version = "2.0.9"
2771
+ version = "2.0.12"
2743
2772
  source = "registry+https://github.com/rust-lang/crates.io-index"
2744
- checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
2773
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2745
2774
  dependencies = [
2746
2775
  "proc-macro2",
2747
2776
  "quote",
2748
- "syn 2.0.94",
2777
+ "syn",
2749
2778
  ]
2750
2779
 
2780
+ [[package]]
2781
+ name = "tinyvec"
2782
+ version = "1.9.0"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2785
+ dependencies = [
2786
+ "tinyvec_macros",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "tinyvec_macros"
2791
+ version = "0.1.1"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2794
+
2751
2795
  [[package]]
2752
2796
  name = "tokio"
2753
- version = "1.42.0"
2797
+ version = "1.44.1"
2754
2798
  source = "registry+https://github.com/rust-lang/crates.io-index"
2755
- checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
2799
+ checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
2756
2800
  dependencies = [
2757
2801
  "backtrace",
2758
2802
  "bytes",
@@ -2765,9 +2809,9 @@ dependencies = [
2765
2809
 
2766
2810
  [[package]]
2767
2811
  name = "tokio-util"
2768
- version = "0.7.13"
2812
+ version = "0.7.14"
2769
2813
  source = "registry+https://github.com/rust-lang/crates.io-index"
2770
- checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
2814
+ checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
2771
2815
  dependencies = [
2772
2816
  "bytes",
2773
2817
  "futures-core",
@@ -2784,9 +2828,9 @@ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
2784
2828
 
2785
2829
  [[package]]
2786
2830
  name = "toml_edit"
2787
- version = "0.22.22"
2831
+ version = "0.22.24"
2788
2832
  source = "registry+https://github.com/rust-lang/crates.io-index"
2789
- checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
2833
+ checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
2790
2834
  dependencies = [
2791
2835
  "indexmap",
2792
2836
  "toml_datetime",
@@ -2826,9 +2870,18 @@ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
2826
2870
 
2827
2871
  [[package]]
2828
2872
  name = "unicode-ident"
2829
- version = "1.0.14"
2873
+ version = "1.0.18"
2874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2875
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2876
+
2877
+ [[package]]
2878
+ name = "unicode-normalization"
2879
+ version = "0.1.24"
2830
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2831
- checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
2881
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2882
+ dependencies = [
2883
+ "tinyvec",
2884
+ ]
2832
2885
 
2833
2886
  [[package]]
2834
2887
  name = "unicode-reverse"
@@ -2853,9 +2906,9 @@ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
2853
2906
 
2854
2907
  [[package]]
2855
2908
  name = "unindent"
2856
- version = "0.2.3"
2909
+ version = "0.2.4"
2857
2910
  source = "registry+https://github.com/rust-lang/crates.io-index"
2858
- checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
2911
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2859
2912
 
2860
2913
  [[package]]
2861
2914
  name = "utf8parse"
@@ -2865,12 +2918,12 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2865
2918
 
2866
2919
  [[package]]
2867
2920
  name = "uuid"
2868
- version = "1.11.0"
2921
+ version = "1.16.0"
2869
2922
  source = "registry+https://github.com/rust-lang/crates.io-index"
2870
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
2923
+ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
2871
2924
  dependencies = [
2872
- "getrandom",
2873
- "rand",
2925
+ "getrandom 0.3.2",
2926
+ "rand 0.9.0",
2874
2927
  ]
2875
2928
 
2876
2929
  [[package]]
@@ -2907,36 +2960,46 @@ version = "0.11.0+wasi-snapshot-preview1"
2907
2960
  source = "registry+https://github.com/rust-lang/crates.io-index"
2908
2961
  checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2909
2962
 
2963
+ [[package]]
2964
+ name = "wasi"
2965
+ version = "0.14.2+wasi-0.2.4"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2968
+ dependencies = [
2969
+ "wit-bindgen-rt",
2970
+ ]
2971
+
2910
2972
  [[package]]
2911
2973
  name = "wasm-bindgen"
2912
- version = "0.2.99"
2974
+ version = "0.2.100"
2913
2975
  source = "registry+https://github.com/rust-lang/crates.io-index"
2914
- checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
2976
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2915
2977
  dependencies = [
2916
2978
  "cfg-if",
2917
2979
  "once_cell",
2980
+ "rustversion",
2918
2981
  "wasm-bindgen-macro",
2919
2982
  ]
2920
2983
 
2921
2984
  [[package]]
2922
2985
  name = "wasm-bindgen-backend"
2923
- version = "0.2.99"
2986
+ version = "0.2.100"
2924
2987
  source = "registry+https://github.com/rust-lang/crates.io-index"
2925
- checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
2988
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2926
2989
  dependencies = [
2927
2990
  "bumpalo",
2928
2991
  "log",
2929
2992
  "proc-macro2",
2930
2993
  "quote",
2931
- "syn 2.0.94",
2994
+ "syn",
2932
2995
  "wasm-bindgen-shared",
2933
2996
  ]
2934
2997
 
2935
2998
  [[package]]
2936
2999
  name = "wasm-bindgen-macro"
2937
- version = "0.2.99"
3000
+ version = "0.2.100"
2938
3001
  source = "registry+https://github.com/rust-lang/crates.io-index"
2939
- checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
3002
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2940
3003
  dependencies = [
2941
3004
  "quote",
2942
3005
  "wasm-bindgen-macro-support",
@@ -2944,22 +3007,25 @@ dependencies = [
2944
3007
 
2945
3008
  [[package]]
2946
3009
  name = "wasm-bindgen-macro-support"
2947
- version = "0.2.99"
3010
+ version = "0.2.100"
2948
3011
  source = "registry+https://github.com/rust-lang/crates.io-index"
2949
- checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
3012
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2950
3013
  dependencies = [
2951
3014
  "proc-macro2",
2952
3015
  "quote",
2953
- "syn 2.0.94",
3016
+ "syn",
2954
3017
  "wasm-bindgen-backend",
2955
3018
  "wasm-bindgen-shared",
2956
3019
  ]
2957
3020
 
2958
3021
  [[package]]
2959
3022
  name = "wasm-bindgen-shared"
2960
- version = "0.2.99"
3023
+ version = "0.2.100"
2961
3024
  source = "registry+https://github.com/rust-lang/crates.io-index"
2962
- checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
3025
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3026
+ dependencies = [
3027
+ "unicode-ident",
3028
+ ]
2963
3029
 
2964
3030
  [[package]]
2965
3031
  name = "winapi"
@@ -3031,7 +3097,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3031
3097
  dependencies = [
3032
3098
  "proc-macro2",
3033
3099
  "quote",
3034
- "syn 2.0.94",
3100
+ "syn",
3035
3101
  ]
3036
3102
 
3037
3103
  [[package]]
@@ -3042,9 +3108,15 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
3042
3108
  dependencies = [
3043
3109
  "proc-macro2",
3044
3110
  "quote",
3045
- "syn 2.0.94",
3111
+ "syn",
3046
3112
  ]
3047
3113
 
3114
+ [[package]]
3115
+ name = "windows-link"
3116
+ version = "0.1.1"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3119
+
3048
3120
  [[package]]
3049
3121
  name = "windows-result"
3050
3122
  version = "0.1.2"
@@ -3138,13 +3210,22 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3138
3210
 
3139
3211
  [[package]]
3140
3212
  name = "winnow"
3141
- version = "0.6.21"
3213
+ version = "0.7.4"
3142
3214
  source = "registry+https://github.com/rust-lang/crates.io-index"
3143
- checksum = "e6f5bb5257f2407a5425c6e749bfd9692192a73e70a6060516ac04f889087d68"
3215
+ checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
3144
3216
  dependencies = [
3145
3217
  "memchr",
3146
3218
  ]
3147
3219
 
3220
+ [[package]]
3221
+ name = "wit-bindgen-rt"
3222
+ version = "0.39.0"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3225
+ dependencies = [
3226
+ "bitflags",
3227
+ ]
3228
+
3148
3229
  [[package]]
3149
3230
  name = "xxhash-rust"
3150
3231
  version = "0.8.15"
@@ -3157,8 +3238,16 @@ version = "0.7.35"
3157
3238
  source = "registry+https://github.com/rust-lang/crates.io-index"
3158
3239
  checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
3159
3240
  dependencies = [
3160
- "byteorder",
3161
- "zerocopy-derive",
3241
+ "zerocopy-derive 0.7.35",
3242
+ ]
3243
+
3244
+ [[package]]
3245
+ name = "zerocopy"
3246
+ version = "0.8.24"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3249
+ dependencies = [
3250
+ "zerocopy-derive 0.8.24",
3162
3251
  ]
3163
3252
 
3164
3253
  [[package]]
@@ -3169,32 +3258,49 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
3169
3258
  dependencies = [
3170
3259
  "proc-macro2",
3171
3260
  "quote",
3172
- "syn 2.0.94",
3261
+ "syn",
3262
+ ]
3263
+
3264
+ [[package]]
3265
+ name = "zerocopy-derive"
3266
+ version = "0.8.24"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3269
+ dependencies = [
3270
+ "proc-macro2",
3271
+ "quote",
3272
+ "syn",
3173
3273
  ]
3174
3274
 
3275
+ [[package]]
3276
+ name = "zlib-rs"
3277
+ version = "0.4.2"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "8b20717f0917c908dc63de2e44e97f1e6b126ca58d0e391cee86d504eb8fbd05"
3280
+
3175
3281
  [[package]]
3176
3282
  name = "zstd"
3177
- version = "0.13.2"
3283
+ version = "0.13.3"
3178
3284
  source = "registry+https://github.com/rust-lang/crates.io-index"
3179
- checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
3285
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3180
3286
  dependencies = [
3181
3287
  "zstd-safe",
3182
3288
  ]
3183
3289
 
3184
3290
  [[package]]
3185
3291
  name = "zstd-safe"
3186
- version = "7.2.1"
3292
+ version = "7.2.4"
3187
3293
  source = "registry+https://github.com/rust-lang/crates.io-index"
3188
- checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
3294
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3189
3295
  dependencies = [
3190
3296
  "zstd-sys",
3191
3297
  ]
3192
3298
 
3193
3299
  [[package]]
3194
3300
  name = "zstd-sys"
3195
- version = "2.0.13+zstd.1.5.6"
3301
+ version = "2.0.15+zstd.1.5.7"
3196
3302
  source = "registry+https://github.com/rust-lang/crates.io-index"
3197
- checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
3303
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
3198
3304
  dependencies = [
3199
3305
  "cc",
3200
3306
  "pkg-config",