maplib 0.15.13__tar.gz → 0.15.33__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.13 → maplib-0.15.33}/Cargo.lock +1312 -170
- maplib-0.15.33/Cargo.toml +49 -0
- {maplib-0.15.13 → maplib-0.15.33}/PKG-INFO +3 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/cimxml/Cargo.toml +4 -0
- maplib-0.15.33/lib/cimxml/src/export.rs +45 -0
- maplib-0.15.33/lib/cimxml/src/lib.rs +1 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/datalog/Cargo.toml +5 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/datalog/src/inference.rs +4 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/file_io/Cargo.toml +1 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/file_io/src/lib.rs +3 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/Cargo.toml +6 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/errors.rs +1 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/mapping/default.rs +1 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/mapping/errors.rs +17 -27
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/mapping/expansion.rs +16 -6
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/mapping.rs +56 -14
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/tests/test_stottr.rs +20 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/aggregates.rs +4 -9
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/expressions.rs +858 -238
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/graph_patterns.rs +28 -16
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/type_constraints.rs +0 -8
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/Cargo.toml +4 -2
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/formatting.rs +4 -6
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/lib.rs +26 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/literals.rs +2 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/multitype.rs +43 -37
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/polars_to_rdf.rs +2 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/python.rs +16 -15
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/query_context.rs +5 -5
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/rdf_to_polars.rs +19 -18
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/solution_mapping.rs +30 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/shacl/Cargo.toml +5 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/shacl/src/lib.rs +5 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/Cargo.toml +0 -2
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/query_context.rs +5 -5
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/treehouse.rs +8 -8
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/ast.rs +8 -44
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/dataset/errors.rs +6 -8
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/dataset.rs +1 -4
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/parsing/errors.rs +2 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/parsing/nom_parsing.rs +3 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/python.rs +1 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/resolver.rs +3 -7
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/Cargo.toml +6 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/dblf.rs +108 -67
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/errors.rs +13 -13
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/lib.rs +232 -146
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/native_parquet_write.rs +5 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/query_solutions.rs +17 -10
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/rdfs_inferencing.rs +15 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/errors.rs +2 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_aggregate.rs +5 -6
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_expressions.rs +39 -39
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +4 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +5 -4
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +5 -4
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +17 -10
- maplib-0.15.33/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +334 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +6 -5
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +5 -4
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +5 -4
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +9 -7
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +4 -4
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +1 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +8 -5
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +5 -4
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +1 -1
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +17 -17
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_order.rs +5 -5
- maplib-0.15.33/lib/triplestore/src/sparql.rs +841 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/storage.rs +544 -222
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/triples_read.rs +8 -3
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/triples_write.rs +3 -3
- maplib-0.15.33/lib/utils/Cargo.toml +16 -0
- maplib-0.15.33/lib/utils/src/lib.rs +1 -0
- maplib-0.15.33/lib/utils/src/polars.rs +121 -0
- {maplib-0.15.13 → maplib-0.15.33}/maplib/__init__.py +13 -13
- {maplib-0.15.13/py_maplib → maplib-0.15.33}/maplib/__init__.pyi +90 -16
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/Cargo.toml +7 -4
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/maplib/__init__.py +13 -13
- {maplib-0.15.13 → maplib-0.15.33/py_maplib}/maplib/__init__.pyi +90 -16
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/src/error.rs +1 -1
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/src/lib.rs +183 -56
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_basics.py +97 -35
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_blank_nodes_multi.py +39 -20
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_data_validation.py +17 -14
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_exceptions.py +2 -1
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_integration.py +44 -27
- maplib-0.15.33/py_maplib/tests/test_multi_expressions.py +1175 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_pizza_example.py +113 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_programmatic_pizza_example.py +9 -6
- {maplib-0.15.13 → maplib-0.15.33}/pyproject.toml +3 -0
- maplib-0.15.13/Cargo.toml +0 -49
- maplib-0.15.13/lib/cimxml/src/lib.rs +0 -18
- maplib-0.15.13/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +0 -44
- maplib-0.15.13/lib/triplestore/src/sparql.rs +0 -402
- maplib-0.15.13/py_maplib/tests/test_multi_expressions.py +0 -569
- {maplib-0.15.13 → maplib-0.15.33}/LICENSE +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/README.md +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/datalog/src/ast.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/datalog/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/datalog/src/parser.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/fts/Cargo.toml +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/fts/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/mapping/constant_terms.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/src/mapping/expansion/validation.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/pydf_io/Cargo.toml +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/pydf_io/LICENSE +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/pydf_io/README.md +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/pydf_io/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/pydf_io/src/to_python.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/pydf_io/src/to_rust.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/Cargo.toml +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/LICENSE +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/README.md +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/constants.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/errors.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/exists_helper.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/find_query_variables.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/query_processing/src/pushdowns.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/report_mapping/Cargo.toml +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/report_mapping/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/LICENSE +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/README.md +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/errors.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/representation/src/subtypes.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/shacl/src/errors.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/shacl/src/storage.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/LICENSE +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/README.md +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/algebra.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/parser.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/query.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/remove_sugar.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/term.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/spargebra/src/update.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/Cargo.toml +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/compatible.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/constants.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/document.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/lib.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/parsing/parser_test.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/parsing/parsing_ast.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/parsing.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/templates/src/subtypes_ext.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/io_funcs.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/lib/triplestore/src/triples_write/serializers.rs +0 -0
- /maplib-0.15.13/maplib/add_triples.py → /maplib-0.15.33/maplib/adding_triples.py +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/maplib/py.typed +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/LICENSE +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/README.md +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/maplib/.gitignore +0 -0
- /maplib-0.15.13/py_maplib/maplib/add_triples.py → /maplib-0.15.33/py_maplib/maplib/adding_triples.py +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/maplib/py.typed +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/src/shacl.rs +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/.gitignore +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/__init__.py +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/out.ttl +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/requirements.txt +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_rdf_parser.py +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_read_write.py +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/test_validate_iris.py +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/larger_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_concat.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/property_path_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/simple_query.csv +0 -0
- {maplib-0.15.13 → maplib-0.15.33}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
@@ -24,7 +24,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
24
24
|
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
25
25
|
dependencies = [
|
|
26
26
|
"cfg-if",
|
|
27
|
-
"getrandom 0.2.
|
|
27
|
+
"getrandom 0.2.16",
|
|
28
28
|
"once_cell",
|
|
29
29
|
"version_check",
|
|
30
30
|
"zerocopy 0.7.35",
|
|
@@ -153,9 +153,9 @@ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
|
153
153
|
|
|
154
154
|
[[package]]
|
|
155
155
|
name = "argminmax"
|
|
156
|
-
version = "0.6.
|
|
156
|
+
version = "0.6.3"
|
|
157
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
-
checksum = "
|
|
158
|
+
checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
|
|
159
159
|
dependencies = [
|
|
160
160
|
"num-traits",
|
|
161
161
|
]
|
|
@@ -166,6 +166,18 @@ version = "0.2.1"
|
|
|
166
166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
167
|
checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
|
|
168
168
|
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "arrayref"
|
|
171
|
+
version = "0.3.9"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "arrayvec"
|
|
177
|
+
version = "0.7.6"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
180
|
+
|
|
169
181
|
[[package]]
|
|
170
182
|
name = "async-channel"
|
|
171
183
|
version = "2.3.1"
|
|
@@ -241,7 +253,7 @@ dependencies = [
|
|
|
241
253
|
"miniz_oxide",
|
|
242
254
|
"object",
|
|
243
255
|
"rustc-demangle",
|
|
244
|
-
"windows-targets",
|
|
256
|
+
"windows-targets 0.52.6",
|
|
245
257
|
]
|
|
246
258
|
|
|
247
259
|
[[package]]
|
|
@@ -250,11 +262,36 @@ version = "0.22.1"
|
|
|
250
262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
263
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
252
264
|
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "bincode"
|
|
267
|
+
version = "1.3.3"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"serde",
|
|
272
|
+
]
|
|
273
|
+
|
|
253
274
|
[[package]]
|
|
254
275
|
name = "bitflags"
|
|
255
276
|
version = "2.9.0"
|
|
256
277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
278
|
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"serde",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "blake3"
|
|
285
|
+
version = "1.8.2"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"arrayref",
|
|
290
|
+
"arrayvec",
|
|
291
|
+
"cc",
|
|
292
|
+
"cfg-if",
|
|
293
|
+
"constant_time_eq",
|
|
294
|
+
]
|
|
258
295
|
|
|
259
296
|
[[package]]
|
|
260
297
|
name = "brotli"
|
|
@@ -269,9 +306,9 @@ dependencies = [
|
|
|
269
306
|
|
|
270
307
|
[[package]]
|
|
271
308
|
name = "brotli-decompressor"
|
|
272
|
-
version = "4.0.
|
|
309
|
+
version = "4.0.3"
|
|
273
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
-
checksum = "
|
|
311
|
+
checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
|
|
275
312
|
dependencies = [
|
|
276
313
|
"alloc-no-stdlib",
|
|
277
314
|
"alloc-stdlib",
|
|
@@ -285,9 +322,9 @@ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
|
285
322
|
|
|
286
323
|
[[package]]
|
|
287
324
|
name = "bytemuck"
|
|
288
|
-
version = "1.
|
|
325
|
+
version = "1.23.0"
|
|
289
326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
-
checksum = "
|
|
327
|
+
checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
|
|
291
328
|
dependencies = [
|
|
292
329
|
"bytemuck_derive",
|
|
293
330
|
]
|
|
@@ -303,6 +340,12 @@ dependencies = [
|
|
|
303
340
|
"syn",
|
|
304
341
|
]
|
|
305
342
|
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "byteorder"
|
|
345
|
+
version = "1.5.0"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
348
|
+
|
|
306
349
|
[[package]]
|
|
307
350
|
name = "bytes"
|
|
308
351
|
version = "1.10.1"
|
|
@@ -323,9 +366,9 @@ dependencies = [
|
|
|
323
366
|
|
|
324
367
|
[[package]]
|
|
325
368
|
name = "cc"
|
|
326
|
-
version = "1.2.
|
|
369
|
+
version = "1.2.21"
|
|
327
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
-
checksum = "
|
|
371
|
+
checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
|
|
329
372
|
dependencies = [
|
|
330
373
|
"jobserver",
|
|
331
374
|
"libc",
|
|
@@ -338,16 +381,23 @@ version = "1.0.0"
|
|
|
338
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
382
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
340
383
|
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "cfg_aliases"
|
|
386
|
+
version = "0.2.1"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
389
|
+
|
|
341
390
|
[[package]]
|
|
342
391
|
name = "chrono"
|
|
343
|
-
version = "0.4.
|
|
392
|
+
version = "0.4.41"
|
|
344
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "
|
|
394
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
346
395
|
dependencies = [
|
|
347
396
|
"android-tzdata",
|
|
348
397
|
"iana-time-zone",
|
|
349
398
|
"js-sys",
|
|
350
399
|
"num-traits",
|
|
400
|
+
"serde",
|
|
351
401
|
"wasm-bindgen",
|
|
352
402
|
"windows-link",
|
|
353
403
|
]
|
|
@@ -378,6 +428,7 @@ name = "cimxml"
|
|
|
378
428
|
version = "0.1.0"
|
|
379
429
|
dependencies = [
|
|
380
430
|
"oxrdf",
|
|
431
|
+
"pyo3",
|
|
381
432
|
"thiserror",
|
|
382
433
|
"triplestore",
|
|
383
434
|
]
|
|
@@ -423,6 +474,22 @@ dependencies = [
|
|
|
423
474
|
"crossbeam-utils",
|
|
424
475
|
]
|
|
425
476
|
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "constant_time_eq"
|
|
479
|
+
version = "0.3.1"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "core-foundation"
|
|
485
|
+
version = "0.10.0"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"core-foundation-sys",
|
|
490
|
+
"libc",
|
|
491
|
+
]
|
|
492
|
+
|
|
426
493
|
[[package]]
|
|
427
494
|
name = "core-foundation-sys"
|
|
428
495
|
version = "0.8.7"
|
|
@@ -490,7 +557,7 @@ dependencies = [
|
|
|
490
557
|
"bitflags",
|
|
491
558
|
"crossterm_winapi",
|
|
492
559
|
"parking_lot",
|
|
493
|
-
"rustix",
|
|
560
|
+
"rustix 0.38.44",
|
|
494
561
|
"winapi",
|
|
495
562
|
]
|
|
496
563
|
|
|
@@ -508,11 +575,23 @@ name = "datalog"
|
|
|
508
575
|
version = "0.1.0"
|
|
509
576
|
dependencies = [
|
|
510
577
|
"oxrdf",
|
|
578
|
+
"pyo3",
|
|
511
579
|
"representation",
|
|
512
580
|
"thiserror",
|
|
513
581
|
"triplestore",
|
|
514
582
|
]
|
|
515
583
|
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "displaydoc"
|
|
586
|
+
version = "0.2.5"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"proc-macro2",
|
|
591
|
+
"quote",
|
|
592
|
+
"syn",
|
|
593
|
+
]
|
|
594
|
+
|
|
516
595
|
[[package]]
|
|
517
596
|
name = "dyn-clone"
|
|
518
597
|
version = "1.0.19"
|
|
@@ -578,9 +657,9 @@ dependencies = [
|
|
|
578
657
|
|
|
579
658
|
[[package]]
|
|
580
659
|
name = "ethnum"
|
|
581
|
-
version = "1.5.
|
|
660
|
+
version = "1.5.1"
|
|
582
661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
662
|
+
checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
|
|
584
663
|
|
|
585
664
|
[[package]]
|
|
586
665
|
name = "event-listener"
|
|
@@ -644,12 +723,37 @@ dependencies = [
|
|
|
644
723
|
"num-traits",
|
|
645
724
|
]
|
|
646
725
|
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "fnv"
|
|
728
|
+
version = "1.0.7"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
731
|
+
|
|
647
732
|
[[package]]
|
|
648
733
|
name = "foldhash"
|
|
649
734
|
version = "0.1.5"
|
|
650
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
736
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
652
737
|
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "form_urlencoded"
|
|
740
|
+
version = "1.2.1"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"percent-encoding",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "fs4"
|
|
749
|
+
version = "0.13.1"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"rustix 1.0.7",
|
|
754
|
+
"windows-sys 0.59.0",
|
|
755
|
+
]
|
|
756
|
+
|
|
653
757
|
[[package]]
|
|
654
758
|
name = "fts"
|
|
655
759
|
version = "0.1.0"
|
|
@@ -777,9 +881,9 @@ dependencies = [
|
|
|
777
881
|
|
|
778
882
|
[[package]]
|
|
779
883
|
name = "getrandom"
|
|
780
|
-
version = "0.2.
|
|
884
|
+
version = "0.2.16"
|
|
781
885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
-
checksum = "
|
|
886
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
783
887
|
dependencies = [
|
|
784
888
|
"cfg-if",
|
|
785
889
|
"js-sys",
|
|
@@ -795,9 +899,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
795
899
|
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
796
900
|
dependencies = [
|
|
797
901
|
"cfg-if",
|
|
902
|
+
"js-sys",
|
|
798
903
|
"libc",
|
|
799
904
|
"r-efi",
|
|
800
905
|
"wasi 0.14.2+wasi-0.2.4",
|
|
906
|
+
"wasm-bindgen",
|
|
801
907
|
]
|
|
802
908
|
|
|
803
909
|
[[package]]
|
|
@@ -812,6 +918,25 @@ version = "0.3.2"
|
|
|
812
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
919
|
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
814
920
|
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "h2"
|
|
923
|
+
version = "0.4.10"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"atomic-waker",
|
|
928
|
+
"bytes",
|
|
929
|
+
"fnv",
|
|
930
|
+
"futures-core",
|
|
931
|
+
"futures-sink",
|
|
932
|
+
"http",
|
|
933
|
+
"indexmap",
|
|
934
|
+
"slab",
|
|
935
|
+
"tokio",
|
|
936
|
+
"tokio-util",
|
|
937
|
+
"tracing",
|
|
938
|
+
]
|
|
939
|
+
|
|
815
940
|
[[package]]
|
|
816
941
|
name = "halfbrown"
|
|
817
942
|
version = "0.2.5"
|
|
@@ -836,9 +961,9 @@ dependencies = [
|
|
|
836
961
|
|
|
837
962
|
[[package]]
|
|
838
963
|
name = "hashbrown"
|
|
839
|
-
version = "0.15.
|
|
964
|
+
version = "0.15.3"
|
|
840
965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
-
checksum = "
|
|
966
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
842
967
|
dependencies = [
|
|
843
968
|
"allocator-api2",
|
|
844
969
|
"equivalent",
|
|
@@ -874,6 +999,110 @@ dependencies = [
|
|
|
874
999
|
"windows-sys 0.59.0",
|
|
875
1000
|
]
|
|
876
1001
|
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "http"
|
|
1004
|
+
version = "1.3.1"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"bytes",
|
|
1009
|
+
"fnv",
|
|
1010
|
+
"itoa",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "http-body"
|
|
1015
|
+
version = "1.0.1"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"bytes",
|
|
1020
|
+
"http",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "http-body-util"
|
|
1025
|
+
version = "0.1.3"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"bytes",
|
|
1030
|
+
"futures-core",
|
|
1031
|
+
"http",
|
|
1032
|
+
"http-body",
|
|
1033
|
+
"pin-project-lite",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "httparse"
|
|
1038
|
+
version = "1.10.1"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "humantime"
|
|
1044
|
+
version = "2.2.0"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "hyper"
|
|
1050
|
+
version = "1.6.0"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"bytes",
|
|
1055
|
+
"futures-channel",
|
|
1056
|
+
"futures-util",
|
|
1057
|
+
"h2",
|
|
1058
|
+
"http",
|
|
1059
|
+
"http-body",
|
|
1060
|
+
"httparse",
|
|
1061
|
+
"itoa",
|
|
1062
|
+
"pin-project-lite",
|
|
1063
|
+
"smallvec",
|
|
1064
|
+
"tokio",
|
|
1065
|
+
"want",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "hyper-rustls"
|
|
1070
|
+
version = "0.27.5"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"futures-util",
|
|
1075
|
+
"http",
|
|
1076
|
+
"hyper",
|
|
1077
|
+
"hyper-util",
|
|
1078
|
+
"rustls",
|
|
1079
|
+
"rustls-native-certs",
|
|
1080
|
+
"rustls-pki-types",
|
|
1081
|
+
"tokio",
|
|
1082
|
+
"tokio-rustls",
|
|
1083
|
+
"tower-service",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "hyper-util"
|
|
1088
|
+
version = "0.1.11"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"bytes",
|
|
1093
|
+
"futures-channel",
|
|
1094
|
+
"futures-util",
|
|
1095
|
+
"http",
|
|
1096
|
+
"http-body",
|
|
1097
|
+
"hyper",
|
|
1098
|
+
"libc",
|
|
1099
|
+
"pin-project-lite",
|
|
1100
|
+
"socket2",
|
|
1101
|
+
"tokio",
|
|
1102
|
+
"tower-service",
|
|
1103
|
+
"tracing",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
877
1106
|
[[package]]
|
|
878
1107
|
name = "iana-time-zone"
|
|
879
1108
|
version = "0.1.63"
|
|
@@ -898,6 +1127,145 @@ dependencies = [
|
|
|
898
1127
|
"cc",
|
|
899
1128
|
]
|
|
900
1129
|
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "icu_collections"
|
|
1132
|
+
version = "1.5.0"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"displaydoc",
|
|
1137
|
+
"yoke",
|
|
1138
|
+
"zerofrom",
|
|
1139
|
+
"zerovec",
|
|
1140
|
+
]
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "icu_locid"
|
|
1144
|
+
version = "1.5.0"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"displaydoc",
|
|
1149
|
+
"litemap",
|
|
1150
|
+
"tinystr",
|
|
1151
|
+
"writeable",
|
|
1152
|
+
"zerovec",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "icu_locid_transform"
|
|
1157
|
+
version = "1.5.0"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"displaydoc",
|
|
1162
|
+
"icu_locid",
|
|
1163
|
+
"icu_locid_transform_data",
|
|
1164
|
+
"icu_provider",
|
|
1165
|
+
"tinystr",
|
|
1166
|
+
"zerovec",
|
|
1167
|
+
]
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "icu_locid_transform_data"
|
|
1171
|
+
version = "1.5.1"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "icu_normalizer"
|
|
1177
|
+
version = "1.5.0"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"displaydoc",
|
|
1182
|
+
"icu_collections",
|
|
1183
|
+
"icu_normalizer_data",
|
|
1184
|
+
"icu_properties",
|
|
1185
|
+
"icu_provider",
|
|
1186
|
+
"smallvec",
|
|
1187
|
+
"utf16_iter",
|
|
1188
|
+
"utf8_iter",
|
|
1189
|
+
"write16",
|
|
1190
|
+
"zerovec",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "icu_normalizer_data"
|
|
1195
|
+
version = "1.5.1"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "icu_properties"
|
|
1201
|
+
version = "1.5.1"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"displaydoc",
|
|
1206
|
+
"icu_collections",
|
|
1207
|
+
"icu_locid_transform",
|
|
1208
|
+
"icu_properties_data",
|
|
1209
|
+
"icu_provider",
|
|
1210
|
+
"tinystr",
|
|
1211
|
+
"zerovec",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "icu_properties_data"
|
|
1216
|
+
version = "1.5.1"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "icu_provider"
|
|
1222
|
+
version = "1.5.0"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1225
|
+
dependencies = [
|
|
1226
|
+
"displaydoc",
|
|
1227
|
+
"icu_locid",
|
|
1228
|
+
"icu_provider_macros",
|
|
1229
|
+
"stable_deref_trait",
|
|
1230
|
+
"tinystr",
|
|
1231
|
+
"writeable",
|
|
1232
|
+
"yoke",
|
|
1233
|
+
"zerofrom",
|
|
1234
|
+
"zerovec",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "icu_provider_macros"
|
|
1239
|
+
version = "1.5.0"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"proc-macro2",
|
|
1244
|
+
"quote",
|
|
1245
|
+
"syn",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "idna"
|
|
1250
|
+
version = "1.0.3"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"idna_adapter",
|
|
1255
|
+
"smallvec",
|
|
1256
|
+
"utf8_iter",
|
|
1257
|
+
]
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "idna_adapter"
|
|
1261
|
+
version = "1.2.0"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"icu_normalizer",
|
|
1266
|
+
"icu_properties",
|
|
1267
|
+
]
|
|
1268
|
+
|
|
901
1269
|
[[package]]
|
|
902
1270
|
name = "indexmap"
|
|
903
1271
|
version = "2.9.0"
|
|
@@ -905,7 +1273,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
905
1273
|
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
906
1274
|
dependencies = [
|
|
907
1275
|
"equivalent",
|
|
908
|
-
"hashbrown 0.15.
|
|
1276
|
+
"hashbrown 0.15.3",
|
|
909
1277
|
"serde",
|
|
910
1278
|
]
|
|
911
1279
|
|
|
@@ -915,12 +1283,27 @@ version = "2.0.6"
|
|
|
915
1283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
1284
|
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
917
1285
|
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "ipnet"
|
|
1288
|
+
version = "2.11.0"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1291
|
+
|
|
918
1292
|
[[package]]
|
|
919
1293
|
name = "is_terminal_polyfill"
|
|
920
1294
|
version = "1.70.1"
|
|
921
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
1296
|
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
923
1297
|
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "itertools"
|
|
1300
|
+
version = "0.14.0"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"either",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
924
1307
|
[[package]]
|
|
925
1308
|
name = "itoa"
|
|
926
1309
|
version = "1.0.15"
|
|
@@ -949,9 +1332,9 @@ dependencies = [
|
|
|
949
1332
|
|
|
950
1333
|
[[package]]
|
|
951
1334
|
name = "jiff"
|
|
952
|
-
version = "0.2.
|
|
1335
|
+
version = "0.2.13"
|
|
953
1336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
-
checksum = "
|
|
1337
|
+
checksum = "f02000660d30638906021176af16b17498bd0d12813dbfe7b276d8bc7f3c0806"
|
|
955
1338
|
dependencies = [
|
|
956
1339
|
"jiff-static",
|
|
957
1340
|
"log",
|
|
@@ -962,9 +1345,9 @@ dependencies = [
|
|
|
962
1345
|
|
|
963
1346
|
[[package]]
|
|
964
1347
|
name = "jiff-static"
|
|
965
|
-
version = "0.2.
|
|
1348
|
+
version = "0.2.13"
|
|
966
1349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
-
checksum = "
|
|
1350
|
+
checksum = "f3c30758ddd7188629c6713fc45d1188af4f44c90582311d0c8d8c9907f60c48"
|
|
968
1351
|
dependencies = [
|
|
969
1352
|
"proc-macro2",
|
|
970
1353
|
"quote",
|
|
@@ -999,15 +1382,15 @@ checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
|
|
|
999
1382
|
|
|
1000
1383
|
[[package]]
|
|
1001
1384
|
name = "libc"
|
|
1002
|
-
version = "0.2.
|
|
1385
|
+
version = "0.2.172"
|
|
1003
1386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
1387
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
1005
1388
|
|
|
1006
1389
|
[[package]]
|
|
1007
1390
|
name = "libm"
|
|
1008
|
-
version = "0.2.
|
|
1391
|
+
version = "0.2.14"
|
|
1009
1392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
-
checksum = "
|
|
1393
|
+
checksum = "a25169bd5913a4b437588a7e3d127cd6e90127b60e0ffbd834a38f1599e016b8"
|
|
1011
1394
|
|
|
1012
1395
|
[[package]]
|
|
1013
1396
|
name = "libmimalloc-sys"
|
|
@@ -1034,6 +1417,18 @@ version = "0.4.15"
|
|
|
1034
1417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
1418
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1036
1419
|
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "linux-raw-sys"
|
|
1422
|
+
version = "0.9.4"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "litemap"
|
|
1428
|
+
version = "0.7.5"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
1431
|
+
|
|
1037
1432
|
[[package]]
|
|
1038
1433
|
name = "lock_api"
|
|
1039
1434
|
version = "0.4.12"
|
|
@@ -1083,6 +1478,7 @@ dependencies = [
|
|
|
1083
1478
|
"oxrdf",
|
|
1084
1479
|
"oxrdfio",
|
|
1085
1480
|
"polars",
|
|
1481
|
+
"pyo3",
|
|
1086
1482
|
"rayon",
|
|
1087
1483
|
"representation",
|
|
1088
1484
|
"rstest",
|
|
@@ -1137,6 +1533,12 @@ dependencies = [
|
|
|
1137
1533
|
"libmimalloc-sys",
|
|
1138
1534
|
]
|
|
1139
1535
|
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "mime"
|
|
1538
|
+
version = "0.3.17"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1541
|
+
|
|
1140
1542
|
[[package]]
|
|
1141
1543
|
name = "minimal-lexical"
|
|
1142
1544
|
version = "0.2.1"
|
|
@@ -1264,23 +1666,62 @@ dependencies = [
|
|
|
1264
1666
|
]
|
|
1265
1667
|
|
|
1266
1668
|
[[package]]
|
|
1267
|
-
name = "
|
|
1268
|
-
version = "
|
|
1269
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
-
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1271
|
-
|
|
1272
|
-
[[package]]
|
|
1273
|
-
name = "oxilangtag"
|
|
1274
|
-
version = "0.1.5"
|
|
1669
|
+
name = "object_store"
|
|
1670
|
+
version = "0.12.0"
|
|
1275
1671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
-
checksum = "
|
|
1672
|
+
checksum = "e9ce831b09395f933addbc56d894d889e4b226eba304d4e7adbab591e26daf1e"
|
|
1277
1673
|
dependencies = [
|
|
1278
|
-
"
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1674
|
+
"async-trait",
|
|
1675
|
+
"base64",
|
|
1676
|
+
"bytes",
|
|
1677
|
+
"chrono",
|
|
1678
|
+
"form_urlencoded",
|
|
1679
|
+
"futures",
|
|
1680
|
+
"http",
|
|
1681
|
+
"http-body-util",
|
|
1682
|
+
"humantime",
|
|
1683
|
+
"hyper",
|
|
1684
|
+
"itertools",
|
|
1685
|
+
"parking_lot",
|
|
1686
|
+
"percent-encoding",
|
|
1687
|
+
"quick-xml",
|
|
1688
|
+
"rand 0.8.5",
|
|
1689
|
+
"reqwest",
|
|
1690
|
+
"ring",
|
|
1691
|
+
"serde",
|
|
1692
|
+
"serde_json",
|
|
1693
|
+
"serde_urlencoded",
|
|
1694
|
+
"thiserror",
|
|
1695
|
+
"tokio",
|
|
1696
|
+
"tracing",
|
|
1697
|
+
"url",
|
|
1698
|
+
"walkdir",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "once_cell"
|
|
1703
|
+
version = "1.21.3"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "openssl-probe"
|
|
1709
|
+
version = "0.1.6"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "oxilangtag"
|
|
1715
|
+
version = "0.1.5"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "23f3f87617a86af77fa3691e6350483e7154c2ead9f1261b75130e21ca0f8acb"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"serde",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "oxiri"
|
|
1724
|
+
version = "0.2.11"
|
|
1284
1725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
1726
|
checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
|
|
1286
1727
|
|
|
@@ -1370,7 +1811,7 @@ dependencies = [
|
|
|
1370
1811
|
"libc",
|
|
1371
1812
|
"redox_syscall",
|
|
1372
1813
|
"smallvec",
|
|
1373
|
-
"windows-targets",
|
|
1814
|
+
"windows-targets 0.52.6",
|
|
1374
1815
|
]
|
|
1375
1816
|
|
|
1376
1817
|
[[package]]
|
|
@@ -1382,6 +1823,12 @@ dependencies = [
|
|
|
1382
1823
|
"regex",
|
|
1383
1824
|
]
|
|
1384
1825
|
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "paste"
|
|
1828
|
+
version = "1.0.15"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1831
|
+
|
|
1385
1832
|
[[package]]
|
|
1386
1833
|
name = "peg"
|
|
1387
1834
|
version = "0.8.5"
|
|
@@ -1482,10 +1929,10 @@ dependencies = [
|
|
|
1482
1929
|
|
|
1483
1930
|
[[package]]
|
|
1484
1931
|
name = "polars"
|
|
1485
|
-
version = "0.
|
|
1486
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1932
|
+
version = "0.48.1"
|
|
1933
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1487
1934
|
dependencies = [
|
|
1488
|
-
"getrandom 0.2.
|
|
1935
|
+
"getrandom 0.2.16",
|
|
1489
1936
|
"polars-arrow",
|
|
1490
1937
|
"polars-core",
|
|
1491
1938
|
"polars-error",
|
|
@@ -1502,29 +1949,29 @@ dependencies = [
|
|
|
1502
1949
|
|
|
1503
1950
|
[[package]]
|
|
1504
1951
|
name = "polars-arrow"
|
|
1505
|
-
version = "0.
|
|
1506
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1952
|
+
version = "0.48.1"
|
|
1953
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1507
1954
|
dependencies = [
|
|
1508
1955
|
"atoi_simd",
|
|
1956
|
+
"bitflags",
|
|
1509
1957
|
"bytemuck",
|
|
1510
1958
|
"chrono",
|
|
1511
1959
|
"chrono-tz",
|
|
1512
1960
|
"dyn-clone",
|
|
1513
1961
|
"either",
|
|
1514
1962
|
"ethnum",
|
|
1515
|
-
"getrandom 0.2.
|
|
1516
|
-
"hashbrown 0.15.
|
|
1963
|
+
"getrandom 0.2.16",
|
|
1964
|
+
"hashbrown 0.15.3",
|
|
1517
1965
|
"itoa",
|
|
1518
1966
|
"lz4",
|
|
1519
1967
|
"num-traits",
|
|
1520
|
-
"parking_lot",
|
|
1521
1968
|
"polars-arrow-format",
|
|
1522
1969
|
"polars-error",
|
|
1523
1970
|
"polars-schema",
|
|
1524
1971
|
"polars-utils",
|
|
1972
|
+
"serde",
|
|
1525
1973
|
"simdutf8",
|
|
1526
1974
|
"streaming-iterator",
|
|
1527
|
-
"strength_reduce",
|
|
1528
1975
|
"strum_macros",
|
|
1529
1976
|
"version_check",
|
|
1530
1977
|
"zstd",
|
|
@@ -1542,15 +1989,15 @@ dependencies = [
|
|
|
1542
1989
|
|
|
1543
1990
|
[[package]]
|
|
1544
1991
|
name = "polars-compute"
|
|
1545
|
-
version = "0.
|
|
1546
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1992
|
+
version = "0.48.1"
|
|
1993
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1547
1994
|
dependencies = [
|
|
1548
1995
|
"atoi_simd",
|
|
1549
1996
|
"bytemuck",
|
|
1550
1997
|
"chrono",
|
|
1551
1998
|
"either",
|
|
1552
1999
|
"fast-float2",
|
|
1553
|
-
"hashbrown 0.15.
|
|
2000
|
+
"hashbrown 0.15.3",
|
|
1554
2001
|
"itoa",
|
|
1555
2002
|
"num-traits",
|
|
1556
2003
|
"polars-arrow",
|
|
@@ -1558,6 +2005,8 @@ dependencies = [
|
|
|
1558
2005
|
"polars-utils",
|
|
1559
2006
|
"rand 0.8.5",
|
|
1560
2007
|
"ryu",
|
|
2008
|
+
"serde",
|
|
2009
|
+
"skiplist",
|
|
1561
2010
|
"strength_reduce",
|
|
1562
2011
|
"strum_macros",
|
|
1563
2012
|
"version_check",
|
|
@@ -1565,8 +2014,8 @@ dependencies = [
|
|
|
1565
2014
|
|
|
1566
2015
|
[[package]]
|
|
1567
2016
|
name = "polars-core"
|
|
1568
|
-
version = "0.
|
|
1569
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2017
|
+
version = "0.48.1"
|
|
2018
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1570
2019
|
dependencies = [
|
|
1571
2020
|
"bitflags",
|
|
1572
2021
|
"bytemuck",
|
|
@@ -1575,7 +2024,7 @@ dependencies = [
|
|
|
1575
2024
|
"comfy-table",
|
|
1576
2025
|
"either",
|
|
1577
2026
|
"hashbrown 0.14.5",
|
|
1578
|
-
"hashbrown 0.15.
|
|
2027
|
+
"hashbrown 0.15.3",
|
|
1579
2028
|
"indexmap",
|
|
1580
2029
|
"itoa",
|
|
1581
2030
|
"num-traits",
|
|
@@ -1589,6 +2038,8 @@ dependencies = [
|
|
|
1589
2038
|
"rand_distr",
|
|
1590
2039
|
"rayon",
|
|
1591
2040
|
"regex",
|
|
2041
|
+
"serde",
|
|
2042
|
+
"serde_json",
|
|
1592
2043
|
"strum_macros",
|
|
1593
2044
|
"version_check",
|
|
1594
2045
|
"xxhash-rust",
|
|
@@ -1596,9 +2047,10 @@ dependencies = [
|
|
|
1596
2047
|
|
|
1597
2048
|
[[package]]
|
|
1598
2049
|
name = "polars-error"
|
|
1599
|
-
version = "0.
|
|
1600
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2050
|
+
version = "0.48.1"
|
|
2051
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1601
2052
|
dependencies = [
|
|
2053
|
+
"object_store",
|
|
1602
2054
|
"parking_lot",
|
|
1603
2055
|
"polars-arrow-format",
|
|
1604
2056
|
"regex",
|
|
@@ -1608,11 +2060,11 @@ dependencies = [
|
|
|
1608
2060
|
|
|
1609
2061
|
[[package]]
|
|
1610
2062
|
name = "polars-expr"
|
|
1611
|
-
version = "0.
|
|
1612
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2063
|
+
version = "0.48.1"
|
|
2064
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1613
2065
|
dependencies = [
|
|
1614
2066
|
"bitflags",
|
|
1615
|
-
"hashbrown 0.15.
|
|
2067
|
+
"hashbrown 0.15.3",
|
|
1616
2068
|
"num-traits",
|
|
1617
2069
|
"polars-arrow",
|
|
1618
2070
|
"polars-compute",
|
|
@@ -1630,23 +2082,26 @@ dependencies = [
|
|
|
1630
2082
|
|
|
1631
2083
|
[[package]]
|
|
1632
2084
|
name = "polars-io"
|
|
1633
|
-
version = "0.
|
|
1634
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2085
|
+
version = "0.48.1"
|
|
2086
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1635
2087
|
dependencies = [
|
|
1636
2088
|
"async-trait",
|
|
1637
2089
|
"atoi_simd",
|
|
2090
|
+
"blake3",
|
|
1638
2091
|
"bytes",
|
|
1639
2092
|
"chrono",
|
|
1640
2093
|
"chrono-tz",
|
|
1641
2094
|
"fast-float2",
|
|
2095
|
+
"fs4",
|
|
1642
2096
|
"futures",
|
|
1643
2097
|
"glob",
|
|
1644
|
-
"hashbrown 0.15.
|
|
2098
|
+
"hashbrown 0.15.3",
|
|
1645
2099
|
"home",
|
|
1646
2100
|
"itoa",
|
|
1647
2101
|
"memchr",
|
|
1648
2102
|
"memmap2",
|
|
1649
2103
|
"num-traits",
|
|
2104
|
+
"object_store",
|
|
1650
2105
|
"percent-encoding",
|
|
1651
2106
|
"polars-arrow",
|
|
1652
2107
|
"polars-core",
|
|
@@ -1658,21 +2113,25 @@ dependencies = [
|
|
|
1658
2113
|
"polars-utils",
|
|
1659
2114
|
"rayon",
|
|
1660
2115
|
"regex",
|
|
2116
|
+
"reqwest",
|
|
1661
2117
|
"ryu",
|
|
2118
|
+
"serde",
|
|
2119
|
+
"serde_json",
|
|
1662
2120
|
"simdutf8",
|
|
1663
2121
|
"tokio",
|
|
1664
2122
|
"tokio-util",
|
|
2123
|
+
"url",
|
|
1665
2124
|
]
|
|
1666
2125
|
|
|
1667
2126
|
[[package]]
|
|
1668
2127
|
name = "polars-json"
|
|
1669
|
-
version = "0.
|
|
1670
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2128
|
+
version = "0.48.1"
|
|
2129
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1671
2130
|
dependencies = [
|
|
1672
2131
|
"chrono",
|
|
1673
2132
|
"chrono-tz",
|
|
1674
2133
|
"fallible-streaming-iterator",
|
|
1675
|
-
"hashbrown 0.15.
|
|
2134
|
+
"hashbrown 0.15.3",
|
|
1676
2135
|
"indexmap",
|
|
1677
2136
|
"itoa",
|
|
1678
2137
|
"num-traits",
|
|
@@ -1687,8 +2146,8 @@ dependencies = [
|
|
|
1687
2146
|
|
|
1688
2147
|
[[package]]
|
|
1689
2148
|
name = "polars-lazy"
|
|
1690
|
-
version = "0.
|
|
1691
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2149
|
+
version = "0.48.1"
|
|
2150
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1692
2151
|
dependencies = [
|
|
1693
2152
|
"bitflags",
|
|
1694
2153
|
"chrono",
|
|
@@ -1712,9 +2171,10 @@ dependencies = [
|
|
|
1712
2171
|
|
|
1713
2172
|
[[package]]
|
|
1714
2173
|
name = "polars-mem-engine"
|
|
1715
|
-
version = "0.
|
|
1716
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2174
|
+
version = "0.48.1"
|
|
2175
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1717
2176
|
dependencies = [
|
|
2177
|
+
"futures",
|
|
1718
2178
|
"memmap2",
|
|
1719
2179
|
"polars-arrow",
|
|
1720
2180
|
"polars-core",
|
|
@@ -1727,12 +2187,13 @@ dependencies = [
|
|
|
1727
2187
|
"polars-utils",
|
|
1728
2188
|
"rayon",
|
|
1729
2189
|
"recursive",
|
|
2190
|
+
"tokio",
|
|
1730
2191
|
]
|
|
1731
2192
|
|
|
1732
2193
|
[[package]]
|
|
1733
2194
|
name = "polars-ops"
|
|
1734
|
-
version = "0.
|
|
1735
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2195
|
+
version = "0.48.1"
|
|
2196
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1736
2197
|
dependencies = [
|
|
1737
2198
|
"argminmax",
|
|
1738
2199
|
"base64",
|
|
@@ -1740,7 +2201,7 @@ dependencies = [
|
|
|
1740
2201
|
"chrono",
|
|
1741
2202
|
"chrono-tz",
|
|
1742
2203
|
"either",
|
|
1743
|
-
"hashbrown 0.15.
|
|
2204
|
+
"hashbrown 0.15.3",
|
|
1744
2205
|
"hex",
|
|
1745
2206
|
"indexmap",
|
|
1746
2207
|
"libm",
|
|
@@ -1763,8 +2224,8 @@ dependencies = [
|
|
|
1763
2224
|
|
|
1764
2225
|
[[package]]
|
|
1765
2226
|
name = "polars-parquet"
|
|
1766
|
-
version = "0.
|
|
1767
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2227
|
+
version = "0.48.1"
|
|
2228
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1768
2229
|
dependencies = [
|
|
1769
2230
|
"async-stream",
|
|
1770
2231
|
"base64",
|
|
@@ -1773,7 +2234,7 @@ dependencies = [
|
|
|
1773
2234
|
"ethnum",
|
|
1774
2235
|
"flate2",
|
|
1775
2236
|
"futures",
|
|
1776
|
-
"hashbrown 0.15.
|
|
2237
|
+
"hashbrown 0.15.3",
|
|
1777
2238
|
"lz4",
|
|
1778
2239
|
"num-traits",
|
|
1779
2240
|
"polars-arrow",
|
|
@@ -1781,6 +2242,7 @@ dependencies = [
|
|
|
1781
2242
|
"polars-error",
|
|
1782
2243
|
"polars-parquet-format",
|
|
1783
2244
|
"polars-utils",
|
|
2245
|
+
"serde",
|
|
1784
2246
|
"simdutf8",
|
|
1785
2247
|
"snap",
|
|
1786
2248
|
"streaming-decompression",
|
|
@@ -1799,14 +2261,14 @@ dependencies = [
|
|
|
1799
2261
|
|
|
1800
2262
|
[[package]]
|
|
1801
2263
|
name = "polars-pipe"
|
|
1802
|
-
version = "0.
|
|
1803
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2264
|
+
version = "0.48.1"
|
|
2265
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1804
2266
|
dependencies = [
|
|
1805
2267
|
"crossbeam-channel",
|
|
1806
2268
|
"crossbeam-queue",
|
|
1807
2269
|
"enum_dispatch",
|
|
1808
2270
|
"futures",
|
|
1809
|
-
"hashbrown 0.15.
|
|
2271
|
+
"hashbrown 0.15.3",
|
|
1810
2272
|
"num-traits",
|
|
1811
2273
|
"polars-arrow",
|
|
1812
2274
|
"polars-compute",
|
|
@@ -1824,8 +2286,8 @@ dependencies = [
|
|
|
1824
2286
|
|
|
1825
2287
|
[[package]]
|
|
1826
2288
|
name = "polars-plan"
|
|
1827
|
-
version = "0.
|
|
1828
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2289
|
+
version = "0.48.1"
|
|
2290
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1829
2291
|
dependencies = [
|
|
1830
2292
|
"bitflags",
|
|
1831
2293
|
"bytemuck",
|
|
@@ -1833,7 +2295,8 @@ dependencies = [
|
|
|
1833
2295
|
"chrono",
|
|
1834
2296
|
"chrono-tz",
|
|
1835
2297
|
"either",
|
|
1836
|
-
"
|
|
2298
|
+
"futures",
|
|
2299
|
+
"hashbrown 0.15.3",
|
|
1837
2300
|
"memmap2",
|
|
1838
2301
|
"num-traits",
|
|
1839
2302
|
"percent-encoding",
|
|
@@ -1854,8 +2317,8 @@ dependencies = [
|
|
|
1854
2317
|
|
|
1855
2318
|
[[package]]
|
|
1856
2319
|
name = "polars-row"
|
|
1857
|
-
version = "0.
|
|
1858
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2320
|
+
version = "0.48.1"
|
|
2321
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1859
2322
|
dependencies = [
|
|
1860
2323
|
"bitflags",
|
|
1861
2324
|
"bytemuck",
|
|
@@ -1867,19 +2330,20 @@ dependencies = [
|
|
|
1867
2330
|
|
|
1868
2331
|
[[package]]
|
|
1869
2332
|
name = "polars-schema"
|
|
1870
|
-
version = "0.
|
|
1871
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2333
|
+
version = "0.48.1"
|
|
2334
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1872
2335
|
dependencies = [
|
|
1873
2336
|
"indexmap",
|
|
1874
2337
|
"polars-error",
|
|
1875
2338
|
"polars-utils",
|
|
2339
|
+
"serde",
|
|
1876
2340
|
"version_check",
|
|
1877
2341
|
]
|
|
1878
2342
|
|
|
1879
2343
|
[[package]]
|
|
1880
2344
|
name = "polars-sql"
|
|
1881
|
-
version = "0.
|
|
1882
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2345
|
+
version = "0.48.1"
|
|
2346
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1883
2347
|
dependencies = [
|
|
1884
2348
|
"bitflags",
|
|
1885
2349
|
"hex",
|
|
@@ -1898,8 +2362,8 @@ dependencies = [
|
|
|
1898
2362
|
|
|
1899
2363
|
[[package]]
|
|
1900
2364
|
name = "polars-stream"
|
|
1901
|
-
version = "0.
|
|
1902
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2365
|
+
version = "0.48.1"
|
|
2366
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1903
2367
|
dependencies = [
|
|
1904
2368
|
"async-channel",
|
|
1905
2369
|
"async-trait",
|
|
@@ -1934,8 +2398,8 @@ dependencies = [
|
|
|
1934
2398
|
|
|
1935
2399
|
[[package]]
|
|
1936
2400
|
name = "polars-time"
|
|
1937
|
-
version = "0.
|
|
1938
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2401
|
+
version = "0.48.1"
|
|
2402
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1939
2403
|
dependencies = [
|
|
1940
2404
|
"atoi_simd",
|
|
1941
2405
|
"bytemuck",
|
|
@@ -1956,14 +2420,16 @@ dependencies = [
|
|
|
1956
2420
|
|
|
1957
2421
|
[[package]]
|
|
1958
2422
|
name = "polars-utils"
|
|
1959
|
-
version = "0.
|
|
1960
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
2423
|
+
version = "0.48.1"
|
|
2424
|
+
source = "git+https://github.com/pola-rs/polars?rev=b9dd8cdbd6e6ec8373110536955ed5940b9460ec#b9dd8cdbd6e6ec8373110536955ed5940b9460ec"
|
|
1961
2425
|
dependencies = [
|
|
2426
|
+
"bincode",
|
|
1962
2427
|
"bytemuck",
|
|
1963
2428
|
"bytes",
|
|
1964
2429
|
"compact_str",
|
|
2430
|
+
"flate2",
|
|
1965
2431
|
"foldhash",
|
|
1966
|
-
"hashbrown 0.15.
|
|
2432
|
+
"hashbrown 0.15.3",
|
|
1967
2433
|
"indexmap",
|
|
1968
2434
|
"libc",
|
|
1969
2435
|
"memmap2",
|
|
@@ -1973,6 +2439,10 @@ dependencies = [
|
|
|
1973
2439
|
"raw-cpuid",
|
|
1974
2440
|
"rayon",
|
|
1975
2441
|
"regex",
|
|
2442
|
+
"rmp-serde",
|
|
2443
|
+
"serde",
|
|
2444
|
+
"serde_ignored",
|
|
2445
|
+
"serde_json",
|
|
1976
2446
|
"slotmap",
|
|
1977
2447
|
"stacker",
|
|
1978
2448
|
"sysinfo",
|
|
@@ -2000,7 +2470,7 @@ version = "0.2.21"
|
|
|
2000
2470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
2471
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2002
2472
|
dependencies = [
|
|
2003
|
-
"zerocopy 0.8.
|
|
2473
|
+
"zerocopy 0.8.25",
|
|
2004
2474
|
]
|
|
2005
2475
|
|
|
2006
2476
|
[[package]]
|
|
@@ -2014,26 +2484,28 @@ dependencies = [
|
|
|
2014
2484
|
|
|
2015
2485
|
[[package]]
|
|
2016
2486
|
name = "proc-macro2"
|
|
2017
|
-
version = "1.0.
|
|
2487
|
+
version = "1.0.95"
|
|
2018
2488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
-
checksum = "
|
|
2489
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
2020
2490
|
dependencies = [
|
|
2021
2491
|
"unicode-ident",
|
|
2022
2492
|
]
|
|
2023
2493
|
|
|
2024
2494
|
[[package]]
|
|
2025
2495
|
name = "psm"
|
|
2026
|
-
version = "0.1.
|
|
2496
|
+
version = "0.1.26"
|
|
2027
2497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
2498
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
2029
2499
|
dependencies = [
|
|
2030
2500
|
"cc",
|
|
2031
2501
|
]
|
|
2032
2502
|
|
|
2033
2503
|
[[package]]
|
|
2034
2504
|
name = "py_maplib"
|
|
2035
|
-
version = "0.15.
|
|
2505
|
+
version = "0.15.33"
|
|
2036
2506
|
dependencies = [
|
|
2507
|
+
"chrono",
|
|
2508
|
+
"cimxml",
|
|
2037
2509
|
"jemallocator",
|
|
2038
2510
|
"log",
|
|
2039
2511
|
"maplib",
|
|
@@ -2050,6 +2522,7 @@ dependencies = [
|
|
|
2050
2522
|
"templates",
|
|
2051
2523
|
"thiserror",
|
|
2052
2524
|
"triplestore",
|
|
2525
|
+
"uuid",
|
|
2053
2526
|
]
|
|
2054
2527
|
|
|
2055
2528
|
[[package]]
|
|
@@ -2065,9 +2538,9 @@ dependencies = [
|
|
|
2065
2538
|
|
|
2066
2539
|
[[package]]
|
|
2067
2540
|
name = "pyo3"
|
|
2068
|
-
version = "0.24.
|
|
2541
|
+
version = "0.24.2"
|
|
2069
2542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
-
checksum = "
|
|
2543
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
2071
2544
|
dependencies = [
|
|
2072
2545
|
"cfg-if",
|
|
2073
2546
|
"chrono",
|
|
@@ -2085,9 +2558,9 @@ dependencies = [
|
|
|
2085
2558
|
|
|
2086
2559
|
[[package]]
|
|
2087
2560
|
name = "pyo3-build-config"
|
|
2088
|
-
version = "0.24.
|
|
2561
|
+
version = "0.24.2"
|
|
2089
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2090
|
-
checksum = "
|
|
2563
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
2091
2564
|
dependencies = [
|
|
2092
2565
|
"once_cell",
|
|
2093
2566
|
"target-lexicon",
|
|
@@ -2095,9 +2568,9 @@ dependencies = [
|
|
|
2095
2568
|
|
|
2096
2569
|
[[package]]
|
|
2097
2570
|
name = "pyo3-ffi"
|
|
2098
|
-
version = "0.24.
|
|
2571
|
+
version = "0.24.2"
|
|
2099
2572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
-
checksum = "
|
|
2573
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
2101
2574
|
dependencies = [
|
|
2102
2575
|
"libc",
|
|
2103
2576
|
"pyo3-build-config",
|
|
@@ -2116,9 +2589,9 @@ dependencies = [
|
|
|
2116
2589
|
|
|
2117
2590
|
[[package]]
|
|
2118
2591
|
name = "pyo3-macros"
|
|
2119
|
-
version = "0.24.
|
|
2592
|
+
version = "0.24.2"
|
|
2120
2593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
-
checksum = "
|
|
2594
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
2122
2595
|
dependencies = [
|
|
2123
2596
|
"proc-macro2",
|
|
2124
2597
|
"pyo3-macros-backend",
|
|
@@ -2128,9 +2601,9 @@ dependencies = [
|
|
|
2128
2601
|
|
|
2129
2602
|
[[package]]
|
|
2130
2603
|
name = "pyo3-macros-backend"
|
|
2131
|
-
version = "0.24.
|
|
2604
|
+
version = "0.24.2"
|
|
2132
2605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
-
checksum = "
|
|
2606
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
2134
2607
|
dependencies = [
|
|
2135
2608
|
"heck",
|
|
2136
2609
|
"proc-macro2",
|
|
@@ -2156,11 +2629,66 @@ dependencies = [
|
|
|
2156
2629
|
|
|
2157
2630
|
[[package]]
|
|
2158
2631
|
name = "quick-xml"
|
|
2159
|
-
version = "0.37.
|
|
2632
|
+
version = "0.37.5"
|
|
2160
2633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
-
checksum = "
|
|
2634
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
2162
2635
|
dependencies = [
|
|
2163
2636
|
"memchr",
|
|
2637
|
+
"serde",
|
|
2638
|
+
]
|
|
2639
|
+
|
|
2640
|
+
[[package]]
|
|
2641
|
+
name = "quinn"
|
|
2642
|
+
version = "0.11.7"
|
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
+
checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
|
|
2645
|
+
dependencies = [
|
|
2646
|
+
"bytes",
|
|
2647
|
+
"cfg_aliases",
|
|
2648
|
+
"pin-project-lite",
|
|
2649
|
+
"quinn-proto",
|
|
2650
|
+
"quinn-udp",
|
|
2651
|
+
"rustc-hash",
|
|
2652
|
+
"rustls",
|
|
2653
|
+
"socket2",
|
|
2654
|
+
"thiserror",
|
|
2655
|
+
"tokio",
|
|
2656
|
+
"tracing",
|
|
2657
|
+
"web-time",
|
|
2658
|
+
]
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "quinn-proto"
|
|
2662
|
+
version = "0.11.11"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
|
|
2665
|
+
dependencies = [
|
|
2666
|
+
"bytes",
|
|
2667
|
+
"getrandom 0.3.2",
|
|
2668
|
+
"rand 0.9.1",
|
|
2669
|
+
"ring",
|
|
2670
|
+
"rustc-hash",
|
|
2671
|
+
"rustls",
|
|
2672
|
+
"rustls-pki-types",
|
|
2673
|
+
"slab",
|
|
2674
|
+
"thiserror",
|
|
2675
|
+
"tinyvec",
|
|
2676
|
+
"tracing",
|
|
2677
|
+
"web-time",
|
|
2678
|
+
]
|
|
2679
|
+
|
|
2680
|
+
[[package]]
|
|
2681
|
+
name = "quinn-udp"
|
|
2682
|
+
version = "0.5.12"
|
|
2683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2684
|
+
checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
|
|
2685
|
+
dependencies = [
|
|
2686
|
+
"cfg_aliases",
|
|
2687
|
+
"libc",
|
|
2688
|
+
"once_cell",
|
|
2689
|
+
"socket2",
|
|
2690
|
+
"tracing",
|
|
2691
|
+
"windows-sys 0.59.0",
|
|
2164
2692
|
]
|
|
2165
2693
|
|
|
2166
2694
|
[[package]]
|
|
@@ -2191,13 +2719,12 @@ dependencies = [
|
|
|
2191
2719
|
|
|
2192
2720
|
[[package]]
|
|
2193
2721
|
name = "rand"
|
|
2194
|
-
version = "0.9.
|
|
2722
|
+
version = "0.9.1"
|
|
2195
2723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
-
checksum = "
|
|
2724
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2197
2725
|
dependencies = [
|
|
2198
2726
|
"rand_chacha 0.9.0",
|
|
2199
2727
|
"rand_core 0.9.3",
|
|
2200
|
-
"zerocopy 0.8.24",
|
|
2201
2728
|
]
|
|
2202
2729
|
|
|
2203
2730
|
[[package]]
|
|
@@ -2226,7 +2753,7 @@ version = "0.6.4"
|
|
|
2226
2753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
2754
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2228
2755
|
dependencies = [
|
|
2229
|
-
"getrandom 0.2.
|
|
2756
|
+
"getrandom 0.2.16",
|
|
2230
2757
|
]
|
|
2231
2758
|
|
|
2232
2759
|
[[package]]
|
|
@@ -2305,9 +2832,9 @@ dependencies = [
|
|
|
2305
2832
|
|
|
2306
2833
|
[[package]]
|
|
2307
2834
|
name = "redox_syscall"
|
|
2308
|
-
version = "0.5.
|
|
2835
|
+
version = "0.5.12"
|
|
2309
2836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
-
checksum = "
|
|
2837
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
|
2311
2838
|
dependencies = [
|
|
2312
2839
|
"bitflags",
|
|
2313
2840
|
]
|
|
@@ -2391,26 +2918,109 @@ dependencies = [
|
|
|
2391
2918
|
"serde",
|
|
2392
2919
|
"spargebra",
|
|
2393
2920
|
"thiserror",
|
|
2921
|
+
"utils",
|
|
2394
2922
|
"uuid",
|
|
2395
2923
|
]
|
|
2396
2924
|
|
|
2925
|
+
[[package]]
|
|
2926
|
+
name = "reqwest"
|
|
2927
|
+
version = "0.12.15"
|
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
2930
|
+
dependencies = [
|
|
2931
|
+
"base64",
|
|
2932
|
+
"bytes",
|
|
2933
|
+
"futures-core",
|
|
2934
|
+
"futures-util",
|
|
2935
|
+
"h2",
|
|
2936
|
+
"http",
|
|
2937
|
+
"http-body",
|
|
2938
|
+
"http-body-util",
|
|
2939
|
+
"hyper",
|
|
2940
|
+
"hyper-rustls",
|
|
2941
|
+
"hyper-util",
|
|
2942
|
+
"ipnet",
|
|
2943
|
+
"js-sys",
|
|
2944
|
+
"log",
|
|
2945
|
+
"mime",
|
|
2946
|
+
"once_cell",
|
|
2947
|
+
"percent-encoding",
|
|
2948
|
+
"pin-project-lite",
|
|
2949
|
+
"quinn",
|
|
2950
|
+
"rustls",
|
|
2951
|
+
"rustls-native-certs",
|
|
2952
|
+
"rustls-pemfile",
|
|
2953
|
+
"rustls-pki-types",
|
|
2954
|
+
"serde",
|
|
2955
|
+
"serde_json",
|
|
2956
|
+
"serde_urlencoded",
|
|
2957
|
+
"sync_wrapper",
|
|
2958
|
+
"tokio",
|
|
2959
|
+
"tokio-rustls",
|
|
2960
|
+
"tokio-util",
|
|
2961
|
+
"tower",
|
|
2962
|
+
"tower-service",
|
|
2963
|
+
"url",
|
|
2964
|
+
"wasm-bindgen",
|
|
2965
|
+
"wasm-bindgen-futures",
|
|
2966
|
+
"wasm-streams",
|
|
2967
|
+
"web-sys",
|
|
2968
|
+
"windows-registry",
|
|
2969
|
+
]
|
|
2970
|
+
|
|
2971
|
+
[[package]]
|
|
2972
|
+
name = "ring"
|
|
2973
|
+
version = "0.17.14"
|
|
2974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2976
|
+
dependencies = [
|
|
2977
|
+
"cc",
|
|
2978
|
+
"cfg-if",
|
|
2979
|
+
"getrandom 0.2.16",
|
|
2980
|
+
"libc",
|
|
2981
|
+
"untrusted",
|
|
2982
|
+
"windows-sys 0.52.0",
|
|
2983
|
+
]
|
|
2984
|
+
|
|
2985
|
+
[[package]]
|
|
2986
|
+
name = "rmp"
|
|
2987
|
+
version = "0.8.14"
|
|
2988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
+
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
|
|
2990
|
+
dependencies = [
|
|
2991
|
+
"byteorder",
|
|
2992
|
+
"num-traits",
|
|
2993
|
+
"paste",
|
|
2994
|
+
]
|
|
2995
|
+
|
|
2996
|
+
[[package]]
|
|
2997
|
+
name = "rmp-serde"
|
|
2998
|
+
version = "1.3.0"
|
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
+
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
|
|
3001
|
+
dependencies = [
|
|
3002
|
+
"byteorder",
|
|
3003
|
+
"rmp",
|
|
3004
|
+
"serde",
|
|
3005
|
+
]
|
|
3006
|
+
|
|
2397
3007
|
[[package]]
|
|
2398
3008
|
name = "rstest"
|
|
2399
|
-
version = "0.
|
|
3009
|
+
version = "0.25.0"
|
|
2400
3010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
-
checksum = "
|
|
3011
|
+
checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
|
|
2402
3012
|
dependencies = [
|
|
2403
|
-
"futures",
|
|
2404
3013
|
"futures-timer",
|
|
3014
|
+
"futures-util",
|
|
2405
3015
|
"rstest_macros",
|
|
2406
3016
|
"rustc_version",
|
|
2407
3017
|
]
|
|
2408
3018
|
|
|
2409
3019
|
[[package]]
|
|
2410
3020
|
name = "rstest_macros"
|
|
2411
|
-
version = "0.
|
|
3021
|
+
version = "0.25.0"
|
|
2412
3022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
-
checksum = "
|
|
3023
|
+
checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
|
|
2414
3024
|
dependencies = [
|
|
2415
3025
|
"cfg-if",
|
|
2416
3026
|
"glob",
|
|
@@ -2430,6 +3040,12 @@ version = "0.1.24"
|
|
|
2430
3040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
3041
|
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2432
3042
|
|
|
3043
|
+
[[package]]
|
|
3044
|
+
name = "rustc-hash"
|
|
3045
|
+
version = "2.1.1"
|
|
3046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3047
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3048
|
+
|
|
2433
3049
|
[[package]]
|
|
2434
3050
|
name = "rustc_version"
|
|
2435
3051
|
version = "0.4.1"
|
|
@@ -2448,10 +3064,79 @@ dependencies = [
|
|
|
2448
3064
|
"bitflags",
|
|
2449
3065
|
"errno",
|
|
2450
3066
|
"libc",
|
|
2451
|
-
"linux-raw-sys",
|
|
3067
|
+
"linux-raw-sys 0.4.15",
|
|
3068
|
+
"windows-sys 0.59.0",
|
|
3069
|
+
]
|
|
3070
|
+
|
|
3071
|
+
[[package]]
|
|
3072
|
+
name = "rustix"
|
|
3073
|
+
version = "1.0.7"
|
|
3074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
3076
|
+
dependencies = [
|
|
3077
|
+
"bitflags",
|
|
3078
|
+
"errno",
|
|
3079
|
+
"libc",
|
|
3080
|
+
"linux-raw-sys 0.9.4",
|
|
2452
3081
|
"windows-sys 0.59.0",
|
|
2453
3082
|
]
|
|
2454
3083
|
|
|
3084
|
+
[[package]]
|
|
3085
|
+
name = "rustls"
|
|
3086
|
+
version = "0.23.27"
|
|
3087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3088
|
+
checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
|
|
3089
|
+
dependencies = [
|
|
3090
|
+
"once_cell",
|
|
3091
|
+
"ring",
|
|
3092
|
+
"rustls-pki-types",
|
|
3093
|
+
"rustls-webpki",
|
|
3094
|
+
"subtle",
|
|
3095
|
+
"zeroize",
|
|
3096
|
+
]
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "rustls-native-certs"
|
|
3100
|
+
version = "0.8.1"
|
|
3101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
|
3103
|
+
dependencies = [
|
|
3104
|
+
"openssl-probe",
|
|
3105
|
+
"rustls-pki-types",
|
|
3106
|
+
"schannel",
|
|
3107
|
+
"security-framework",
|
|
3108
|
+
]
|
|
3109
|
+
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "rustls-pemfile"
|
|
3112
|
+
version = "2.2.0"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
3115
|
+
dependencies = [
|
|
3116
|
+
"rustls-pki-types",
|
|
3117
|
+
]
|
|
3118
|
+
|
|
3119
|
+
[[package]]
|
|
3120
|
+
name = "rustls-pki-types"
|
|
3121
|
+
version = "1.12.0"
|
|
3122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
3124
|
+
dependencies = [
|
|
3125
|
+
"web-time",
|
|
3126
|
+
"zeroize",
|
|
3127
|
+
]
|
|
3128
|
+
|
|
3129
|
+
[[package]]
|
|
3130
|
+
name = "rustls-webpki"
|
|
3131
|
+
version = "0.103.2"
|
|
3132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3133
|
+
checksum = "7149975849f1abb3832b246010ef62ccc80d3a76169517ada7188252b9cfb437"
|
|
3134
|
+
dependencies = [
|
|
3135
|
+
"ring",
|
|
3136
|
+
"rustls-pki-types",
|
|
3137
|
+
"untrusted",
|
|
3138
|
+
]
|
|
3139
|
+
|
|
2455
3140
|
[[package]]
|
|
2456
3141
|
name = "rustversion"
|
|
2457
3142
|
version = "1.0.20"
|
|
@@ -2475,13 +3160,22 @@ dependencies = [
|
|
|
2475
3160
|
|
|
2476
3161
|
[[package]]
|
|
2477
3162
|
name = "scc"
|
|
2478
|
-
version = "2.3.
|
|
3163
|
+
version = "2.3.4"
|
|
2479
3164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
-
checksum = "
|
|
3165
|
+
checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
|
|
2481
3166
|
dependencies = [
|
|
2482
3167
|
"sdd",
|
|
2483
3168
|
]
|
|
2484
3169
|
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "schannel"
|
|
3172
|
+
version = "0.1.27"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
3175
|
+
dependencies = [
|
|
3176
|
+
"windows-sys 0.59.0",
|
|
3177
|
+
]
|
|
3178
|
+
|
|
2485
3179
|
[[package]]
|
|
2486
3180
|
name = "scopeguard"
|
|
2487
3181
|
version = "1.2.0"
|
|
@@ -2494,6 +3188,29 @@ version = "3.0.8"
|
|
|
2494
3188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
3189
|
checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21"
|
|
2496
3190
|
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "security-framework"
|
|
3193
|
+
version = "3.2.0"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
|
3196
|
+
dependencies = [
|
|
3197
|
+
"bitflags",
|
|
3198
|
+
"core-foundation",
|
|
3199
|
+
"core-foundation-sys",
|
|
3200
|
+
"libc",
|
|
3201
|
+
"security-framework-sys",
|
|
3202
|
+
]
|
|
3203
|
+
|
|
3204
|
+
[[package]]
|
|
3205
|
+
name = "security-framework-sys"
|
|
3206
|
+
version = "2.14.0"
|
|
3207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3208
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
3209
|
+
dependencies = [
|
|
3210
|
+
"core-foundation-sys",
|
|
3211
|
+
"libc",
|
|
3212
|
+
]
|
|
3213
|
+
|
|
2497
3214
|
[[package]]
|
|
2498
3215
|
name = "semver"
|
|
2499
3216
|
version = "1.0.26"
|
|
@@ -2520,6 +3237,15 @@ dependencies = [
|
|
|
2520
3237
|
"syn",
|
|
2521
3238
|
]
|
|
2522
3239
|
|
|
3240
|
+
[[package]]
|
|
3241
|
+
name = "serde_ignored"
|
|
3242
|
+
version = "0.1.12"
|
|
3243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
+
checksum = "b516445dac1e3535b6d658a7b528d771153dfb272ed4180ca4617a20550365ff"
|
|
3245
|
+
dependencies = [
|
|
3246
|
+
"serde",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
2523
3249
|
[[package]]
|
|
2524
3250
|
name = "serde_json"
|
|
2525
3251
|
version = "1.0.140"
|
|
@@ -2532,6 +3258,18 @@ dependencies = [
|
|
|
2532
3258
|
"serde",
|
|
2533
3259
|
]
|
|
2534
3260
|
|
|
3261
|
+
[[package]]
|
|
3262
|
+
name = "serde_urlencoded"
|
|
3263
|
+
version = "0.7.1"
|
|
3264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3266
|
+
dependencies = [
|
|
3267
|
+
"form_urlencoded",
|
|
3268
|
+
"itoa",
|
|
3269
|
+
"ryu",
|
|
3270
|
+
"serde",
|
|
3271
|
+
]
|
|
3272
|
+
|
|
2535
3273
|
[[package]]
|
|
2536
3274
|
name = "serial_test"
|
|
2537
3275
|
version = "3.2.0"
|
|
@@ -2563,6 +3301,7 @@ version = "0.1.0"
|
|
|
2563
3301
|
dependencies = [
|
|
2564
3302
|
"oxrdf",
|
|
2565
3303
|
"polars",
|
|
3304
|
+
"pyo3",
|
|
2566
3305
|
"representation",
|
|
2567
3306
|
"thiserror",
|
|
2568
3307
|
"triplestore",
|
|
@@ -2586,9 +3325,9 @@ dependencies = [
|
|
|
2586
3325
|
|
|
2587
3326
|
[[package]]
|
|
2588
3327
|
name = "signal-hook-registry"
|
|
2589
|
-
version = "1.4.
|
|
3328
|
+
version = "1.4.5"
|
|
2590
3329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2591
|
-
checksum = "
|
|
3330
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
2592
3331
|
dependencies = [
|
|
2593
3332
|
"libc",
|
|
2594
3333
|
]
|
|
@@ -2600,7 +3339,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2600
3339
|
checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
|
|
2601
3340
|
dependencies = [
|
|
2602
3341
|
"ahash",
|
|
2603
|
-
"getrandom 0.2.
|
|
3342
|
+
"getrandom 0.2.16",
|
|
2604
3343
|
"halfbrown",
|
|
2605
3344
|
"once_cell",
|
|
2606
3345
|
"ref-cast",
|
|
@@ -2622,6 +3361,15 @@ version = "1.0.1"
|
|
|
2622
3361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
3362
|
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2624
3363
|
|
|
3364
|
+
[[package]]
|
|
3365
|
+
name = "skiplist"
|
|
3366
|
+
version = "0.5.1"
|
|
3367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
+
checksum = "0eec25f46463fcdc5e02f388c2780b1b58e01be81a8378e62ec60931beccc3f6"
|
|
3369
|
+
dependencies = [
|
|
3370
|
+
"rand 0.8.5",
|
|
3371
|
+
]
|
|
3372
|
+
|
|
2625
3373
|
[[package]]
|
|
2626
3374
|
name = "slab"
|
|
2627
3375
|
version = "0.4.9"
|
|
@@ -2685,7 +3433,7 @@ dependencies = [
|
|
|
2685
3433
|
"oxiri",
|
|
2686
3434
|
"oxrdf",
|
|
2687
3435
|
"peg",
|
|
2688
|
-
"rand 0.
|
|
3436
|
+
"rand 0.9.1",
|
|
2689
3437
|
"thiserror",
|
|
2690
3438
|
]
|
|
2691
3439
|
|
|
@@ -2713,11 +3461,17 @@ dependencies = [
|
|
|
2713
3461
|
"log",
|
|
2714
3462
|
]
|
|
2715
3463
|
|
|
3464
|
+
[[package]]
|
|
3465
|
+
name = "stable_deref_trait"
|
|
3466
|
+
version = "1.2.0"
|
|
3467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3468
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3469
|
+
|
|
2716
3470
|
[[package]]
|
|
2717
3471
|
name = "stacker"
|
|
2718
|
-
version = "0.1.
|
|
3472
|
+
version = "0.1.21"
|
|
2719
3473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
-
checksum = "
|
|
3474
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
|
2721
3475
|
dependencies = [
|
|
2722
3476
|
"cc",
|
|
2723
3477
|
"cfg-if",
|
|
@@ -2766,17 +3520,43 @@ dependencies = [
|
|
|
2766
3520
|
"syn",
|
|
2767
3521
|
]
|
|
2768
3522
|
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "subtle"
|
|
3525
|
+
version = "2.6.1"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3528
|
+
|
|
2769
3529
|
[[package]]
|
|
2770
3530
|
name = "syn"
|
|
2771
|
-
version = "2.0.
|
|
3531
|
+
version = "2.0.101"
|
|
2772
3532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
-
checksum = "
|
|
3533
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
2774
3534
|
dependencies = [
|
|
2775
3535
|
"proc-macro2",
|
|
2776
3536
|
"quote",
|
|
2777
3537
|
"unicode-ident",
|
|
2778
3538
|
]
|
|
2779
3539
|
|
|
3540
|
+
[[package]]
|
|
3541
|
+
name = "sync_wrapper"
|
|
3542
|
+
version = "1.0.2"
|
|
3543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3544
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3545
|
+
dependencies = [
|
|
3546
|
+
"futures-core",
|
|
3547
|
+
]
|
|
3548
|
+
|
|
3549
|
+
[[package]]
|
|
3550
|
+
name = "synstructure"
|
|
3551
|
+
version = "0.13.2"
|
|
3552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3554
|
+
dependencies = [
|
|
3555
|
+
"proc-macro2",
|
|
3556
|
+
"quote",
|
|
3557
|
+
"syn",
|
|
3558
|
+
]
|
|
3559
|
+
|
|
2780
3560
|
[[package]]
|
|
2781
3561
|
name = "sysinfo"
|
|
2782
3562
|
version = "0.33.1"
|
|
@@ -2830,6 +3610,16 @@ dependencies = [
|
|
|
2830
3610
|
"syn",
|
|
2831
3611
|
]
|
|
2832
3612
|
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "tinystr"
|
|
3615
|
+
version = "0.7.6"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
3618
|
+
dependencies = [
|
|
3619
|
+
"displaydoc",
|
|
3620
|
+
"zerovec",
|
|
3621
|
+
]
|
|
3622
|
+
|
|
2833
3623
|
[[package]]
|
|
2834
3624
|
name = "tinyvec"
|
|
2835
3625
|
version = "1.9.0"
|
|
@@ -2847,9 +3637,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2847
3637
|
|
|
2848
3638
|
[[package]]
|
|
2849
3639
|
name = "tokio"
|
|
2850
|
-
version = "1.
|
|
3640
|
+
version = "1.45.0"
|
|
2851
3641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
-
checksum = "
|
|
3642
|
+
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
|
|
2853
3643
|
dependencies = [
|
|
2854
3644
|
"backtrace",
|
|
2855
3645
|
"bytes",
|
|
@@ -2857,14 +3647,36 @@ dependencies = [
|
|
|
2857
3647
|
"mio",
|
|
2858
3648
|
"pin-project-lite",
|
|
2859
3649
|
"socket2",
|
|
3650
|
+
"tokio-macros",
|
|
2860
3651
|
"windows-sys 0.52.0",
|
|
2861
3652
|
]
|
|
2862
3653
|
|
|
3654
|
+
[[package]]
|
|
3655
|
+
name = "tokio-macros"
|
|
3656
|
+
version = "2.5.0"
|
|
3657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3658
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
3659
|
+
dependencies = [
|
|
3660
|
+
"proc-macro2",
|
|
3661
|
+
"quote",
|
|
3662
|
+
"syn",
|
|
3663
|
+
]
|
|
3664
|
+
|
|
3665
|
+
[[package]]
|
|
3666
|
+
name = "tokio-rustls"
|
|
3667
|
+
version = "0.26.2"
|
|
3668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3669
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
3670
|
+
dependencies = [
|
|
3671
|
+
"rustls",
|
|
3672
|
+
"tokio",
|
|
3673
|
+
]
|
|
3674
|
+
|
|
2863
3675
|
[[package]]
|
|
2864
3676
|
name = "tokio-util"
|
|
2865
|
-
version = "0.7.
|
|
3677
|
+
version = "0.7.15"
|
|
2866
3678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
-
checksum = "
|
|
3679
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
2868
3680
|
dependencies = [
|
|
2869
3681
|
"bytes",
|
|
2870
3682
|
"futures-core",
|
|
@@ -2875,21 +3687,79 @@ dependencies = [
|
|
|
2875
3687
|
|
|
2876
3688
|
[[package]]
|
|
2877
3689
|
name = "toml_datetime"
|
|
2878
|
-
version = "0.6.
|
|
3690
|
+
version = "0.6.9"
|
|
2879
3691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
-
checksum = "
|
|
3692
|
+
checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
|
|
2881
3693
|
|
|
2882
3694
|
[[package]]
|
|
2883
3695
|
name = "toml_edit"
|
|
2884
|
-
version = "0.22.
|
|
3696
|
+
version = "0.22.26"
|
|
2885
3697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
-
checksum = "
|
|
3698
|
+
checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
|
|
2887
3699
|
dependencies = [
|
|
2888
3700
|
"indexmap",
|
|
2889
3701
|
"toml_datetime",
|
|
2890
3702
|
"winnow",
|
|
2891
3703
|
]
|
|
2892
3704
|
|
|
3705
|
+
[[package]]
|
|
3706
|
+
name = "tower"
|
|
3707
|
+
version = "0.5.2"
|
|
3708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3709
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3710
|
+
dependencies = [
|
|
3711
|
+
"futures-core",
|
|
3712
|
+
"futures-util",
|
|
3713
|
+
"pin-project-lite",
|
|
3714
|
+
"sync_wrapper",
|
|
3715
|
+
"tokio",
|
|
3716
|
+
"tower-layer",
|
|
3717
|
+
"tower-service",
|
|
3718
|
+
]
|
|
3719
|
+
|
|
3720
|
+
[[package]]
|
|
3721
|
+
name = "tower-layer"
|
|
3722
|
+
version = "0.3.3"
|
|
3723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3724
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3725
|
+
|
|
3726
|
+
[[package]]
|
|
3727
|
+
name = "tower-service"
|
|
3728
|
+
version = "0.3.3"
|
|
3729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3730
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3731
|
+
|
|
3732
|
+
[[package]]
|
|
3733
|
+
name = "tracing"
|
|
3734
|
+
version = "0.1.41"
|
|
3735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3736
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3737
|
+
dependencies = [
|
|
3738
|
+
"pin-project-lite",
|
|
3739
|
+
"tracing-attributes",
|
|
3740
|
+
"tracing-core",
|
|
3741
|
+
]
|
|
3742
|
+
|
|
3743
|
+
[[package]]
|
|
3744
|
+
name = "tracing-attributes"
|
|
3745
|
+
version = "0.1.28"
|
|
3746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3747
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
3748
|
+
dependencies = [
|
|
3749
|
+
"proc-macro2",
|
|
3750
|
+
"quote",
|
|
3751
|
+
"syn",
|
|
3752
|
+
]
|
|
3753
|
+
|
|
3754
|
+
[[package]]
|
|
3755
|
+
name = "tracing-core"
|
|
3756
|
+
version = "0.1.33"
|
|
3757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3758
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
3759
|
+
dependencies = [
|
|
3760
|
+
"once_cell",
|
|
3761
|
+
]
|
|
3762
|
+
|
|
2893
3763
|
[[package]]
|
|
2894
3764
|
name = "triplestore"
|
|
2895
3765
|
version = "0.5.0"
|
|
@@ -2904,6 +3774,7 @@ dependencies = [
|
|
|
2904
3774
|
"oxttl",
|
|
2905
3775
|
"polars",
|
|
2906
3776
|
"polars-core",
|
|
3777
|
+
"pyo3",
|
|
2907
3778
|
"query_processing",
|
|
2908
3779
|
"rayon",
|
|
2909
3780
|
"representation",
|
|
@@ -2912,9 +3783,16 @@ dependencies = [
|
|
|
2912
3783
|
"spargebra",
|
|
2913
3784
|
"sprs",
|
|
2914
3785
|
"thiserror",
|
|
3786
|
+
"utils",
|
|
2915
3787
|
"uuid",
|
|
2916
3788
|
]
|
|
2917
3789
|
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "try-lock"
|
|
3792
|
+
version = "0.2.5"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3795
|
+
|
|
2918
3796
|
[[package]]
|
|
2919
3797
|
name = "unic-char-range"
|
|
2920
3798
|
version = "0.9.0"
|
|
@@ -2963,12 +3841,52 @@ version = "0.2.4"
|
|
|
2963
3841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2964
3842
|
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2965
3843
|
|
|
3844
|
+
[[package]]
|
|
3845
|
+
name = "untrusted"
|
|
3846
|
+
version = "0.9.0"
|
|
3847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3849
|
+
|
|
3850
|
+
[[package]]
|
|
3851
|
+
name = "url"
|
|
3852
|
+
version = "2.5.4"
|
|
3853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3854
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3855
|
+
dependencies = [
|
|
3856
|
+
"form_urlencoded",
|
|
3857
|
+
"idna",
|
|
3858
|
+
"percent-encoding",
|
|
3859
|
+
]
|
|
3860
|
+
|
|
3861
|
+
[[package]]
|
|
3862
|
+
name = "utf16_iter"
|
|
3863
|
+
version = "1.0.5"
|
|
3864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3865
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3866
|
+
|
|
3867
|
+
[[package]]
|
|
3868
|
+
name = "utf8_iter"
|
|
3869
|
+
version = "1.0.4"
|
|
3870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3872
|
+
|
|
2966
3873
|
[[package]]
|
|
2967
3874
|
name = "utf8parse"
|
|
2968
3875
|
version = "0.2.2"
|
|
2969
3876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
3877
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2971
3878
|
|
|
3879
|
+
[[package]]
|
|
3880
|
+
name = "utils"
|
|
3881
|
+
version = "0.1.0"
|
|
3882
|
+
dependencies = [
|
|
3883
|
+
"polars",
|
|
3884
|
+
"polars-core",
|
|
3885
|
+
"pyo3",
|
|
3886
|
+
"rayon",
|
|
3887
|
+
"thiserror",
|
|
3888
|
+
]
|
|
3889
|
+
|
|
2972
3890
|
[[package]]
|
|
2973
3891
|
name = "uuid"
|
|
2974
3892
|
version = "1.16.0"
|
|
@@ -2976,7 +3894,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2976
3894
|
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
2977
3895
|
dependencies = [
|
|
2978
3896
|
"getrandom 0.3.2",
|
|
2979
|
-
"rand 0.9.
|
|
3897
|
+
"rand 0.9.1",
|
|
2980
3898
|
]
|
|
2981
3899
|
|
|
2982
3900
|
[[package]]
|
|
@@ -3007,6 +3925,15 @@ dependencies = [
|
|
|
3007
3925
|
"winapi-util",
|
|
3008
3926
|
]
|
|
3009
3927
|
|
|
3928
|
+
[[package]]
|
|
3929
|
+
name = "want"
|
|
3930
|
+
version = "0.3.1"
|
|
3931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3932
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3933
|
+
dependencies = [
|
|
3934
|
+
"try-lock",
|
|
3935
|
+
]
|
|
3936
|
+
|
|
3010
3937
|
[[package]]
|
|
3011
3938
|
name = "wasi"
|
|
3012
3939
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
@@ -3048,6 +3975,19 @@ dependencies = [
|
|
|
3048
3975
|
"wasm-bindgen-shared",
|
|
3049
3976
|
]
|
|
3050
3977
|
|
|
3978
|
+
[[package]]
|
|
3979
|
+
name = "wasm-bindgen-futures"
|
|
3980
|
+
version = "0.4.50"
|
|
3981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3982
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
3983
|
+
dependencies = [
|
|
3984
|
+
"cfg-if",
|
|
3985
|
+
"js-sys",
|
|
3986
|
+
"once_cell",
|
|
3987
|
+
"wasm-bindgen",
|
|
3988
|
+
"web-sys",
|
|
3989
|
+
]
|
|
3990
|
+
|
|
3051
3991
|
[[package]]
|
|
3052
3992
|
name = "wasm-bindgen-macro"
|
|
3053
3993
|
version = "0.2.100"
|
|
@@ -3080,6 +4020,39 @@ dependencies = [
|
|
|
3080
4020
|
"unicode-ident",
|
|
3081
4021
|
]
|
|
3082
4022
|
|
|
4023
|
+
[[package]]
|
|
4024
|
+
name = "wasm-streams"
|
|
4025
|
+
version = "0.4.2"
|
|
4026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4027
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
4028
|
+
dependencies = [
|
|
4029
|
+
"futures-util",
|
|
4030
|
+
"js-sys",
|
|
4031
|
+
"wasm-bindgen",
|
|
4032
|
+
"wasm-bindgen-futures",
|
|
4033
|
+
"web-sys",
|
|
4034
|
+
]
|
|
4035
|
+
|
|
4036
|
+
[[package]]
|
|
4037
|
+
name = "web-sys"
|
|
4038
|
+
version = "0.3.77"
|
|
4039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4040
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
4041
|
+
dependencies = [
|
|
4042
|
+
"js-sys",
|
|
4043
|
+
"wasm-bindgen",
|
|
4044
|
+
]
|
|
4045
|
+
|
|
4046
|
+
[[package]]
|
|
4047
|
+
name = "web-time"
|
|
4048
|
+
version = "1.1.0"
|
|
4049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4050
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4051
|
+
dependencies = [
|
|
4052
|
+
"js-sys",
|
|
4053
|
+
"wasm-bindgen",
|
|
4054
|
+
]
|
|
4055
|
+
|
|
3083
4056
|
[[package]]
|
|
3084
4057
|
name = "winapi"
|
|
3085
4058
|
version = "0.3.9"
|
|
@@ -3118,7 +4091,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3118
4091
|
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
|
3119
4092
|
dependencies = [
|
|
3120
4093
|
"windows-core 0.57.0",
|
|
3121
|
-
"windows-targets",
|
|
4094
|
+
"windows-targets 0.52.6",
|
|
3122
4095
|
]
|
|
3123
4096
|
|
|
3124
4097
|
[[package]]
|
|
@@ -3130,7 +4103,7 @@ dependencies = [
|
|
|
3130
4103
|
"windows-implement 0.57.0",
|
|
3131
4104
|
"windows-interface 0.57.0",
|
|
3132
4105
|
"windows-result 0.1.2",
|
|
3133
|
-
"windows-targets",
|
|
4106
|
+
"windows-targets 0.52.6",
|
|
3134
4107
|
]
|
|
3135
4108
|
|
|
3136
4109
|
[[package]]
|
|
@@ -3143,7 +4116,7 @@ dependencies = [
|
|
|
3143
4116
|
"windows-interface 0.59.1",
|
|
3144
4117
|
"windows-link",
|
|
3145
4118
|
"windows-result 0.3.2",
|
|
3146
|
-
"windows-strings",
|
|
4119
|
+
"windows-strings 0.4.0",
|
|
3147
4120
|
]
|
|
3148
4121
|
|
|
3149
4122
|
[[package]]
|
|
@@ -3196,13 +4169,24 @@ version = "0.1.1"
|
|
|
3196
4169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3197
4170
|
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
3198
4171
|
|
|
4172
|
+
[[package]]
|
|
4173
|
+
name = "windows-registry"
|
|
4174
|
+
version = "0.4.0"
|
|
4175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4176
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
4177
|
+
dependencies = [
|
|
4178
|
+
"windows-result 0.3.2",
|
|
4179
|
+
"windows-strings 0.3.1",
|
|
4180
|
+
"windows-targets 0.53.0",
|
|
4181
|
+
]
|
|
4182
|
+
|
|
3199
4183
|
[[package]]
|
|
3200
4184
|
name = "windows-result"
|
|
3201
4185
|
version = "0.1.2"
|
|
3202
4186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
4187
|
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
|
3204
4188
|
dependencies = [
|
|
3205
|
-
"windows-targets",
|
|
4189
|
+
"windows-targets 0.52.6",
|
|
3206
4190
|
]
|
|
3207
4191
|
|
|
3208
4192
|
[[package]]
|
|
@@ -3214,6 +4198,15 @@ dependencies = [
|
|
|
3214
4198
|
"windows-link",
|
|
3215
4199
|
]
|
|
3216
4200
|
|
|
4201
|
+
[[package]]
|
|
4202
|
+
name = "windows-strings"
|
|
4203
|
+
version = "0.3.1"
|
|
4204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4205
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
4206
|
+
dependencies = [
|
|
4207
|
+
"windows-link",
|
|
4208
|
+
]
|
|
4209
|
+
|
|
3217
4210
|
[[package]]
|
|
3218
4211
|
name = "windows-strings"
|
|
3219
4212
|
version = "0.4.0"
|
|
@@ -3229,7 +4222,7 @@ version = "0.52.0"
|
|
|
3229
4222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3230
4223
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3231
4224
|
dependencies = [
|
|
3232
|
-
"windows-targets",
|
|
4225
|
+
"windows-targets 0.52.6",
|
|
3233
4226
|
]
|
|
3234
4227
|
|
|
3235
4228
|
[[package]]
|
|
@@ -3238,7 +4231,7 @@ version = "0.59.0"
|
|
|
3238
4231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
4232
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3240
4233
|
dependencies = [
|
|
3241
|
-
"windows-targets",
|
|
4234
|
+
"windows-targets 0.52.6",
|
|
3242
4235
|
]
|
|
3243
4236
|
|
|
3244
4237
|
[[package]]
|
|
@@ -3247,14 +4240,30 @@ version = "0.52.6"
|
|
|
3247
4240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3248
4241
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3249
4242
|
dependencies = [
|
|
3250
|
-
"windows_aarch64_gnullvm",
|
|
3251
|
-
"windows_aarch64_msvc",
|
|
3252
|
-
"windows_i686_gnu",
|
|
3253
|
-
"windows_i686_gnullvm",
|
|
3254
|
-
"windows_i686_msvc",
|
|
3255
|
-
"windows_x86_64_gnu",
|
|
3256
|
-
"windows_x86_64_gnullvm",
|
|
3257
|
-
"windows_x86_64_msvc",
|
|
4243
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4244
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4245
|
+
"windows_i686_gnu 0.52.6",
|
|
4246
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4247
|
+
"windows_i686_msvc 0.52.6",
|
|
4248
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4249
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4250
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4251
|
+
]
|
|
4252
|
+
|
|
4253
|
+
[[package]]
|
|
4254
|
+
name = "windows-targets"
|
|
4255
|
+
version = "0.53.0"
|
|
4256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4257
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
|
4258
|
+
dependencies = [
|
|
4259
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
4260
|
+
"windows_aarch64_msvc 0.53.0",
|
|
4261
|
+
"windows_i686_gnu 0.53.0",
|
|
4262
|
+
"windows_i686_gnullvm 0.53.0",
|
|
4263
|
+
"windows_i686_msvc 0.53.0",
|
|
4264
|
+
"windows_x86_64_gnu 0.53.0",
|
|
4265
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
4266
|
+
"windows_x86_64_msvc 0.53.0",
|
|
3258
4267
|
]
|
|
3259
4268
|
|
|
3260
4269
|
[[package]]
|
|
@@ -3263,53 +4272,101 @@ version = "0.52.6"
|
|
|
3263
4272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3264
4273
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3265
4274
|
|
|
4275
|
+
[[package]]
|
|
4276
|
+
name = "windows_aarch64_gnullvm"
|
|
4277
|
+
version = "0.53.0"
|
|
4278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4279
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
4280
|
+
|
|
3266
4281
|
[[package]]
|
|
3267
4282
|
name = "windows_aarch64_msvc"
|
|
3268
4283
|
version = "0.52.6"
|
|
3269
4284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3270
4285
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3271
4286
|
|
|
4287
|
+
[[package]]
|
|
4288
|
+
name = "windows_aarch64_msvc"
|
|
4289
|
+
version = "0.53.0"
|
|
4290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4291
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
4292
|
+
|
|
3272
4293
|
[[package]]
|
|
3273
4294
|
name = "windows_i686_gnu"
|
|
3274
4295
|
version = "0.52.6"
|
|
3275
4296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
4297
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3277
4298
|
|
|
4299
|
+
[[package]]
|
|
4300
|
+
name = "windows_i686_gnu"
|
|
4301
|
+
version = "0.53.0"
|
|
4302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4303
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
4304
|
+
|
|
3278
4305
|
[[package]]
|
|
3279
4306
|
name = "windows_i686_gnullvm"
|
|
3280
4307
|
version = "0.52.6"
|
|
3281
4308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3282
4309
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3283
4310
|
|
|
4311
|
+
[[package]]
|
|
4312
|
+
name = "windows_i686_gnullvm"
|
|
4313
|
+
version = "0.53.0"
|
|
4314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4315
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
4316
|
+
|
|
3284
4317
|
[[package]]
|
|
3285
4318
|
name = "windows_i686_msvc"
|
|
3286
4319
|
version = "0.52.6"
|
|
3287
4320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
4321
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3289
4322
|
|
|
4323
|
+
[[package]]
|
|
4324
|
+
name = "windows_i686_msvc"
|
|
4325
|
+
version = "0.53.0"
|
|
4326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4327
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
4328
|
+
|
|
3290
4329
|
[[package]]
|
|
3291
4330
|
name = "windows_x86_64_gnu"
|
|
3292
4331
|
version = "0.52.6"
|
|
3293
4332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
4333
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3295
4334
|
|
|
4335
|
+
[[package]]
|
|
4336
|
+
name = "windows_x86_64_gnu"
|
|
4337
|
+
version = "0.53.0"
|
|
4338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4339
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
4340
|
+
|
|
3296
4341
|
[[package]]
|
|
3297
4342
|
name = "windows_x86_64_gnullvm"
|
|
3298
4343
|
version = "0.52.6"
|
|
3299
4344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
4345
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3301
4346
|
|
|
4347
|
+
[[package]]
|
|
4348
|
+
name = "windows_x86_64_gnullvm"
|
|
4349
|
+
version = "0.53.0"
|
|
4350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4351
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
4352
|
+
|
|
3302
4353
|
[[package]]
|
|
3303
4354
|
name = "windows_x86_64_msvc"
|
|
3304
4355
|
version = "0.52.6"
|
|
3305
4356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3306
4357
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3307
4358
|
|
|
4359
|
+
[[package]]
|
|
4360
|
+
name = "windows_x86_64_msvc"
|
|
4361
|
+
version = "0.53.0"
|
|
4362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4363
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
4364
|
+
|
|
3308
4365
|
[[package]]
|
|
3309
4366
|
name = "winnow"
|
|
3310
|
-
version = "0.7.
|
|
4367
|
+
version = "0.7.9"
|
|
3311
4368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3312
|
-
checksum = "
|
|
4369
|
+
checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3"
|
|
3313
4370
|
dependencies = [
|
|
3314
4371
|
"memchr",
|
|
3315
4372
|
]
|
|
@@ -3323,12 +4380,48 @@ dependencies = [
|
|
|
3323
4380
|
"bitflags",
|
|
3324
4381
|
]
|
|
3325
4382
|
|
|
4383
|
+
[[package]]
|
|
4384
|
+
name = "write16"
|
|
4385
|
+
version = "1.0.0"
|
|
4386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4387
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
4388
|
+
|
|
4389
|
+
[[package]]
|
|
4390
|
+
name = "writeable"
|
|
4391
|
+
version = "0.5.5"
|
|
4392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4393
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
4394
|
+
|
|
3326
4395
|
[[package]]
|
|
3327
4396
|
name = "xxhash-rust"
|
|
3328
4397
|
version = "0.8.15"
|
|
3329
4398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3330
4399
|
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
3331
4400
|
|
|
4401
|
+
[[package]]
|
|
4402
|
+
name = "yoke"
|
|
4403
|
+
version = "0.7.5"
|
|
4404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4405
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4406
|
+
dependencies = [
|
|
4407
|
+
"serde",
|
|
4408
|
+
"stable_deref_trait",
|
|
4409
|
+
"yoke-derive",
|
|
4410
|
+
"zerofrom",
|
|
4411
|
+
]
|
|
4412
|
+
|
|
4413
|
+
[[package]]
|
|
4414
|
+
name = "yoke-derive"
|
|
4415
|
+
version = "0.7.5"
|
|
4416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4417
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
4418
|
+
dependencies = [
|
|
4419
|
+
"proc-macro2",
|
|
4420
|
+
"quote",
|
|
4421
|
+
"syn",
|
|
4422
|
+
"synstructure",
|
|
4423
|
+
]
|
|
4424
|
+
|
|
3332
4425
|
[[package]]
|
|
3333
4426
|
name = "zerocopy"
|
|
3334
4427
|
version = "0.7.35"
|
|
@@ -3340,11 +4433,11 @@ dependencies = [
|
|
|
3340
4433
|
|
|
3341
4434
|
[[package]]
|
|
3342
4435
|
name = "zerocopy"
|
|
3343
|
-
version = "0.8.
|
|
4436
|
+
version = "0.8.25"
|
|
3344
4437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3345
|
-
checksum = "
|
|
4438
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
3346
4439
|
dependencies = [
|
|
3347
|
-
"zerocopy-derive 0.8.
|
|
4440
|
+
"zerocopy-derive 0.8.25",
|
|
3348
4441
|
]
|
|
3349
4442
|
|
|
3350
4443
|
[[package]]
|
|
@@ -3360,9 +4453,58 @@ dependencies = [
|
|
|
3360
4453
|
|
|
3361
4454
|
[[package]]
|
|
3362
4455
|
name = "zerocopy-derive"
|
|
3363
|
-
version = "0.8.
|
|
4456
|
+
version = "0.8.25"
|
|
4457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4458
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
4459
|
+
dependencies = [
|
|
4460
|
+
"proc-macro2",
|
|
4461
|
+
"quote",
|
|
4462
|
+
"syn",
|
|
4463
|
+
]
|
|
4464
|
+
|
|
4465
|
+
[[package]]
|
|
4466
|
+
name = "zerofrom"
|
|
4467
|
+
version = "0.1.6"
|
|
4468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4469
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4470
|
+
dependencies = [
|
|
4471
|
+
"zerofrom-derive",
|
|
4472
|
+
]
|
|
4473
|
+
|
|
4474
|
+
[[package]]
|
|
4475
|
+
name = "zerofrom-derive"
|
|
4476
|
+
version = "0.1.6"
|
|
4477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4478
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4479
|
+
dependencies = [
|
|
4480
|
+
"proc-macro2",
|
|
4481
|
+
"quote",
|
|
4482
|
+
"syn",
|
|
4483
|
+
"synstructure",
|
|
4484
|
+
]
|
|
4485
|
+
|
|
4486
|
+
[[package]]
|
|
4487
|
+
name = "zeroize"
|
|
4488
|
+
version = "1.8.1"
|
|
4489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4490
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
4491
|
+
|
|
4492
|
+
[[package]]
|
|
4493
|
+
name = "zerovec"
|
|
4494
|
+
version = "0.10.4"
|
|
4495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4496
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
4497
|
+
dependencies = [
|
|
4498
|
+
"yoke",
|
|
4499
|
+
"zerofrom",
|
|
4500
|
+
"zerovec-derive",
|
|
4501
|
+
]
|
|
4502
|
+
|
|
4503
|
+
[[package]]
|
|
4504
|
+
name = "zerovec-derive"
|
|
4505
|
+
version = "0.10.3"
|
|
3364
4506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3365
|
-
checksum = "
|
|
4507
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
3366
4508
|
dependencies = [
|
|
3367
4509
|
"proc-macro2",
|
|
3368
4510
|
"quote",
|