maplib 0.15.6__tar.gz → 0.15.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {maplib-0.15.6 → maplib-0.15.13}/Cargo.lock +392 -284
- {maplib-0.15.6 → maplib-0.15.13}/Cargo.toml +6 -6
- {maplib-0.15.6 → maplib-0.15.13}/PKG-INFO +4 -4
- {maplib-0.15.6 → maplib-0.15.13}/README.md +3 -3
- maplib-0.15.13/lib/cimxml/Cargo.toml +11 -0
- maplib-0.15.13/lib/cimxml/src/lib.rs +18 -0
- maplib-0.15.13/lib/datalog/Cargo.toml +12 -0
- maplib-0.15.13/lib/datalog/src/ast.rs +8 -0
- maplib-0.15.13/lib/datalog/src/inference.rs +21 -0
- maplib-0.15.13/lib/datalog/src/lib.rs +3 -0
- maplib-0.15.13/lib/datalog/src/parser.rs +16 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/file_io/src/lib.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/Cargo.toml +2 -0
- maplib-0.15.13/lib/maplib/src/errors.rs +45 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/src/mapping/constant_terms.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/src/mapping/default.rs +9 -12
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/src/mapping/errors.rs +10 -36
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/src/mapping/expansion/validation.rs +6 -9
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/src/mapping/expansion.rs +3 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/src/mapping.rs +122 -39
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/tests/test_stottr.rs +11 -30
- {maplib-0.15.6 → maplib-0.15.13}/lib/pydf_io/src/to_python.rs +10 -9
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/aggregates.rs +10 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/constants.rs +2 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/expressions.rs +66 -70
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/graph_patterns.rs +5 -5
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/pushdowns.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/formatting.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/multitype.rs +15 -15
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/polars_to_rdf.rs +8 -8
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/python.rs +57 -35
- maplib-0.15.13/lib/representation/src/rdf_to_polars.rs +453 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/solution_mapping.rs +2 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/shacl/Cargo.toml +3 -1
- maplib-0.15.13/lib/shacl/src/errors.rs +8 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/shacl/src/lib.rs +32 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/shacl/src/storage.rs +2 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/parser.rs +39 -17
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/dblf.rs +8 -3
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/errors.rs +8 -11
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/lib.rs +56 -13
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/query_solutions.rs +4 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/rdfs_inferencing.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_aggregate.rs +13 -3
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_expressions.rs +38 -3
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +4 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +6 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +7 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +11 -4
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +10 -10
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +33 -7
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_order.rs +3 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql.rs +22 -8
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/storage.rs +39 -47
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/triples_read.rs +25 -8
- maplib-0.15.13/maplib/__init__.py +60 -0
- maplib-0.15.6/py_maplib/maplib/maplib.pyi → maplib-0.15.13/maplib/__init__.pyi +52 -4
- {maplib-0.15.6 → maplib-0.15.13}/maplib/add_triples.py +8 -2
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/Cargo.toml +1 -1
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/README.md +3 -3
- maplib-0.15.13/py_maplib/maplib/__init__.py +60 -0
- maplib-0.15.6/maplib/maplib.pyi → maplib-0.15.13/py_maplib/maplib/__init__.pyi +52 -4
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/maplib/add_triples.py +8 -2
- maplib-0.15.13/py_maplib/src/error.rs +50 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/src/lib.rs +131 -42
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/src/shacl.rs +26 -8
- maplib-0.15.13/py_maplib/tests/test_exceptions.py +9 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_pizza_example.py +23 -3
- maplib-0.15.6/lib/maplib/src/errors.rs +0 -11
- maplib-0.15.6/lib/representation/src/rdf_to_polars.rs +0 -405
- maplib-0.15.6/lib/shacl/src/errors.rs +0 -4
- maplib-0.15.6/maplib/__init__.py +0 -9
- maplib-0.15.6/py_maplib/maplib/__init__.py +0 -9
- maplib-0.15.6/py_maplib/src/error.rs +0 -91
- {maplib-0.15.6 → maplib-0.15.13}/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/file_io/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/fts/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/fts/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/pydf_io/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/pydf_io/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/pydf_io/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/pydf_io/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/pydf_io/src/to_rust.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/exists_helper.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/find_query_variables.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/query_processing/src/type_constraints.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/report_mapping/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/report_mapping/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/literals.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/query_context.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/representation/src/subtypes.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/algebra.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/query.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/query_context.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/remove_sugar.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/term.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/treehouse.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/spargebra/src/update.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/ast.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/compatible.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/constants.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/dataset/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/dataset.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/document.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/parsing/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/parsing/nom_parsing.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/parsing/parser_test.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/parsing/parsing_ast.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/parsing.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/python.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/resolver.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/templates/src/subtypes_ext.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/io_funcs.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/native_parquet_write.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/triples_write/serializers.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/lib/triplestore/src/triples_write.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/maplib/py.typed +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/maplib/.gitignore +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/maplib/py.typed +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/.gitignore +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/__init__.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/out.ttl +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/requirements.txt +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_basics.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_data_validation.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_integration.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_multi_expressions.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_rdf_parser.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_read_write.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/test_validate_iris.py +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/larger_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_concat.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/property_path_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/simple_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.13}/pyproject.toml +0 -0
|
@@ -162,9 +162,21 @@ dependencies = [
|
|
|
162
162
|
|
|
163
163
|
[[package]]
|
|
164
164
|
name = "array-init-cursor"
|
|
165
|
-
version = "0.2.
|
|
165
|
+
version = "0.2.1"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "async-channel"
|
|
171
|
+
version = "2.3.1"
|
|
166
172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
-
checksum = "
|
|
173
|
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"concurrent-queue",
|
|
176
|
+
"event-listener-strategy",
|
|
177
|
+
"futures-core",
|
|
178
|
+
"pin-project-lite",
|
|
179
|
+
]
|
|
168
180
|
|
|
169
181
|
[[package]]
|
|
170
182
|
name = "async-stream"
|
|
@@ -185,27 +197,18 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
|
185
197
|
dependencies = [
|
|
186
198
|
"proc-macro2",
|
|
187
199
|
"quote",
|
|
188
|
-
"syn
|
|
200
|
+
"syn",
|
|
189
201
|
]
|
|
190
202
|
|
|
191
203
|
[[package]]
|
|
192
204
|
name = "async-trait"
|
|
193
|
-
version = "0.1.
|
|
205
|
+
version = "0.1.88"
|
|
194
206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "
|
|
207
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
196
208
|
dependencies = [
|
|
197
209
|
"proc-macro2",
|
|
198
210
|
"quote",
|
|
199
|
-
"syn
|
|
200
|
-
]
|
|
201
|
-
|
|
202
|
-
[[package]]
|
|
203
|
-
name = "atoi"
|
|
204
|
-
version = "2.0.0"
|
|
205
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
-
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
207
|
-
dependencies = [
|
|
208
|
-
"num-traits",
|
|
211
|
+
"syn",
|
|
209
212
|
]
|
|
210
213
|
|
|
211
214
|
[[package]]
|
|
@@ -291,13 +294,13 @@ dependencies = [
|
|
|
291
294
|
|
|
292
295
|
[[package]]
|
|
293
296
|
name = "bytemuck_derive"
|
|
294
|
-
version = "1.
|
|
297
|
+
version = "1.9.3"
|
|
295
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
-
checksum = "
|
|
299
|
+
checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
|
297
300
|
dependencies = [
|
|
298
301
|
"proc-macro2",
|
|
299
302
|
"quote",
|
|
300
|
-
"syn
|
|
303
|
+
"syn",
|
|
301
304
|
]
|
|
302
305
|
|
|
303
306
|
[[package]]
|
|
@@ -320,9 +323,9 @@ dependencies = [
|
|
|
320
323
|
|
|
321
324
|
[[package]]
|
|
322
325
|
name = "cc"
|
|
323
|
-
version = "1.2.
|
|
326
|
+
version = "1.2.19"
|
|
324
327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
-
checksum = "
|
|
328
|
+
checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
|
326
329
|
dependencies = [
|
|
327
330
|
"jobserver",
|
|
328
331
|
"libc",
|
|
@@ -351,45 +354,32 @@ dependencies = [
|
|
|
351
354
|
|
|
352
355
|
[[package]]
|
|
353
356
|
name = "chrono-tz"
|
|
354
|
-
version = "0.
|
|
355
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
|
|
357
|
-
dependencies = [
|
|
358
|
-
"chrono",
|
|
359
|
-
"chrono-tz-build 0.3.0",
|
|
360
|
-
"phf",
|
|
361
|
-
]
|
|
362
|
-
|
|
363
|
-
[[package]]
|
|
364
|
-
name = "chrono-tz"
|
|
365
|
-
version = "0.10.1"
|
|
357
|
+
version = "0.10.3"
|
|
366
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "
|
|
359
|
+
checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
|
|
368
360
|
dependencies = [
|
|
369
361
|
"chrono",
|
|
370
|
-
"chrono-tz-build
|
|
362
|
+
"chrono-tz-build",
|
|
371
363
|
"phf",
|
|
372
364
|
]
|
|
373
365
|
|
|
374
366
|
[[package]]
|
|
375
367
|
name = "chrono-tz-build"
|
|
376
|
-
version = "0.
|
|
368
|
+
version = "0.4.1"
|
|
377
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
-
checksum = "
|
|
370
|
+
checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
|
|
379
371
|
dependencies = [
|
|
380
372
|
"parse-zoneinfo",
|
|
381
|
-
"phf",
|
|
382
373
|
"phf_codegen",
|
|
383
374
|
]
|
|
384
375
|
|
|
385
376
|
[[package]]
|
|
386
|
-
name = "
|
|
387
|
-
version = "0.
|
|
388
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
-
checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7"
|
|
377
|
+
name = "cimxml"
|
|
378
|
+
version = "0.1.0"
|
|
390
379
|
dependencies = [
|
|
391
|
-
"
|
|
392
|
-
"
|
|
380
|
+
"oxrdf",
|
|
381
|
+
"thiserror",
|
|
382
|
+
"triplestore",
|
|
393
383
|
]
|
|
394
384
|
|
|
395
385
|
[[package]]
|
|
@@ -424,6 +414,15 @@ dependencies = [
|
|
|
424
414
|
"static_assertions",
|
|
425
415
|
]
|
|
426
416
|
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "concurrent-queue"
|
|
419
|
+
version = "2.5.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"crossbeam-utils",
|
|
424
|
+
]
|
|
425
|
+
|
|
427
426
|
[[package]]
|
|
428
427
|
name = "core-foundation-sys"
|
|
429
428
|
version = "0.8.7"
|
|
@@ -441,9 +440,9 @@ dependencies = [
|
|
|
441
440
|
|
|
442
441
|
[[package]]
|
|
443
442
|
name = "crossbeam-channel"
|
|
444
|
-
version = "0.5.
|
|
443
|
+
version = "0.5.15"
|
|
445
444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
-
checksum = "
|
|
445
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
447
446
|
dependencies = [
|
|
448
447
|
"crossbeam-utils",
|
|
449
448
|
]
|
|
@@ -504,6 +503,16 @@ dependencies = [
|
|
|
504
503
|
"winapi",
|
|
505
504
|
]
|
|
506
505
|
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "datalog"
|
|
508
|
+
version = "0.1.0"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"oxrdf",
|
|
511
|
+
"representation",
|
|
512
|
+
"thiserror",
|
|
513
|
+
"triplestore",
|
|
514
|
+
]
|
|
515
|
+
|
|
507
516
|
[[package]]
|
|
508
517
|
name = "dyn-clone"
|
|
509
518
|
version = "1.0.19"
|
|
@@ -525,7 +534,7 @@ dependencies = [
|
|
|
525
534
|
"once_cell",
|
|
526
535
|
"proc-macro2",
|
|
527
536
|
"quote",
|
|
528
|
-
"syn
|
|
537
|
+
"syn",
|
|
529
538
|
]
|
|
530
539
|
|
|
531
540
|
[[package]]
|
|
@@ -540,9 +549,9 @@ dependencies = [
|
|
|
540
549
|
|
|
541
550
|
[[package]]
|
|
542
551
|
name = "env_logger"
|
|
543
|
-
version = "0.11.
|
|
552
|
+
version = "0.11.8"
|
|
544
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
-
checksum = "
|
|
554
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
546
555
|
dependencies = [
|
|
547
556
|
"anstream",
|
|
548
557
|
"anstyle",
|
|
@@ -559,9 +568,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
559
568
|
|
|
560
569
|
[[package]]
|
|
561
570
|
name = "errno"
|
|
562
|
-
version = "0.3.
|
|
571
|
+
version = "0.3.11"
|
|
563
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
573
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
565
574
|
dependencies = [
|
|
566
575
|
"libc",
|
|
567
576
|
"windows-sys 0.59.0",
|
|
@@ -573,6 +582,27 @@ version = "1.5.0"
|
|
|
573
582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
583
|
checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
|
|
575
584
|
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "event-listener"
|
|
587
|
+
version = "5.4.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"concurrent-queue",
|
|
592
|
+
"parking",
|
|
593
|
+
"pin-project-lite",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "event-listener-strategy"
|
|
598
|
+
version = "0.5.4"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"event-listener",
|
|
603
|
+
"pin-project-lite",
|
|
604
|
+
]
|
|
605
|
+
|
|
576
606
|
[[package]]
|
|
577
607
|
name = "fallible-streaming-iterator"
|
|
578
608
|
version = "0.1.9"
|
|
@@ -596,11 +626,12 @@ dependencies = [
|
|
|
596
626
|
|
|
597
627
|
[[package]]
|
|
598
628
|
name = "flate2"
|
|
599
|
-
version = "1.1.
|
|
629
|
+
version = "1.1.1"
|
|
600
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
-
checksum = "
|
|
631
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
602
632
|
dependencies = [
|
|
603
633
|
"crc32fast",
|
|
634
|
+
"libz-rs-sys",
|
|
604
635
|
"miniz_oxide",
|
|
605
636
|
]
|
|
606
637
|
|
|
@@ -615,9 +646,9 @@ dependencies = [
|
|
|
615
646
|
|
|
616
647
|
[[package]]
|
|
617
648
|
name = "foldhash"
|
|
618
|
-
version = "0.1.
|
|
649
|
+
version = "0.1.5"
|
|
619
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
651
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
621
652
|
|
|
622
653
|
[[package]]
|
|
623
654
|
name = "fts"
|
|
@@ -705,7 +736,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
705
736
|
dependencies = [
|
|
706
737
|
"proc-macro2",
|
|
707
738
|
"quote",
|
|
708
|
-
"syn
|
|
739
|
+
"syn",
|
|
709
740
|
]
|
|
710
741
|
|
|
711
742
|
[[package]]
|
|
@@ -759,14 +790,14 @@ dependencies = [
|
|
|
759
790
|
|
|
760
791
|
[[package]]
|
|
761
792
|
name = "getrandom"
|
|
762
|
-
version = "0.3.
|
|
793
|
+
version = "0.3.2"
|
|
763
794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
-
checksum = "
|
|
795
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
765
796
|
dependencies = [
|
|
766
797
|
"cfg-if",
|
|
767
798
|
"libc",
|
|
768
|
-
"
|
|
769
|
-
"
|
|
799
|
+
"r-efi",
|
|
800
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
770
801
|
]
|
|
771
802
|
|
|
772
803
|
[[package]]
|
|
@@ -845,16 +876,17 @@ dependencies = [
|
|
|
845
876
|
|
|
846
877
|
[[package]]
|
|
847
878
|
name = "iana-time-zone"
|
|
848
|
-
version = "0.1.
|
|
879
|
+
version = "0.1.63"
|
|
849
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
-
checksum = "
|
|
881
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
851
882
|
dependencies = [
|
|
852
883
|
"android_system_properties",
|
|
853
884
|
"core-foundation-sys",
|
|
854
885
|
"iana-time-zone-haiku",
|
|
855
886
|
"js-sys",
|
|
887
|
+
"log",
|
|
856
888
|
"wasm-bindgen",
|
|
857
|
-
"windows-core 0.
|
|
889
|
+
"windows-core 0.61.0",
|
|
858
890
|
]
|
|
859
891
|
|
|
860
892
|
[[package]]
|
|
@@ -868,9 +900,9 @@ dependencies = [
|
|
|
868
900
|
|
|
869
901
|
[[package]]
|
|
870
902
|
name = "indexmap"
|
|
871
|
-
version = "2.
|
|
903
|
+
version = "2.9.0"
|
|
872
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
-
checksum = "
|
|
905
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
874
906
|
dependencies = [
|
|
875
907
|
"equivalent",
|
|
876
908
|
"hashbrown 0.15.2",
|
|
@@ -895,12 +927,6 @@ version = "1.0.15"
|
|
|
895
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
928
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
897
929
|
|
|
898
|
-
[[package]]
|
|
899
|
-
name = "itoap"
|
|
900
|
-
version = "1.0.1"
|
|
901
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
-
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
|
903
|
-
|
|
904
930
|
[[package]]
|
|
905
931
|
name = "jemalloc-sys"
|
|
906
932
|
version = "0.5.4+5.3.0-patched"
|
|
@@ -923,9 +949,9 @@ dependencies = [
|
|
|
923
949
|
|
|
924
950
|
[[package]]
|
|
925
951
|
name = "jiff"
|
|
926
|
-
version = "0.2.
|
|
952
|
+
version = "0.2.6"
|
|
927
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
-
checksum = "
|
|
954
|
+
checksum = "1f33145a5cbea837164362c7bd596106eb7c5198f97d1ba6f6ebb3223952e488"
|
|
929
955
|
dependencies = [
|
|
930
956
|
"jiff-static",
|
|
931
957
|
"log",
|
|
@@ -936,21 +962,22 @@ dependencies = [
|
|
|
936
962
|
|
|
937
963
|
[[package]]
|
|
938
964
|
name = "jiff-static"
|
|
939
|
-
version = "0.2.
|
|
965
|
+
version = "0.2.6"
|
|
940
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
-
checksum = "
|
|
967
|
+
checksum = "43ce13c40ec6956157a3635d97a1ee2df323b263f09ea14165131289cb0f5c19"
|
|
942
968
|
dependencies = [
|
|
943
969
|
"proc-macro2",
|
|
944
970
|
"quote",
|
|
945
|
-
"syn
|
|
971
|
+
"syn",
|
|
946
972
|
]
|
|
947
973
|
|
|
948
974
|
[[package]]
|
|
949
975
|
name = "jobserver"
|
|
950
|
-
version = "0.1.
|
|
976
|
+
version = "0.1.33"
|
|
951
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
-
checksum = "
|
|
978
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
953
979
|
dependencies = [
|
|
980
|
+
"getrandom 0.3.2",
|
|
954
981
|
"libc",
|
|
955
982
|
]
|
|
956
983
|
|
|
@@ -972,9 +999,9 @@ checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
|
|
|
972
999
|
|
|
973
1000
|
[[package]]
|
|
974
1001
|
name = "libc"
|
|
975
|
-
version = "0.2.
|
|
1002
|
+
version = "0.2.171"
|
|
976
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
-
checksum = "
|
|
1004
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
978
1005
|
|
|
979
1006
|
[[package]]
|
|
980
1007
|
name = "libm"
|
|
@@ -984,14 +1011,23 @@ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
|
|
984
1011
|
|
|
985
1012
|
[[package]]
|
|
986
1013
|
name = "libmimalloc-sys"
|
|
987
|
-
version = "0.1.
|
|
1014
|
+
version = "0.1.42"
|
|
988
1015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
1016
|
+
checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
|
|
990
1017
|
dependencies = [
|
|
991
1018
|
"cc",
|
|
992
1019
|
"libc",
|
|
993
1020
|
]
|
|
994
1021
|
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "libz-rs-sys"
|
|
1024
|
+
version = "0.5.0"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"zlib-rs",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
995
1031
|
[[package]]
|
|
996
1032
|
name = "linux-raw-sys"
|
|
997
1033
|
version = "0.4.15"
|
|
@@ -1010,9 +1046,9 @@ dependencies = [
|
|
|
1010
1046
|
|
|
1011
1047
|
[[package]]
|
|
1012
1048
|
name = "log"
|
|
1013
|
-
version = "0.4.
|
|
1049
|
+
version = "0.4.27"
|
|
1014
1050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
-
checksum = "
|
|
1051
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1016
1052
|
|
|
1017
1053
|
[[package]]
|
|
1018
1054
|
name = "lz4"
|
|
@@ -1038,7 +1074,9 @@ name = "maplib"
|
|
|
1038
1074
|
version = "0.6.0"
|
|
1039
1075
|
dependencies = [
|
|
1040
1076
|
"chrono",
|
|
1041
|
-
"chrono-tz
|
|
1077
|
+
"chrono-tz",
|
|
1078
|
+
"cimxml",
|
|
1079
|
+
"datalog",
|
|
1042
1080
|
"env_logger",
|
|
1043
1081
|
"log",
|
|
1044
1082
|
"oxiri",
|
|
@@ -1092,9 +1130,9 @@ dependencies = [
|
|
|
1092
1130
|
|
|
1093
1131
|
[[package]]
|
|
1094
1132
|
name = "mimalloc"
|
|
1095
|
-
version = "0.1.
|
|
1133
|
+
version = "0.1.46"
|
|
1096
1134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
-
checksum = "
|
|
1135
|
+
checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
|
|
1098
1136
|
dependencies = [
|
|
1099
1137
|
"libmimalloc-sys",
|
|
1100
1138
|
]
|
|
@@ -1107,9 +1145,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1107
1145
|
|
|
1108
1146
|
[[package]]
|
|
1109
1147
|
name = "miniz_oxide"
|
|
1110
|
-
version = "0.8.
|
|
1148
|
+
version = "0.8.8"
|
|
1111
1149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
-
checksum = "
|
|
1150
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
1113
1151
|
dependencies = [
|
|
1114
1152
|
"adler2",
|
|
1115
1153
|
]
|
|
@@ -1125,28 +1163,6 @@ dependencies = [
|
|
|
1125
1163
|
"windows-sys 0.52.0",
|
|
1126
1164
|
]
|
|
1127
1165
|
|
|
1128
|
-
[[package]]
|
|
1129
|
-
name = "multiversion"
|
|
1130
|
-
version = "0.7.4"
|
|
1131
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
-
checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
|
|
1133
|
-
dependencies = [
|
|
1134
|
-
"multiversion-macros",
|
|
1135
|
-
"target-features",
|
|
1136
|
-
]
|
|
1137
|
-
|
|
1138
|
-
[[package]]
|
|
1139
|
-
name = "multiversion-macros"
|
|
1140
|
-
version = "0.7.4"
|
|
1141
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
|
|
1143
|
-
dependencies = [
|
|
1144
|
-
"proc-macro2",
|
|
1145
|
-
"quote",
|
|
1146
|
-
"syn 1.0.109",
|
|
1147
|
-
"target-features",
|
|
1148
|
-
]
|
|
1149
|
-
|
|
1150
1166
|
[[package]]
|
|
1151
1167
|
name = "ndarray"
|
|
1152
1168
|
version = "0.16.1"
|
|
@@ -1249,9 +1265,9 @@ dependencies = [
|
|
|
1249
1265
|
|
|
1250
1266
|
[[package]]
|
|
1251
1267
|
name = "once_cell"
|
|
1252
|
-
version = "1.21.
|
|
1268
|
+
version = "1.21.3"
|
|
1253
1269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1270
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1255
1271
|
|
|
1256
1272
|
[[package]]
|
|
1257
1273
|
name = "oxilangtag"
|
|
@@ -1328,6 +1344,12 @@ dependencies = [
|
|
|
1328
1344
|
"thiserror",
|
|
1329
1345
|
]
|
|
1330
1346
|
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "parking"
|
|
1349
|
+
version = "2.2.1"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
1352
|
+
|
|
1331
1353
|
[[package]]
|
|
1332
1354
|
name = "parking_lot"
|
|
1333
1355
|
version = "0.12.3"
|
|
@@ -1460,8 +1482,8 @@ dependencies = [
|
|
|
1460
1482
|
|
|
1461
1483
|
[[package]]
|
|
1462
1484
|
name = "polars"
|
|
1463
|
-
version = "0.
|
|
1464
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1485
|
+
version = "0.46.0"
|
|
1486
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1465
1487
|
dependencies = [
|
|
1466
1488
|
"getrandom 0.2.15",
|
|
1467
1489
|
"polars-arrow",
|
|
@@ -1480,22 +1502,20 @@ dependencies = [
|
|
|
1480
1502
|
|
|
1481
1503
|
[[package]]
|
|
1482
1504
|
name = "polars-arrow"
|
|
1483
|
-
version = "0.
|
|
1484
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1505
|
+
version = "0.46.0"
|
|
1506
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1485
1507
|
dependencies = [
|
|
1486
|
-
"
|
|
1487
|
-
"atoi",
|
|
1508
|
+
"atoi_simd",
|
|
1488
1509
|
"bytemuck",
|
|
1489
1510
|
"chrono",
|
|
1490
|
-
"chrono-tz
|
|
1511
|
+
"chrono-tz",
|
|
1491
1512
|
"dyn-clone",
|
|
1492
1513
|
"either",
|
|
1493
1514
|
"ethnum",
|
|
1494
1515
|
"getrandom 0.2.15",
|
|
1495
1516
|
"hashbrown 0.15.2",
|
|
1496
|
-
"
|
|
1517
|
+
"itoa",
|
|
1497
1518
|
"lz4",
|
|
1498
|
-
"multiversion",
|
|
1499
1519
|
"num-traits",
|
|
1500
1520
|
"parking_lot",
|
|
1501
1521
|
"polars-arrow-format",
|
|
@@ -1522,35 +1542,36 @@ dependencies = [
|
|
|
1522
1542
|
|
|
1523
1543
|
[[package]]
|
|
1524
1544
|
name = "polars-compute"
|
|
1525
|
-
version = "0.
|
|
1526
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1545
|
+
version = "0.46.0"
|
|
1546
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1527
1547
|
dependencies = [
|
|
1528
1548
|
"atoi_simd",
|
|
1529
1549
|
"bytemuck",
|
|
1530
1550
|
"chrono",
|
|
1531
1551
|
"either",
|
|
1532
1552
|
"fast-float2",
|
|
1553
|
+
"hashbrown 0.15.2",
|
|
1533
1554
|
"itoa",
|
|
1534
|
-
"itoap",
|
|
1535
1555
|
"num-traits",
|
|
1536
1556
|
"polars-arrow",
|
|
1537
1557
|
"polars-error",
|
|
1538
1558
|
"polars-utils",
|
|
1559
|
+
"rand 0.8.5",
|
|
1539
1560
|
"ryu",
|
|
1540
1561
|
"strength_reduce",
|
|
1562
|
+
"strum_macros",
|
|
1541
1563
|
"version_check",
|
|
1542
1564
|
]
|
|
1543
1565
|
|
|
1544
1566
|
[[package]]
|
|
1545
1567
|
name = "polars-core"
|
|
1546
|
-
version = "0.
|
|
1547
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1568
|
+
version = "0.46.0"
|
|
1569
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1548
1570
|
dependencies = [
|
|
1549
|
-
"ahash",
|
|
1550
1571
|
"bitflags",
|
|
1551
1572
|
"bytemuck",
|
|
1552
1573
|
"chrono",
|
|
1553
|
-
"chrono-tz
|
|
1574
|
+
"chrono-tz",
|
|
1554
1575
|
"comfy-table",
|
|
1555
1576
|
"either",
|
|
1556
1577
|
"hashbrown 0.14.5",
|
|
@@ -1558,7 +1579,6 @@ dependencies = [
|
|
|
1558
1579
|
"indexmap",
|
|
1559
1580
|
"itoa",
|
|
1560
1581
|
"num-traits",
|
|
1561
|
-
"once_cell",
|
|
1562
1582
|
"polars-arrow",
|
|
1563
1583
|
"polars-compute",
|
|
1564
1584
|
"polars-error",
|
|
@@ -1570,32 +1590,30 @@ dependencies = [
|
|
|
1570
1590
|
"rayon",
|
|
1571
1591
|
"regex",
|
|
1572
1592
|
"strum_macros",
|
|
1573
|
-
"thiserror",
|
|
1574
1593
|
"version_check",
|
|
1575
1594
|
"xxhash-rust",
|
|
1576
1595
|
]
|
|
1577
1596
|
|
|
1578
1597
|
[[package]]
|
|
1579
1598
|
name = "polars-error"
|
|
1580
|
-
version = "0.
|
|
1581
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1599
|
+
version = "0.46.0"
|
|
1600
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1582
1601
|
dependencies = [
|
|
1602
|
+
"parking_lot",
|
|
1583
1603
|
"polars-arrow-format",
|
|
1584
1604
|
"regex",
|
|
1605
|
+
"signal-hook",
|
|
1585
1606
|
"simdutf8",
|
|
1586
|
-
"thiserror",
|
|
1587
1607
|
]
|
|
1588
1608
|
|
|
1589
1609
|
[[package]]
|
|
1590
1610
|
name = "polars-expr"
|
|
1591
|
-
version = "0.
|
|
1592
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1611
|
+
version = "0.46.0"
|
|
1612
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1593
1613
|
dependencies = [
|
|
1594
|
-
"ahash",
|
|
1595
1614
|
"bitflags",
|
|
1596
1615
|
"hashbrown 0.15.2",
|
|
1597
1616
|
"num-traits",
|
|
1598
|
-
"once_cell",
|
|
1599
1617
|
"polars-arrow",
|
|
1600
1618
|
"polars-compute",
|
|
1601
1619
|
"polars-core",
|
|
@@ -1607,19 +1625,19 @@ dependencies = [
|
|
|
1607
1625
|
"polars-utils",
|
|
1608
1626
|
"rand 0.8.5",
|
|
1609
1627
|
"rayon",
|
|
1628
|
+
"recursive",
|
|
1610
1629
|
]
|
|
1611
1630
|
|
|
1612
1631
|
[[package]]
|
|
1613
1632
|
name = "polars-io"
|
|
1614
|
-
version = "0.
|
|
1615
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1633
|
+
version = "0.46.0"
|
|
1634
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1616
1635
|
dependencies = [
|
|
1617
|
-
"ahash",
|
|
1618
1636
|
"async-trait",
|
|
1619
1637
|
"atoi_simd",
|
|
1620
1638
|
"bytes",
|
|
1621
1639
|
"chrono",
|
|
1622
|
-
"chrono-tz
|
|
1640
|
+
"chrono-tz",
|
|
1623
1641
|
"fast-float2",
|
|
1624
1642
|
"futures",
|
|
1625
1643
|
"glob",
|
|
@@ -1629,7 +1647,6 @@ dependencies = [
|
|
|
1629
1647
|
"memchr",
|
|
1630
1648
|
"memmap2",
|
|
1631
1649
|
"num-traits",
|
|
1632
|
-
"once_cell",
|
|
1633
1650
|
"percent-encoding",
|
|
1634
1651
|
"polars-arrow",
|
|
1635
1652
|
"polars-core",
|
|
@@ -1649,12 +1666,11 @@ dependencies = [
|
|
|
1649
1666
|
|
|
1650
1667
|
[[package]]
|
|
1651
1668
|
name = "polars-json"
|
|
1652
|
-
version = "0.
|
|
1653
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1669
|
+
version = "0.46.0"
|
|
1670
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1654
1671
|
dependencies = [
|
|
1655
|
-
"ahash",
|
|
1656
1672
|
"chrono",
|
|
1657
|
-
"chrono-tz
|
|
1673
|
+
"chrono-tz",
|
|
1658
1674
|
"fallible-streaming-iterator",
|
|
1659
1675
|
"hashbrown 0.15.2",
|
|
1660
1676
|
"indexmap",
|
|
@@ -1671,14 +1687,15 @@ dependencies = [
|
|
|
1671
1687
|
|
|
1672
1688
|
[[package]]
|
|
1673
1689
|
name = "polars-lazy"
|
|
1674
|
-
version = "0.
|
|
1675
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1690
|
+
version = "0.46.0"
|
|
1691
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1676
1692
|
dependencies = [
|
|
1677
|
-
"ahash",
|
|
1678
1693
|
"bitflags",
|
|
1694
|
+
"chrono",
|
|
1695
|
+
"either",
|
|
1679
1696
|
"memchr",
|
|
1680
|
-
"once_cell",
|
|
1681
1697
|
"polars-arrow",
|
|
1698
|
+
"polars-compute",
|
|
1682
1699
|
"polars-core",
|
|
1683
1700
|
"polars-expr",
|
|
1684
1701
|
"polars-io",
|
|
@@ -1695,8 +1712,8 @@ dependencies = [
|
|
|
1695
1712
|
|
|
1696
1713
|
[[package]]
|
|
1697
1714
|
name = "polars-mem-engine"
|
|
1698
|
-
version = "0.
|
|
1699
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1715
|
+
version = "0.46.0"
|
|
1716
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1700
1717
|
dependencies = [
|
|
1701
1718
|
"memmap2",
|
|
1702
1719
|
"polars-arrow",
|
|
@@ -1709,23 +1726,24 @@ dependencies = [
|
|
|
1709
1726
|
"polars-time",
|
|
1710
1727
|
"polars-utils",
|
|
1711
1728
|
"rayon",
|
|
1729
|
+
"recursive",
|
|
1712
1730
|
]
|
|
1713
1731
|
|
|
1714
1732
|
[[package]]
|
|
1715
1733
|
name = "polars-ops"
|
|
1716
|
-
version = "0.
|
|
1717
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1734
|
+
version = "0.46.0"
|
|
1735
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1718
1736
|
dependencies = [
|
|
1719
|
-
"ahash",
|
|
1720
1737
|
"argminmax",
|
|
1721
1738
|
"base64",
|
|
1722
1739
|
"bytemuck",
|
|
1723
1740
|
"chrono",
|
|
1724
|
-
"chrono-tz
|
|
1741
|
+
"chrono-tz",
|
|
1725
1742
|
"either",
|
|
1726
1743
|
"hashbrown 0.15.2",
|
|
1727
1744
|
"hex",
|
|
1728
1745
|
"indexmap",
|
|
1746
|
+
"libm",
|
|
1729
1747
|
"memchr",
|
|
1730
1748
|
"num-traits",
|
|
1731
1749
|
"polars-arrow",
|
|
@@ -1738,16 +1756,16 @@ dependencies = [
|
|
|
1738
1756
|
"regex",
|
|
1739
1757
|
"regex-syntax",
|
|
1740
1758
|
"strum_macros",
|
|
1759
|
+
"unicode-normalization",
|
|
1741
1760
|
"unicode-reverse",
|
|
1742
1761
|
"version_check",
|
|
1743
1762
|
]
|
|
1744
1763
|
|
|
1745
1764
|
[[package]]
|
|
1746
1765
|
name = "polars-parquet"
|
|
1747
|
-
version = "0.
|
|
1748
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1766
|
+
version = "0.46.0"
|
|
1767
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1749
1768
|
dependencies = [
|
|
1750
|
-
"ahash",
|
|
1751
1769
|
"async-stream",
|
|
1752
1770
|
"base64",
|
|
1753
1771
|
"brotli",
|
|
@@ -1781,8 +1799,8 @@ dependencies = [
|
|
|
1781
1799
|
|
|
1782
1800
|
[[package]]
|
|
1783
1801
|
name = "polars-pipe"
|
|
1784
|
-
version = "0.
|
|
1785
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1802
|
+
version = "0.46.0"
|
|
1803
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1786
1804
|
dependencies = [
|
|
1787
1805
|
"crossbeam-channel",
|
|
1788
1806
|
"crossbeam-queue",
|
|
@@ -1806,20 +1824,18 @@ dependencies = [
|
|
|
1806
1824
|
|
|
1807
1825
|
[[package]]
|
|
1808
1826
|
name = "polars-plan"
|
|
1809
|
-
version = "0.
|
|
1810
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1827
|
+
version = "0.46.0"
|
|
1828
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1811
1829
|
dependencies = [
|
|
1812
|
-
"ahash",
|
|
1813
1830
|
"bitflags",
|
|
1814
1831
|
"bytemuck",
|
|
1815
1832
|
"bytes",
|
|
1816
1833
|
"chrono",
|
|
1817
|
-
"chrono-tz
|
|
1834
|
+
"chrono-tz",
|
|
1818
1835
|
"either",
|
|
1819
1836
|
"hashbrown 0.15.2",
|
|
1820
1837
|
"memmap2",
|
|
1821
1838
|
"num-traits",
|
|
1822
|
-
"once_cell",
|
|
1823
1839
|
"percent-encoding",
|
|
1824
1840
|
"polars-arrow",
|
|
1825
1841
|
"polars-compute",
|
|
@@ -1838,8 +1854,8 @@ dependencies = [
|
|
|
1838
1854
|
|
|
1839
1855
|
[[package]]
|
|
1840
1856
|
name = "polars-row"
|
|
1841
|
-
version = "0.
|
|
1842
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1857
|
+
version = "0.46.0"
|
|
1858
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1843
1859
|
dependencies = [
|
|
1844
1860
|
"bitflags",
|
|
1845
1861
|
"bytemuck",
|
|
@@ -1851,8 +1867,8 @@ dependencies = [
|
|
|
1851
1867
|
|
|
1852
1868
|
[[package]]
|
|
1853
1869
|
name = "polars-schema"
|
|
1854
|
-
version = "0.
|
|
1855
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1870
|
+
version = "0.46.0"
|
|
1871
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1856
1872
|
dependencies = [
|
|
1857
1873
|
"indexmap",
|
|
1858
1874
|
"polars-error",
|
|
@@ -1862,12 +1878,11 @@ dependencies = [
|
|
|
1862
1878
|
|
|
1863
1879
|
[[package]]
|
|
1864
1880
|
name = "polars-sql"
|
|
1865
|
-
version = "0.
|
|
1866
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1881
|
+
version = "0.46.0"
|
|
1882
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1867
1883
|
dependencies = [
|
|
1884
|
+
"bitflags",
|
|
1868
1885
|
"hex",
|
|
1869
|
-
"once_cell",
|
|
1870
|
-
"polars-arrow",
|
|
1871
1886
|
"polars-core",
|
|
1872
1887
|
"polars-error",
|
|
1873
1888
|
"polars-lazy",
|
|
@@ -1876,23 +1891,30 @@ dependencies = [
|
|
|
1876
1891
|
"polars-time",
|
|
1877
1892
|
"polars-utils",
|
|
1878
1893
|
"rand 0.8.5",
|
|
1894
|
+
"regex",
|
|
1879
1895
|
"serde",
|
|
1880
|
-
"serde_json",
|
|
1881
1896
|
"sqlparser",
|
|
1882
1897
|
]
|
|
1883
1898
|
|
|
1884
1899
|
[[package]]
|
|
1885
1900
|
name = "polars-stream"
|
|
1886
|
-
version = "0.
|
|
1887
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1901
|
+
version = "0.46.0"
|
|
1902
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1888
1903
|
dependencies = [
|
|
1904
|
+
"async-channel",
|
|
1905
|
+
"async-trait",
|
|
1889
1906
|
"atomic-waker",
|
|
1907
|
+
"bitflags",
|
|
1908
|
+
"crossbeam-channel",
|
|
1890
1909
|
"crossbeam-deque",
|
|
1910
|
+
"crossbeam-queue",
|
|
1891
1911
|
"crossbeam-utils",
|
|
1892
1912
|
"futures",
|
|
1893
1913
|
"memmap2",
|
|
1894
1914
|
"parking_lot",
|
|
1915
|
+
"percent-encoding",
|
|
1895
1916
|
"pin-project-lite",
|
|
1917
|
+
"polars-arrow",
|
|
1896
1918
|
"polars-core",
|
|
1897
1919
|
"polars-error",
|
|
1898
1920
|
"polars-expr",
|
|
@@ -1912,44 +1934,46 @@ dependencies = [
|
|
|
1912
1934
|
|
|
1913
1935
|
[[package]]
|
|
1914
1936
|
name = "polars-time"
|
|
1915
|
-
version = "0.
|
|
1916
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1937
|
+
version = "0.46.0"
|
|
1938
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1917
1939
|
dependencies = [
|
|
1918
|
-
"
|
|
1940
|
+
"atoi_simd",
|
|
1919
1941
|
"bytemuck",
|
|
1920
1942
|
"chrono",
|
|
1921
|
-
"chrono-tz
|
|
1943
|
+
"chrono-tz",
|
|
1922
1944
|
"now",
|
|
1923
|
-
"
|
|
1945
|
+
"num-traits",
|
|
1924
1946
|
"polars-arrow",
|
|
1925
1947
|
"polars-compute",
|
|
1926
1948
|
"polars-core",
|
|
1927
1949
|
"polars-error",
|
|
1928
1950
|
"polars-ops",
|
|
1929
1951
|
"polars-utils",
|
|
1952
|
+
"rayon",
|
|
1930
1953
|
"regex",
|
|
1931
1954
|
"strum_macros",
|
|
1932
1955
|
]
|
|
1933
1956
|
|
|
1934
1957
|
[[package]]
|
|
1935
1958
|
name = "polars-utils"
|
|
1936
|
-
version = "0.
|
|
1937
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1959
|
+
version = "0.46.0"
|
|
1960
|
+
source = "git+https://github.com/pola-rs/polars?rev=319a9a84ab573886b2a13548a8e462fee353acef#319a9a84ab573886b2a13548a8e462fee353acef"
|
|
1938
1961
|
dependencies = [
|
|
1939
|
-
"ahash",
|
|
1940
1962
|
"bytemuck",
|
|
1941
1963
|
"bytes",
|
|
1942
1964
|
"compact_str",
|
|
1965
|
+
"foldhash",
|
|
1943
1966
|
"hashbrown 0.15.2",
|
|
1944
1967
|
"indexmap",
|
|
1945
1968
|
"libc",
|
|
1946
1969
|
"memmap2",
|
|
1947
1970
|
"num-traits",
|
|
1948
|
-
"once_cell",
|
|
1949
1971
|
"polars-error",
|
|
1950
1972
|
"rand 0.8.5",
|
|
1951
1973
|
"raw-cpuid",
|
|
1952
1974
|
"rayon",
|
|
1975
|
+
"regex",
|
|
1976
|
+
"slotmap",
|
|
1953
1977
|
"stacker",
|
|
1954
1978
|
"sysinfo",
|
|
1955
1979
|
"version_check",
|
|
@@ -1976,7 +2000,7 @@ version = "0.2.21"
|
|
|
1976
2000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
2001
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1978
2002
|
dependencies = [
|
|
1979
|
-
"zerocopy 0.8.
|
|
2003
|
+
"zerocopy 0.8.24",
|
|
1980
2004
|
]
|
|
1981
2005
|
|
|
1982
2006
|
[[package]]
|
|
@@ -2008,7 +2032,7 @@ dependencies = [
|
|
|
2008
2032
|
|
|
2009
2033
|
[[package]]
|
|
2010
2034
|
name = "py_maplib"
|
|
2011
|
-
version = "0.15.
|
|
2035
|
+
version = "0.15.13"
|
|
2012
2036
|
dependencies = [
|
|
2013
2037
|
"jemallocator",
|
|
2014
2038
|
"log",
|
|
@@ -2041,13 +2065,13 @@ dependencies = [
|
|
|
2041
2065
|
|
|
2042
2066
|
[[package]]
|
|
2043
2067
|
name = "pyo3"
|
|
2044
|
-
version = "0.
|
|
2068
|
+
version = "0.24.1"
|
|
2045
2069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
-
checksum = "
|
|
2070
|
+
checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
|
|
2047
2071
|
dependencies = [
|
|
2048
2072
|
"cfg-if",
|
|
2049
2073
|
"chrono",
|
|
2050
|
-
"chrono-tz
|
|
2074
|
+
"chrono-tz",
|
|
2051
2075
|
"indoc",
|
|
2052
2076
|
"libc",
|
|
2053
2077
|
"memoffset",
|
|
@@ -2061,9 +2085,9 @@ dependencies = [
|
|
|
2061
2085
|
|
|
2062
2086
|
[[package]]
|
|
2063
2087
|
name = "pyo3-build-config"
|
|
2064
|
-
version = "0.
|
|
2088
|
+
version = "0.24.1"
|
|
2065
2089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
-
checksum = "
|
|
2090
|
+
checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
|
|
2067
2091
|
dependencies = [
|
|
2068
2092
|
"once_cell",
|
|
2069
2093
|
"target-lexicon",
|
|
@@ -2071,9 +2095,9 @@ dependencies = [
|
|
|
2071
2095
|
|
|
2072
2096
|
[[package]]
|
|
2073
2097
|
name = "pyo3-ffi"
|
|
2074
|
-
version = "0.
|
|
2098
|
+
version = "0.24.1"
|
|
2075
2099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
-
checksum = "
|
|
2100
|
+
checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
|
|
2077
2101
|
dependencies = [
|
|
2078
2102
|
"libc",
|
|
2079
2103
|
"pyo3-build-config",
|
|
@@ -2081,9 +2105,9 @@ dependencies = [
|
|
|
2081
2105
|
|
|
2082
2106
|
[[package]]
|
|
2083
2107
|
name = "pyo3-log"
|
|
2084
|
-
version = "0.
|
|
2108
|
+
version = "0.12.3"
|
|
2085
2109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
-
checksum = "
|
|
2110
|
+
checksum = "7079e412e909af5d6be7c04a7f29f6a2837a080410e1c529c9dee2c367383db4"
|
|
2087
2111
|
dependencies = [
|
|
2088
2112
|
"arc-swap",
|
|
2089
2113
|
"log",
|
|
@@ -2092,27 +2116,27 @@ dependencies = [
|
|
|
2092
2116
|
|
|
2093
2117
|
[[package]]
|
|
2094
2118
|
name = "pyo3-macros"
|
|
2095
|
-
version = "0.
|
|
2119
|
+
version = "0.24.1"
|
|
2096
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
-
checksum = "
|
|
2121
|
+
checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
|
|
2098
2122
|
dependencies = [
|
|
2099
2123
|
"proc-macro2",
|
|
2100
2124
|
"pyo3-macros-backend",
|
|
2101
2125
|
"quote",
|
|
2102
|
-
"syn
|
|
2126
|
+
"syn",
|
|
2103
2127
|
]
|
|
2104
2128
|
|
|
2105
2129
|
[[package]]
|
|
2106
2130
|
name = "pyo3-macros-backend"
|
|
2107
|
-
version = "0.
|
|
2131
|
+
version = "0.24.1"
|
|
2108
2132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
-
checksum = "
|
|
2133
|
+
checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
|
|
2110
2134
|
dependencies = [
|
|
2111
2135
|
"heck",
|
|
2112
2136
|
"proc-macro2",
|
|
2113
2137
|
"pyo3-build-config",
|
|
2114
2138
|
"quote",
|
|
2115
|
-
"syn
|
|
2139
|
+
"syn",
|
|
2116
2140
|
]
|
|
2117
2141
|
|
|
2118
2142
|
[[package]]
|
|
@@ -2132,22 +2156,28 @@ dependencies = [
|
|
|
2132
2156
|
|
|
2133
2157
|
[[package]]
|
|
2134
2158
|
name = "quick-xml"
|
|
2135
|
-
version = "0.37.
|
|
2159
|
+
version = "0.37.4"
|
|
2136
2160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
2161
|
+
checksum = "a4ce8c88de324ff838700f36fb6ab86c96df0e3c4ab6ef3a9b2044465cce1369"
|
|
2138
2162
|
dependencies = [
|
|
2139
2163
|
"memchr",
|
|
2140
2164
|
]
|
|
2141
2165
|
|
|
2142
2166
|
[[package]]
|
|
2143
2167
|
name = "quote"
|
|
2144
|
-
version = "1.0.
|
|
2168
|
+
version = "1.0.40"
|
|
2145
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
-
checksum = "
|
|
2170
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2147
2171
|
dependencies = [
|
|
2148
2172
|
"proc-macro2",
|
|
2149
2173
|
]
|
|
2150
2174
|
|
|
2175
|
+
[[package]]
|
|
2176
|
+
name = "r-efi"
|
|
2177
|
+
version = "5.2.0"
|
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
2180
|
+
|
|
2151
2181
|
[[package]]
|
|
2152
2182
|
name = "rand"
|
|
2153
2183
|
version = "0.8.5"
|
|
@@ -2167,7 +2197,7 @@ checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
|
|
|
2167
2197
|
dependencies = [
|
|
2168
2198
|
"rand_chacha 0.9.0",
|
|
2169
2199
|
"rand_core 0.9.3",
|
|
2170
|
-
"zerocopy 0.8.
|
|
2200
|
+
"zerocopy 0.8.24",
|
|
2171
2201
|
]
|
|
2172
2202
|
|
|
2173
2203
|
[[package]]
|
|
@@ -2205,7 +2235,7 @@ version = "0.9.3"
|
|
|
2205
2235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
2236
|
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2207
2237
|
dependencies = [
|
|
2208
|
-
"getrandom 0.3.
|
|
2238
|
+
"getrandom 0.3.2",
|
|
2209
2239
|
]
|
|
2210
2240
|
|
|
2211
2241
|
[[package]]
|
|
@@ -2270,14 +2300,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2270
2300
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
2271
2301
|
dependencies = [
|
|
2272
2302
|
"quote",
|
|
2273
|
-
"syn
|
|
2303
|
+
"syn",
|
|
2274
2304
|
]
|
|
2275
2305
|
|
|
2276
2306
|
[[package]]
|
|
2277
2307
|
name = "redox_syscall"
|
|
2278
|
-
version = "0.5.
|
|
2308
|
+
version = "0.5.11"
|
|
2279
2309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
-
checksum = "
|
|
2310
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
2281
2311
|
dependencies = [
|
|
2282
2312
|
"bitflags",
|
|
2283
2313
|
]
|
|
@@ -2299,7 +2329,7 @@ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
|
2299
2329
|
dependencies = [
|
|
2300
2330
|
"proc-macro2",
|
|
2301
2331
|
"quote",
|
|
2302
|
-
"syn
|
|
2332
|
+
"syn",
|
|
2303
2333
|
]
|
|
2304
2334
|
|
|
2305
2335
|
[[package]]
|
|
@@ -2351,7 +2381,7 @@ name = "representation"
|
|
|
2351
2381
|
version = "0.6.10"
|
|
2352
2382
|
dependencies = [
|
|
2353
2383
|
"chrono",
|
|
2354
|
-
"chrono-tz
|
|
2384
|
+
"chrono-tz",
|
|
2355
2385
|
"log",
|
|
2356
2386
|
"oxrdf",
|
|
2357
2387
|
"oxsdatatypes",
|
|
@@ -2390,7 +2420,7 @@ dependencies = [
|
|
|
2390
2420
|
"regex",
|
|
2391
2421
|
"relative-path",
|
|
2392
2422
|
"rustc_version",
|
|
2393
|
-
"syn
|
|
2423
|
+
"syn",
|
|
2394
2424
|
"unicode-ident",
|
|
2395
2425
|
]
|
|
2396
2426
|
|
|
@@ -2487,7 +2517,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
|
2487
2517
|
dependencies = [
|
|
2488
2518
|
"proc-macro2",
|
|
2489
2519
|
"quote",
|
|
2490
|
-
"syn
|
|
2520
|
+
"syn",
|
|
2491
2521
|
]
|
|
2492
2522
|
|
|
2493
2523
|
[[package]]
|
|
@@ -2524,13 +2554,15 @@ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
|
|
|
2524
2554
|
dependencies = [
|
|
2525
2555
|
"proc-macro2",
|
|
2526
2556
|
"quote",
|
|
2527
|
-
"syn
|
|
2557
|
+
"syn",
|
|
2528
2558
|
]
|
|
2529
2559
|
|
|
2530
2560
|
[[package]]
|
|
2531
2561
|
name = "shacl"
|
|
2532
2562
|
version = "0.1.0"
|
|
2533
2563
|
dependencies = [
|
|
2564
|
+
"oxrdf",
|
|
2565
|
+
"polars",
|
|
2534
2566
|
"representation",
|
|
2535
2567
|
"thiserror",
|
|
2536
2568
|
"triplestore",
|
|
@@ -2542,6 +2574,25 @@ version = "1.3.0"
|
|
|
2542
2574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
2575
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2544
2576
|
|
|
2577
|
+
[[package]]
|
|
2578
|
+
name = "signal-hook"
|
|
2579
|
+
version = "0.3.17"
|
|
2580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2581
|
+
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
|
|
2582
|
+
dependencies = [
|
|
2583
|
+
"libc",
|
|
2584
|
+
"signal-hook-registry",
|
|
2585
|
+
]
|
|
2586
|
+
|
|
2587
|
+
[[package]]
|
|
2588
|
+
name = "signal-hook-registry"
|
|
2589
|
+
version = "1.4.2"
|
|
2590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2591
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
2592
|
+
dependencies = [
|
|
2593
|
+
"libc",
|
|
2594
|
+
]
|
|
2595
|
+
|
|
2545
2596
|
[[package]]
|
|
2546
2597
|
name = "simd-json"
|
|
2547
2598
|
version = "0.14.3"
|
|
@@ -2591,9 +2642,9 @@ dependencies = [
|
|
|
2591
2642
|
|
|
2592
2643
|
[[package]]
|
|
2593
2644
|
name = "smallvec"
|
|
2594
|
-
version = "1.
|
|
2645
|
+
version = "1.15.0"
|
|
2595
2646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
-
checksum = "
|
|
2647
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
2597
2648
|
|
|
2598
2649
|
[[package]]
|
|
2599
2650
|
name = "snap"
|
|
@@ -2603,9 +2654,9 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
|
2603
2654
|
|
|
2604
2655
|
[[package]]
|
|
2605
2656
|
name = "socket2"
|
|
2606
|
-
version = "0.5.
|
|
2657
|
+
version = "0.5.9"
|
|
2607
2658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2608
|
-
checksum = "
|
|
2659
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
2609
2660
|
dependencies = [
|
|
2610
2661
|
"libc",
|
|
2611
2662
|
"windows-sys 0.52.0",
|
|
@@ -2655,18 +2706,18 @@ dependencies = [
|
|
|
2655
2706
|
|
|
2656
2707
|
[[package]]
|
|
2657
2708
|
name = "sqlparser"
|
|
2658
|
-
version = "0.
|
|
2709
|
+
version = "0.53.0"
|
|
2659
2710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
-
checksum = "
|
|
2711
|
+
checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
|
|
2661
2712
|
dependencies = [
|
|
2662
2713
|
"log",
|
|
2663
2714
|
]
|
|
2664
2715
|
|
|
2665
2716
|
[[package]]
|
|
2666
2717
|
name = "stacker"
|
|
2667
|
-
version = "0.1.
|
|
2718
|
+
version = "0.1.20"
|
|
2668
2719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
-
checksum = "
|
|
2720
|
+
checksum = "601f9201feb9b09c00266478bf459952b9ef9a6b94edb2f21eba14ab681a60a9"
|
|
2670
2721
|
dependencies = [
|
|
2671
2722
|
"cc",
|
|
2672
2723
|
"cfg-if",
|
|
@@ -2712,18 +2763,7 @@ dependencies = [
|
|
|
2712
2763
|
"proc-macro2",
|
|
2713
2764
|
"quote",
|
|
2714
2765
|
"rustversion",
|
|
2715
|
-
"syn
|
|
2716
|
-
]
|
|
2717
|
-
|
|
2718
|
-
[[package]]
|
|
2719
|
-
name = "syn"
|
|
2720
|
-
version = "1.0.109"
|
|
2721
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2723
|
-
dependencies = [
|
|
2724
|
-
"proc-macro2",
|
|
2725
|
-
"quote",
|
|
2726
|
-
"unicode-ident",
|
|
2766
|
+
"syn",
|
|
2727
2767
|
]
|
|
2728
2768
|
|
|
2729
2769
|
[[package]]
|
|
@@ -2750,17 +2790,11 @@ dependencies = [
|
|
|
2750
2790
|
"windows",
|
|
2751
2791
|
]
|
|
2752
2792
|
|
|
2753
|
-
[[package]]
|
|
2754
|
-
name = "target-features"
|
|
2755
|
-
version = "0.1.6"
|
|
2756
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
-
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
|
2758
|
-
|
|
2759
2793
|
[[package]]
|
|
2760
2794
|
name = "target-lexicon"
|
|
2761
|
-
version = "0.
|
|
2795
|
+
version = "0.13.2"
|
|
2762
2796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
|
-
checksum = "
|
|
2797
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
2764
2798
|
|
|
2765
2799
|
[[package]]
|
|
2766
2800
|
name = "templates"
|
|
@@ -2793,14 +2827,29 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
|
2793
2827
|
dependencies = [
|
|
2794
2828
|
"proc-macro2",
|
|
2795
2829
|
"quote",
|
|
2796
|
-
"syn
|
|
2830
|
+
"syn",
|
|
2831
|
+
]
|
|
2832
|
+
|
|
2833
|
+
[[package]]
|
|
2834
|
+
name = "tinyvec"
|
|
2835
|
+
version = "1.9.0"
|
|
2836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
2838
|
+
dependencies = [
|
|
2839
|
+
"tinyvec_macros",
|
|
2797
2840
|
]
|
|
2798
2841
|
|
|
2842
|
+
[[package]]
|
|
2843
|
+
name = "tinyvec_macros"
|
|
2844
|
+
version = "0.1.1"
|
|
2845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2847
|
+
|
|
2799
2848
|
[[package]]
|
|
2800
2849
|
name = "tokio"
|
|
2801
|
-
version = "1.44.
|
|
2850
|
+
version = "1.44.2"
|
|
2802
2851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
-
checksum = "
|
|
2852
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
2804
2853
|
dependencies = [
|
|
2805
2854
|
"backtrace",
|
|
2806
2855
|
"bytes",
|
|
@@ -2813,9 +2862,9 @@ dependencies = [
|
|
|
2813
2862
|
|
|
2814
2863
|
[[package]]
|
|
2815
2864
|
name = "tokio-util"
|
|
2816
|
-
version = "0.7.
|
|
2865
|
+
version = "0.7.14"
|
|
2817
2866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
-
checksum = "
|
|
2867
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
2819
2868
|
dependencies = [
|
|
2820
2869
|
"bytes",
|
|
2821
2870
|
"futures-core",
|
|
@@ -2878,6 +2927,15 @@ version = "1.0.18"
|
|
|
2878
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
2928
|
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
2880
2929
|
|
|
2930
|
+
[[package]]
|
|
2931
|
+
name = "unicode-normalization"
|
|
2932
|
+
version = "0.1.24"
|
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
2935
|
+
dependencies = [
|
|
2936
|
+
"tinyvec",
|
|
2937
|
+
]
|
|
2938
|
+
|
|
2881
2939
|
[[package]]
|
|
2882
2940
|
name = "unicode-reverse"
|
|
2883
2941
|
version = "1.0.9"
|
|
@@ -2913,11 +2971,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
2913
2971
|
|
|
2914
2972
|
[[package]]
|
|
2915
2973
|
name = "uuid"
|
|
2916
|
-
version = "1.
|
|
2974
|
+
version = "1.16.0"
|
|
2917
2975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2918
|
-
checksum = "
|
|
2976
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
2919
2977
|
dependencies = [
|
|
2920
|
-
"getrandom 0.3.
|
|
2978
|
+
"getrandom 0.3.2",
|
|
2921
2979
|
"rand 0.9.0",
|
|
2922
2980
|
]
|
|
2923
2981
|
|
|
@@ -2957,9 +3015,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2957
3015
|
|
|
2958
3016
|
[[package]]
|
|
2959
3017
|
name = "wasi"
|
|
2960
|
-
version = "0.
|
|
3018
|
+
version = "0.14.2+wasi-0.2.4"
|
|
2961
3019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3020
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
2963
3021
|
dependencies = [
|
|
2964
3022
|
"wit-bindgen-rt",
|
|
2965
3023
|
]
|
|
@@ -2986,7 +3044,7 @@ dependencies = [
|
|
|
2986
3044
|
"log",
|
|
2987
3045
|
"proc-macro2",
|
|
2988
3046
|
"quote",
|
|
2989
|
-
"syn
|
|
3047
|
+
"syn",
|
|
2990
3048
|
"wasm-bindgen-shared",
|
|
2991
3049
|
]
|
|
2992
3050
|
|
|
@@ -3008,7 +3066,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3008
3066
|
dependencies = [
|
|
3009
3067
|
"proc-macro2",
|
|
3010
3068
|
"quote",
|
|
3011
|
-
"syn
|
|
3069
|
+
"syn",
|
|
3012
3070
|
"wasm-bindgen-backend",
|
|
3013
3071
|
"wasm-bindgen-shared",
|
|
3014
3072
|
]
|
|
@@ -3065,23 +3123,27 @@ dependencies = [
|
|
|
3065
3123
|
|
|
3066
3124
|
[[package]]
|
|
3067
3125
|
name = "windows-core"
|
|
3068
|
-
version = "0.
|
|
3126
|
+
version = "0.57.0"
|
|
3069
3127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
-
checksum = "
|
|
3128
|
+
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
|
3071
3129
|
dependencies = [
|
|
3130
|
+
"windows-implement 0.57.0",
|
|
3131
|
+
"windows-interface 0.57.0",
|
|
3132
|
+
"windows-result 0.1.2",
|
|
3072
3133
|
"windows-targets",
|
|
3073
3134
|
]
|
|
3074
3135
|
|
|
3075
3136
|
[[package]]
|
|
3076
3137
|
name = "windows-core"
|
|
3077
|
-
version = "0.
|
|
3138
|
+
version = "0.61.0"
|
|
3078
3139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
-
checksum = "
|
|
3140
|
+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
|
3080
3141
|
dependencies = [
|
|
3081
|
-
"windows-implement",
|
|
3082
|
-
"windows-interface",
|
|
3083
|
-
"windows-
|
|
3084
|
-
"windows-
|
|
3142
|
+
"windows-implement 0.60.0",
|
|
3143
|
+
"windows-interface 0.59.1",
|
|
3144
|
+
"windows-link",
|
|
3145
|
+
"windows-result 0.3.2",
|
|
3146
|
+
"windows-strings",
|
|
3085
3147
|
]
|
|
3086
3148
|
|
|
3087
3149
|
[[package]]
|
|
@@ -3092,7 +3154,18 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
|
3092
3154
|
dependencies = [
|
|
3093
3155
|
"proc-macro2",
|
|
3094
3156
|
"quote",
|
|
3095
|
-
"syn
|
|
3157
|
+
"syn",
|
|
3158
|
+
]
|
|
3159
|
+
|
|
3160
|
+
[[package]]
|
|
3161
|
+
name = "windows-implement"
|
|
3162
|
+
version = "0.60.0"
|
|
3163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3164
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
3165
|
+
dependencies = [
|
|
3166
|
+
"proc-macro2",
|
|
3167
|
+
"quote",
|
|
3168
|
+
"syn",
|
|
3096
3169
|
]
|
|
3097
3170
|
|
|
3098
3171
|
[[package]]
|
|
@@ -3103,14 +3176,25 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
|
3103
3176
|
dependencies = [
|
|
3104
3177
|
"proc-macro2",
|
|
3105
3178
|
"quote",
|
|
3106
|
-
"syn
|
|
3179
|
+
"syn",
|
|
3180
|
+
]
|
|
3181
|
+
|
|
3182
|
+
[[package]]
|
|
3183
|
+
name = "windows-interface"
|
|
3184
|
+
version = "0.59.1"
|
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
3187
|
+
dependencies = [
|
|
3188
|
+
"proc-macro2",
|
|
3189
|
+
"quote",
|
|
3190
|
+
"syn",
|
|
3107
3191
|
]
|
|
3108
3192
|
|
|
3109
3193
|
[[package]]
|
|
3110
3194
|
name = "windows-link"
|
|
3111
|
-
version = "0.1.
|
|
3195
|
+
version = "0.1.1"
|
|
3112
3196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
-
checksum = "
|
|
3197
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
3114
3198
|
|
|
3115
3199
|
[[package]]
|
|
3116
3200
|
name = "windows-result"
|
|
@@ -3121,6 +3205,24 @@ dependencies = [
|
|
|
3121
3205
|
"windows-targets",
|
|
3122
3206
|
]
|
|
3123
3207
|
|
|
3208
|
+
[[package]]
|
|
3209
|
+
name = "windows-result"
|
|
3210
|
+
version = "0.3.2"
|
|
3211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
3213
|
+
dependencies = [
|
|
3214
|
+
"windows-link",
|
|
3215
|
+
]
|
|
3216
|
+
|
|
3217
|
+
[[package]]
|
|
3218
|
+
name = "windows-strings"
|
|
3219
|
+
version = "0.4.0"
|
|
3220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3221
|
+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
|
3222
|
+
dependencies = [
|
|
3223
|
+
"windows-link",
|
|
3224
|
+
]
|
|
3225
|
+
|
|
3124
3226
|
[[package]]
|
|
3125
3227
|
name = "windows-sys"
|
|
3126
3228
|
version = "0.52.0"
|
|
@@ -3205,18 +3307,18 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
3205
3307
|
|
|
3206
3308
|
[[package]]
|
|
3207
3309
|
name = "winnow"
|
|
3208
|
-
version = "0.7.
|
|
3310
|
+
version = "0.7.6"
|
|
3209
3311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3210
|
-
checksum = "
|
|
3312
|
+
checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
|
|
3211
3313
|
dependencies = [
|
|
3212
3314
|
"memchr",
|
|
3213
3315
|
]
|
|
3214
3316
|
|
|
3215
3317
|
[[package]]
|
|
3216
3318
|
name = "wit-bindgen-rt"
|
|
3217
|
-
version = "0.
|
|
3319
|
+
version = "0.39.0"
|
|
3218
3320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3219
|
-
checksum = "
|
|
3321
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
3220
3322
|
dependencies = [
|
|
3221
3323
|
"bitflags",
|
|
3222
3324
|
]
|
|
@@ -3238,11 +3340,11 @@ dependencies = [
|
|
|
3238
3340
|
|
|
3239
3341
|
[[package]]
|
|
3240
3342
|
name = "zerocopy"
|
|
3241
|
-
version = "0.8.
|
|
3343
|
+
version = "0.8.24"
|
|
3242
3344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "
|
|
3345
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
3244
3346
|
dependencies = [
|
|
3245
|
-
"zerocopy-derive 0.8.
|
|
3347
|
+
"zerocopy-derive 0.8.24",
|
|
3246
3348
|
]
|
|
3247
3349
|
|
|
3248
3350
|
[[package]]
|
|
@@ -3253,20 +3355,26 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
3253
3355
|
dependencies = [
|
|
3254
3356
|
"proc-macro2",
|
|
3255
3357
|
"quote",
|
|
3256
|
-
"syn
|
|
3358
|
+
"syn",
|
|
3257
3359
|
]
|
|
3258
3360
|
|
|
3259
3361
|
[[package]]
|
|
3260
3362
|
name = "zerocopy-derive"
|
|
3261
|
-
version = "0.8.
|
|
3363
|
+
version = "0.8.24"
|
|
3262
3364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
|
-
checksum = "
|
|
3365
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
3264
3366
|
dependencies = [
|
|
3265
3367
|
"proc-macro2",
|
|
3266
3368
|
"quote",
|
|
3267
|
-
"syn
|
|
3369
|
+
"syn",
|
|
3268
3370
|
]
|
|
3269
3371
|
|
|
3372
|
+
[[package]]
|
|
3373
|
+
name = "zlib-rs"
|
|
3374
|
+
version = "0.5.0"
|
|
3375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3376
|
+
checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
|
|
3377
|
+
|
|
3270
3378
|
[[package]]
|
|
3271
3379
|
name = "zstd"
|
|
3272
3380
|
version = "0.13.3"
|
|
@@ -3278,18 +3386,18 @@ dependencies = [
|
|
|
3278
3386
|
|
|
3279
3387
|
[[package]]
|
|
3280
3388
|
name = "zstd-safe"
|
|
3281
|
-
version = "7.2.
|
|
3389
|
+
version = "7.2.4"
|
|
3282
3390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
-
checksum = "
|
|
3391
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3284
3392
|
dependencies = [
|
|
3285
3393
|
"zstd-sys",
|
|
3286
3394
|
]
|
|
3287
3395
|
|
|
3288
3396
|
[[package]]
|
|
3289
3397
|
name = "zstd-sys"
|
|
3290
|
-
version = "2.0.
|
|
3398
|
+
version = "2.0.15+zstd.1.5.7"
|
|
3291
3399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3292
|
-
checksum = "
|
|
3400
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
3293
3401
|
dependencies = [
|
|
3294
3402
|
"cc",
|
|
3295
3403
|
"pkg-config",
|