maplib 0.15.6__tar.gz → 0.15.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {maplib-0.15.6 → maplib-0.15.11}/Cargo.lock +231 -220
- {maplib-0.15.6 → maplib-0.15.11}/Cargo.toml +4 -4
- {maplib-0.15.6 → maplib-0.15.11}/PKG-INFO +4 -4
- {maplib-0.15.6 → maplib-0.15.11}/README.md +3 -3
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/mapping/constant_terms.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/mapping/errors.rs +3 -3
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/mapping.rs +22 -3
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/tests/test_stottr.rs +11 -30
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/expressions.rs +31 -27
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/graph_patterns.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/pushdowns.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/formatting.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/multitype.rs +13 -13
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/polars_to_rdf.rs +8 -8
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/python.rs +35 -30
- maplib-0.15.11/lib/representation/src/rdf_to_polars.rs +453 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/solution_mapping.rs +2 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/shacl/Cargo.toml +3 -1
- maplib-0.15.11/lib/shacl/src/errors.rs +8 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/shacl/src/lib.rs +32 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/parser.rs +38 -16
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/dblf.rs +8 -3
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/errors.rs +7 -3
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/lib.rs +35 -11
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/query_solutions.rs +4 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/rdfs_inferencing.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_aggregate.rs +2 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_expressions.rs +38 -3
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +4 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +6 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +7 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +11 -4
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +1 -1
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +5 -2
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +1 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +33 -7
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_order.rs +3 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql.rs +21 -6
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/storage.rs +43 -36
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/triples_read.rs +25 -8
- maplib-0.15.11/maplib/__init__.py +58 -0
- maplib-0.15.6/py_maplib/maplib/maplib.pyi → maplib-0.15.11/maplib/__init__.pyi +23 -4
- {maplib-0.15.6 → maplib-0.15.11}/maplib/add_triples.py +8 -2
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/Cargo.toml +1 -1
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/README.md +3 -3
- maplib-0.15.11/py_maplib/maplib/__init__.py +58 -0
- maplib-0.15.6/maplib/maplib.pyi → maplib-0.15.11/py_maplib/maplib/__init__.pyi +23 -4
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/maplib/add_triples.py +8 -2
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/src/lib.rs +50 -3
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/src/shacl.rs +22 -5
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_pizza_example.py +23 -3
- maplib-0.15.6/lib/representation/src/rdf_to_polars.rs +0 -405
- maplib-0.15.6/lib/shacl/src/errors.rs +0 -4
- maplib-0.15.6/maplib/__init__.py +0 -9
- maplib-0.15.6/py_maplib/maplib/__init__.py +0 -9
- {maplib-0.15.6 → maplib-0.15.11}/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/file_io/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/file_io/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/fts/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/fts/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/mapping/default.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/mapping/expansion/validation.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/src/mapping/expansion.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/tests/stottr_testdata/.gitignore +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/maplib/tests/stottr_testdata/expected_easy_case.ttl +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/pydf_io/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/pydf_io/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/pydf_io/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/pydf_io/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/pydf_io/src/to_python.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/pydf_io/src/to_rust.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/aggregates.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/constants.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/exists_helper.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/find_query_variables.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/query_processing/src/type_constraints.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/report_mapping/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/report_mapping/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/literals.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/query_context.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/representation/src/subtypes.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/shacl/src/storage.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/README.md +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/algebra.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/query.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/query_context.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/remove_sugar.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/term.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/treehouse.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/spargebra/src/update.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/ast.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/compatible.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/constants.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/dataset/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/dataset.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/document.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/lib.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/parsing/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/parsing/nom_parsing.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/parsing/parser_test.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/parsing/parsing_ast.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/parsing.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/python.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/resolver.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/templates/src/subtypes_ext.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/Cargo.toml +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/io_funcs.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/native_parquet_write.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/errors.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/sparql/pushdowns.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/triples_write/serializers.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/lib/triplestore/src/triples_write.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/maplib/py.typed +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/LICENSE +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/maplib/.gitignore +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/maplib/py.typed +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/src/error.rs +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/.gitignore +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/__init__.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/out.ttl +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/requirements.txt +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_basics.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_data_validation.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_integration.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_multi_expressions.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_rdf_parser.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_read_write.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/test_validate_iris.py +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/larger_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_concat.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/property_path_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/simple_query.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
- {maplib-0.15.6 → maplib-0.15.11}/pyproject.toml +0 -0
|
@@ -185,27 +185,18 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
|
185
185
|
dependencies = [
|
|
186
186
|
"proc-macro2",
|
|
187
187
|
"quote",
|
|
188
|
-
"syn
|
|
188
|
+
"syn",
|
|
189
189
|
]
|
|
190
190
|
|
|
191
191
|
[[package]]
|
|
192
192
|
name = "async-trait"
|
|
193
|
-
version = "0.1.
|
|
193
|
+
version = "0.1.88"
|
|
194
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "
|
|
195
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
196
196
|
dependencies = [
|
|
197
197
|
"proc-macro2",
|
|
198
198
|
"quote",
|
|
199
|
-
"syn
|
|
200
|
-
]
|
|
201
|
-
|
|
202
|
-
[[package]]
|
|
203
|
-
name = "atoi"
|
|
204
|
-
version = "2.0.0"
|
|
205
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
-
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
207
|
-
dependencies = [
|
|
208
|
-
"num-traits",
|
|
199
|
+
"syn",
|
|
209
200
|
]
|
|
210
201
|
|
|
211
202
|
[[package]]
|
|
@@ -291,13 +282,13 @@ dependencies = [
|
|
|
291
282
|
|
|
292
283
|
[[package]]
|
|
293
284
|
name = "bytemuck_derive"
|
|
294
|
-
version = "1.
|
|
285
|
+
version = "1.9.3"
|
|
295
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
-
checksum = "
|
|
287
|
+
checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
|
297
288
|
dependencies = [
|
|
298
289
|
"proc-macro2",
|
|
299
290
|
"quote",
|
|
300
|
-
"syn
|
|
291
|
+
"syn",
|
|
301
292
|
]
|
|
302
293
|
|
|
303
294
|
[[package]]
|
|
@@ -320,9 +311,9 @@ dependencies = [
|
|
|
320
311
|
|
|
321
312
|
[[package]]
|
|
322
313
|
name = "cc"
|
|
323
|
-
version = "1.2.
|
|
314
|
+
version = "1.2.17"
|
|
324
315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
-
checksum = "
|
|
316
|
+
checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
|
|
326
317
|
dependencies = [
|
|
327
318
|
"jobserver",
|
|
328
319
|
"libc",
|
|
@@ -362,12 +353,12 @@ dependencies = [
|
|
|
362
353
|
|
|
363
354
|
[[package]]
|
|
364
355
|
name = "chrono-tz"
|
|
365
|
-
version = "0.10.
|
|
356
|
+
version = "0.10.3"
|
|
366
357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "
|
|
358
|
+
checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
|
|
368
359
|
dependencies = [
|
|
369
360
|
"chrono",
|
|
370
|
-
"chrono-tz-build 0.4.
|
|
361
|
+
"chrono-tz-build 0.4.1",
|
|
371
362
|
"phf",
|
|
372
363
|
]
|
|
373
364
|
|
|
@@ -384,9 +375,9 @@ dependencies = [
|
|
|
384
375
|
|
|
385
376
|
[[package]]
|
|
386
377
|
name = "chrono-tz-build"
|
|
387
|
-
version = "0.4.
|
|
378
|
+
version = "0.4.1"
|
|
388
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
-
checksum = "
|
|
380
|
+
checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
|
|
390
381
|
dependencies = [
|
|
391
382
|
"parse-zoneinfo",
|
|
392
383
|
"phf_codegen",
|
|
@@ -525,7 +516,7 @@ dependencies = [
|
|
|
525
516
|
"once_cell",
|
|
526
517
|
"proc-macro2",
|
|
527
518
|
"quote",
|
|
528
|
-
"syn
|
|
519
|
+
"syn",
|
|
529
520
|
]
|
|
530
521
|
|
|
531
522
|
[[package]]
|
|
@@ -601,6 +592,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
601
592
|
checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
|
|
602
593
|
dependencies = [
|
|
603
594
|
"crc32fast",
|
|
595
|
+
"libz-rs-sys",
|
|
604
596
|
"miniz_oxide",
|
|
605
597
|
]
|
|
606
598
|
|
|
@@ -615,9 +607,9 @@ dependencies = [
|
|
|
615
607
|
|
|
616
608
|
[[package]]
|
|
617
609
|
name = "foldhash"
|
|
618
|
-
version = "0.1.
|
|
610
|
+
version = "0.1.5"
|
|
619
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
612
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
621
613
|
|
|
622
614
|
[[package]]
|
|
623
615
|
name = "fts"
|
|
@@ -705,7 +697,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
705
697
|
dependencies = [
|
|
706
698
|
"proc-macro2",
|
|
707
699
|
"quote",
|
|
708
|
-
"syn
|
|
700
|
+
"syn",
|
|
709
701
|
]
|
|
710
702
|
|
|
711
703
|
[[package]]
|
|
@@ -759,14 +751,14 @@ dependencies = [
|
|
|
759
751
|
|
|
760
752
|
[[package]]
|
|
761
753
|
name = "getrandom"
|
|
762
|
-
version = "0.3.
|
|
754
|
+
version = "0.3.2"
|
|
763
755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
-
checksum = "
|
|
756
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
765
757
|
dependencies = [
|
|
766
758
|
"cfg-if",
|
|
767
759
|
"libc",
|
|
768
|
-
"
|
|
769
|
-
"
|
|
760
|
+
"r-efi",
|
|
761
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
770
762
|
]
|
|
771
763
|
|
|
772
764
|
[[package]]
|
|
@@ -845,14 +837,15 @@ dependencies = [
|
|
|
845
837
|
|
|
846
838
|
[[package]]
|
|
847
839
|
name = "iana-time-zone"
|
|
848
|
-
version = "0.1.
|
|
840
|
+
version = "0.1.62"
|
|
849
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
-
checksum = "
|
|
842
|
+
checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127"
|
|
851
843
|
dependencies = [
|
|
852
844
|
"android_system_properties",
|
|
853
845
|
"core-foundation-sys",
|
|
854
846
|
"iana-time-zone-haiku",
|
|
855
847
|
"js-sys",
|
|
848
|
+
"log",
|
|
856
849
|
"wasm-bindgen",
|
|
857
850
|
"windows-core 0.52.0",
|
|
858
851
|
]
|
|
@@ -895,12 +888,6 @@ version = "1.0.15"
|
|
|
895
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
889
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
897
890
|
|
|
898
|
-
[[package]]
|
|
899
|
-
name = "itoap"
|
|
900
|
-
version = "1.0.1"
|
|
901
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
-
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
|
903
|
-
|
|
904
891
|
[[package]]
|
|
905
892
|
name = "jemalloc-sys"
|
|
906
893
|
version = "0.5.4+5.3.0-patched"
|
|
@@ -923,9 +910,9 @@ dependencies = [
|
|
|
923
910
|
|
|
924
911
|
[[package]]
|
|
925
912
|
name = "jiff"
|
|
926
|
-
version = "0.2.
|
|
913
|
+
version = "0.2.5"
|
|
927
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
-
checksum = "
|
|
915
|
+
checksum = "c102670231191d07d37a35af3eb77f1f0dbf7a71be51a962dcd57ea607be7260"
|
|
929
916
|
dependencies = [
|
|
930
917
|
"jiff-static",
|
|
931
918
|
"log",
|
|
@@ -936,13 +923,13 @@ dependencies = [
|
|
|
936
923
|
|
|
937
924
|
[[package]]
|
|
938
925
|
name = "jiff-static"
|
|
939
|
-
version = "0.2.
|
|
926
|
+
version = "0.2.5"
|
|
940
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
-
checksum = "
|
|
928
|
+
checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
|
|
942
929
|
dependencies = [
|
|
943
930
|
"proc-macro2",
|
|
944
931
|
"quote",
|
|
945
|
-
"syn
|
|
932
|
+
"syn",
|
|
946
933
|
]
|
|
947
934
|
|
|
948
935
|
[[package]]
|
|
@@ -972,9 +959,9 @@ checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
|
|
|
972
959
|
|
|
973
960
|
[[package]]
|
|
974
961
|
name = "libc"
|
|
975
|
-
version = "0.2.
|
|
962
|
+
version = "0.2.171"
|
|
976
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
-
checksum = "
|
|
964
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
978
965
|
|
|
979
966
|
[[package]]
|
|
980
967
|
name = "libm"
|
|
@@ -984,14 +971,23 @@ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
|
|
984
971
|
|
|
985
972
|
[[package]]
|
|
986
973
|
name = "libmimalloc-sys"
|
|
987
|
-
version = "0.1.
|
|
974
|
+
version = "0.1.40"
|
|
988
975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
976
|
+
checksum = "07d0e07885d6a754b9c7993f2625187ad694ee985d60f23355ff0e7077261502"
|
|
990
977
|
dependencies = [
|
|
991
978
|
"cc",
|
|
992
979
|
"libc",
|
|
993
980
|
]
|
|
994
981
|
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "libz-rs-sys"
|
|
984
|
+
version = "0.4.2"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "902bc563b5d65ad9bba616b490842ef0651066a1a1dc3ce1087113ffcb873c8d"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"zlib-rs",
|
|
989
|
+
]
|
|
990
|
+
|
|
995
991
|
[[package]]
|
|
996
992
|
name = "linux-raw-sys"
|
|
997
993
|
version = "0.4.15"
|
|
@@ -1010,9 +1006,9 @@ dependencies = [
|
|
|
1010
1006
|
|
|
1011
1007
|
[[package]]
|
|
1012
1008
|
name = "log"
|
|
1013
|
-
version = "0.4.
|
|
1009
|
+
version = "0.4.27"
|
|
1014
1010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
-
checksum = "
|
|
1011
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1016
1012
|
|
|
1017
1013
|
[[package]]
|
|
1018
1014
|
name = "lz4"
|
|
@@ -1038,7 +1034,7 @@ name = "maplib"
|
|
|
1038
1034
|
version = "0.6.0"
|
|
1039
1035
|
dependencies = [
|
|
1040
1036
|
"chrono",
|
|
1041
|
-
"chrono-tz 0.10.
|
|
1037
|
+
"chrono-tz 0.10.3",
|
|
1042
1038
|
"env_logger",
|
|
1043
1039
|
"log",
|
|
1044
1040
|
"oxiri",
|
|
@@ -1092,9 +1088,9 @@ dependencies = [
|
|
|
1092
1088
|
|
|
1093
1089
|
[[package]]
|
|
1094
1090
|
name = "mimalloc"
|
|
1095
|
-
version = "0.1.
|
|
1091
|
+
version = "0.1.44"
|
|
1096
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
-
checksum = "
|
|
1093
|
+
checksum = "99585191385958383e13f6b822e6b6d8d9cf928e7d286ceb092da92b43c87bc1"
|
|
1098
1094
|
dependencies = [
|
|
1099
1095
|
"libmimalloc-sys",
|
|
1100
1096
|
]
|
|
@@ -1125,28 +1121,6 @@ dependencies = [
|
|
|
1125
1121
|
"windows-sys 0.52.0",
|
|
1126
1122
|
]
|
|
1127
1123
|
|
|
1128
|
-
[[package]]
|
|
1129
|
-
name = "multiversion"
|
|
1130
|
-
version = "0.7.4"
|
|
1131
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
-
checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
|
|
1133
|
-
dependencies = [
|
|
1134
|
-
"multiversion-macros",
|
|
1135
|
-
"target-features",
|
|
1136
|
-
]
|
|
1137
|
-
|
|
1138
|
-
[[package]]
|
|
1139
|
-
name = "multiversion-macros"
|
|
1140
|
-
version = "0.7.4"
|
|
1141
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
|
|
1143
|
-
dependencies = [
|
|
1144
|
-
"proc-macro2",
|
|
1145
|
-
"quote",
|
|
1146
|
-
"syn 1.0.109",
|
|
1147
|
-
"target-features",
|
|
1148
|
-
]
|
|
1149
|
-
|
|
1150
1124
|
[[package]]
|
|
1151
1125
|
name = "ndarray"
|
|
1152
1126
|
version = "0.16.1"
|
|
@@ -1249,9 +1223,9 @@ dependencies = [
|
|
|
1249
1223
|
|
|
1250
1224
|
[[package]]
|
|
1251
1225
|
name = "once_cell"
|
|
1252
|
-
version = "1.21.
|
|
1226
|
+
version = "1.21.3"
|
|
1253
1227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1228
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1255
1229
|
|
|
1256
1230
|
[[package]]
|
|
1257
1231
|
name = "oxilangtag"
|
|
@@ -1460,8 +1434,8 @@ dependencies = [
|
|
|
1460
1434
|
|
|
1461
1435
|
[[package]]
|
|
1462
1436
|
name = "polars"
|
|
1463
|
-
version = "0.
|
|
1464
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1437
|
+
version = "0.46.0"
|
|
1438
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1465
1439
|
dependencies = [
|
|
1466
1440
|
"getrandom 0.2.15",
|
|
1467
1441
|
"polars-arrow",
|
|
@@ -1480,22 +1454,20 @@ dependencies = [
|
|
|
1480
1454
|
|
|
1481
1455
|
[[package]]
|
|
1482
1456
|
name = "polars-arrow"
|
|
1483
|
-
version = "0.
|
|
1484
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1457
|
+
version = "0.46.0"
|
|
1458
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1485
1459
|
dependencies = [
|
|
1486
|
-
"
|
|
1487
|
-
"atoi",
|
|
1460
|
+
"atoi_simd",
|
|
1488
1461
|
"bytemuck",
|
|
1489
1462
|
"chrono",
|
|
1490
|
-
"chrono-tz 0.10.
|
|
1463
|
+
"chrono-tz 0.10.3",
|
|
1491
1464
|
"dyn-clone",
|
|
1492
1465
|
"either",
|
|
1493
1466
|
"ethnum",
|
|
1494
1467
|
"getrandom 0.2.15",
|
|
1495
1468
|
"hashbrown 0.15.2",
|
|
1496
|
-
"
|
|
1469
|
+
"itoa",
|
|
1497
1470
|
"lz4",
|
|
1498
|
-
"multiversion",
|
|
1499
1471
|
"num-traits",
|
|
1500
1472
|
"parking_lot",
|
|
1501
1473
|
"polars-arrow-format",
|
|
@@ -1522,35 +1494,36 @@ dependencies = [
|
|
|
1522
1494
|
|
|
1523
1495
|
[[package]]
|
|
1524
1496
|
name = "polars-compute"
|
|
1525
|
-
version = "0.
|
|
1526
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1497
|
+
version = "0.46.0"
|
|
1498
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1527
1499
|
dependencies = [
|
|
1528
1500
|
"atoi_simd",
|
|
1529
1501
|
"bytemuck",
|
|
1530
1502
|
"chrono",
|
|
1531
1503
|
"either",
|
|
1532
1504
|
"fast-float2",
|
|
1505
|
+
"hashbrown 0.15.2",
|
|
1533
1506
|
"itoa",
|
|
1534
|
-
"itoap",
|
|
1535
1507
|
"num-traits",
|
|
1536
1508
|
"polars-arrow",
|
|
1537
1509
|
"polars-error",
|
|
1538
1510
|
"polars-utils",
|
|
1511
|
+
"rand 0.8.5",
|
|
1539
1512
|
"ryu",
|
|
1540
1513
|
"strength_reduce",
|
|
1514
|
+
"strum_macros",
|
|
1541
1515
|
"version_check",
|
|
1542
1516
|
]
|
|
1543
1517
|
|
|
1544
1518
|
[[package]]
|
|
1545
1519
|
name = "polars-core"
|
|
1546
|
-
version = "0.
|
|
1547
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1520
|
+
version = "0.46.0"
|
|
1521
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1548
1522
|
dependencies = [
|
|
1549
|
-
"ahash",
|
|
1550
1523
|
"bitflags",
|
|
1551
1524
|
"bytemuck",
|
|
1552
1525
|
"chrono",
|
|
1553
|
-
"chrono-tz 0.10.
|
|
1526
|
+
"chrono-tz 0.10.3",
|
|
1554
1527
|
"comfy-table",
|
|
1555
1528
|
"either",
|
|
1556
1529
|
"hashbrown 0.14.5",
|
|
@@ -1558,7 +1531,6 @@ dependencies = [
|
|
|
1558
1531
|
"indexmap",
|
|
1559
1532
|
"itoa",
|
|
1560
1533
|
"num-traits",
|
|
1561
|
-
"once_cell",
|
|
1562
1534
|
"polars-arrow",
|
|
1563
1535
|
"polars-compute",
|
|
1564
1536
|
"polars-error",
|
|
@@ -1570,32 +1542,30 @@ dependencies = [
|
|
|
1570
1542
|
"rayon",
|
|
1571
1543
|
"regex",
|
|
1572
1544
|
"strum_macros",
|
|
1573
|
-
"thiserror",
|
|
1574
1545
|
"version_check",
|
|
1575
1546
|
"xxhash-rust",
|
|
1576
1547
|
]
|
|
1577
1548
|
|
|
1578
1549
|
[[package]]
|
|
1579
1550
|
name = "polars-error"
|
|
1580
|
-
version = "0.
|
|
1581
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1551
|
+
version = "0.46.0"
|
|
1552
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1582
1553
|
dependencies = [
|
|
1554
|
+
"parking_lot",
|
|
1583
1555
|
"polars-arrow-format",
|
|
1584
1556
|
"regex",
|
|
1557
|
+
"signal-hook",
|
|
1585
1558
|
"simdutf8",
|
|
1586
|
-
"thiserror",
|
|
1587
1559
|
]
|
|
1588
1560
|
|
|
1589
1561
|
[[package]]
|
|
1590
1562
|
name = "polars-expr"
|
|
1591
|
-
version = "0.
|
|
1592
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1563
|
+
version = "0.46.0"
|
|
1564
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1593
1565
|
dependencies = [
|
|
1594
|
-
"ahash",
|
|
1595
1566
|
"bitflags",
|
|
1596
1567
|
"hashbrown 0.15.2",
|
|
1597
1568
|
"num-traits",
|
|
1598
|
-
"once_cell",
|
|
1599
1569
|
"polars-arrow",
|
|
1600
1570
|
"polars-compute",
|
|
1601
1571
|
"polars-core",
|
|
@@ -1611,15 +1581,14 @@ dependencies = [
|
|
|
1611
1581
|
|
|
1612
1582
|
[[package]]
|
|
1613
1583
|
name = "polars-io"
|
|
1614
|
-
version = "0.
|
|
1615
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1584
|
+
version = "0.46.0"
|
|
1585
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1616
1586
|
dependencies = [
|
|
1617
|
-
"ahash",
|
|
1618
1587
|
"async-trait",
|
|
1619
1588
|
"atoi_simd",
|
|
1620
1589
|
"bytes",
|
|
1621
1590
|
"chrono",
|
|
1622
|
-
"chrono-tz 0.10.
|
|
1591
|
+
"chrono-tz 0.10.3",
|
|
1623
1592
|
"fast-float2",
|
|
1624
1593
|
"futures",
|
|
1625
1594
|
"glob",
|
|
@@ -1629,7 +1598,6 @@ dependencies = [
|
|
|
1629
1598
|
"memchr",
|
|
1630
1599
|
"memmap2",
|
|
1631
1600
|
"num-traits",
|
|
1632
|
-
"once_cell",
|
|
1633
1601
|
"percent-encoding",
|
|
1634
1602
|
"polars-arrow",
|
|
1635
1603
|
"polars-core",
|
|
@@ -1649,12 +1617,11 @@ dependencies = [
|
|
|
1649
1617
|
|
|
1650
1618
|
[[package]]
|
|
1651
1619
|
name = "polars-json"
|
|
1652
|
-
version = "0.
|
|
1653
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1620
|
+
version = "0.46.0"
|
|
1621
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1654
1622
|
dependencies = [
|
|
1655
|
-
"ahash",
|
|
1656
1623
|
"chrono",
|
|
1657
|
-
"chrono-tz 0.10.
|
|
1624
|
+
"chrono-tz 0.10.3",
|
|
1658
1625
|
"fallible-streaming-iterator",
|
|
1659
1626
|
"hashbrown 0.15.2",
|
|
1660
1627
|
"indexmap",
|
|
@@ -1671,14 +1638,15 @@ dependencies = [
|
|
|
1671
1638
|
|
|
1672
1639
|
[[package]]
|
|
1673
1640
|
name = "polars-lazy"
|
|
1674
|
-
version = "0.
|
|
1675
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1641
|
+
version = "0.46.0"
|
|
1642
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1676
1643
|
dependencies = [
|
|
1677
|
-
"ahash",
|
|
1678
1644
|
"bitflags",
|
|
1645
|
+
"chrono",
|
|
1646
|
+
"either",
|
|
1679
1647
|
"memchr",
|
|
1680
|
-
"once_cell",
|
|
1681
1648
|
"polars-arrow",
|
|
1649
|
+
"polars-compute",
|
|
1682
1650
|
"polars-core",
|
|
1683
1651
|
"polars-expr",
|
|
1684
1652
|
"polars-io",
|
|
@@ -1695,8 +1663,8 @@ dependencies = [
|
|
|
1695
1663
|
|
|
1696
1664
|
[[package]]
|
|
1697
1665
|
name = "polars-mem-engine"
|
|
1698
|
-
version = "0.
|
|
1699
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1666
|
+
version = "0.46.0"
|
|
1667
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1700
1668
|
dependencies = [
|
|
1701
1669
|
"memmap2",
|
|
1702
1670
|
"polars-arrow",
|
|
@@ -1709,19 +1677,19 @@ dependencies = [
|
|
|
1709
1677
|
"polars-time",
|
|
1710
1678
|
"polars-utils",
|
|
1711
1679
|
"rayon",
|
|
1680
|
+
"recursive",
|
|
1712
1681
|
]
|
|
1713
1682
|
|
|
1714
1683
|
[[package]]
|
|
1715
1684
|
name = "polars-ops"
|
|
1716
|
-
version = "0.
|
|
1717
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1685
|
+
version = "0.46.0"
|
|
1686
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1718
1687
|
dependencies = [
|
|
1719
|
-
"ahash",
|
|
1720
1688
|
"argminmax",
|
|
1721
1689
|
"base64",
|
|
1722
1690
|
"bytemuck",
|
|
1723
1691
|
"chrono",
|
|
1724
|
-
"chrono-tz 0.10.
|
|
1692
|
+
"chrono-tz 0.10.3",
|
|
1725
1693
|
"either",
|
|
1726
1694
|
"hashbrown 0.15.2",
|
|
1727
1695
|
"hex",
|
|
@@ -1738,16 +1706,16 @@ dependencies = [
|
|
|
1738
1706
|
"regex",
|
|
1739
1707
|
"regex-syntax",
|
|
1740
1708
|
"strum_macros",
|
|
1709
|
+
"unicode-normalization",
|
|
1741
1710
|
"unicode-reverse",
|
|
1742
1711
|
"version_check",
|
|
1743
1712
|
]
|
|
1744
1713
|
|
|
1745
1714
|
[[package]]
|
|
1746
1715
|
name = "polars-parquet"
|
|
1747
|
-
version = "0.
|
|
1748
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1716
|
+
version = "0.46.0"
|
|
1717
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1749
1718
|
dependencies = [
|
|
1750
|
-
"ahash",
|
|
1751
1719
|
"async-stream",
|
|
1752
1720
|
"base64",
|
|
1753
1721
|
"brotli",
|
|
@@ -1781,8 +1749,8 @@ dependencies = [
|
|
|
1781
1749
|
|
|
1782
1750
|
[[package]]
|
|
1783
1751
|
name = "polars-pipe"
|
|
1784
|
-
version = "0.
|
|
1785
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1752
|
+
version = "0.46.0"
|
|
1753
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1786
1754
|
dependencies = [
|
|
1787
1755
|
"crossbeam-channel",
|
|
1788
1756
|
"crossbeam-queue",
|
|
@@ -1806,20 +1774,18 @@ dependencies = [
|
|
|
1806
1774
|
|
|
1807
1775
|
[[package]]
|
|
1808
1776
|
name = "polars-plan"
|
|
1809
|
-
version = "0.
|
|
1810
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1777
|
+
version = "0.46.0"
|
|
1778
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1811
1779
|
dependencies = [
|
|
1812
|
-
"ahash",
|
|
1813
1780
|
"bitflags",
|
|
1814
1781
|
"bytemuck",
|
|
1815
1782
|
"bytes",
|
|
1816
1783
|
"chrono",
|
|
1817
|
-
"chrono-tz 0.10.
|
|
1784
|
+
"chrono-tz 0.10.3",
|
|
1818
1785
|
"either",
|
|
1819
1786
|
"hashbrown 0.15.2",
|
|
1820
1787
|
"memmap2",
|
|
1821
1788
|
"num-traits",
|
|
1822
|
-
"once_cell",
|
|
1823
1789
|
"percent-encoding",
|
|
1824
1790
|
"polars-arrow",
|
|
1825
1791
|
"polars-compute",
|
|
@@ -1838,8 +1804,8 @@ dependencies = [
|
|
|
1838
1804
|
|
|
1839
1805
|
[[package]]
|
|
1840
1806
|
name = "polars-row"
|
|
1841
|
-
version = "0.
|
|
1842
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1807
|
+
version = "0.46.0"
|
|
1808
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1843
1809
|
dependencies = [
|
|
1844
1810
|
"bitflags",
|
|
1845
1811
|
"bytemuck",
|
|
@@ -1851,8 +1817,8 @@ dependencies = [
|
|
|
1851
1817
|
|
|
1852
1818
|
[[package]]
|
|
1853
1819
|
name = "polars-schema"
|
|
1854
|
-
version = "0.
|
|
1855
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1820
|
+
version = "0.46.0"
|
|
1821
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1856
1822
|
dependencies = [
|
|
1857
1823
|
"indexmap",
|
|
1858
1824
|
"polars-error",
|
|
@@ -1862,12 +1828,11 @@ dependencies = [
|
|
|
1862
1828
|
|
|
1863
1829
|
[[package]]
|
|
1864
1830
|
name = "polars-sql"
|
|
1865
|
-
version = "0.
|
|
1866
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1831
|
+
version = "0.46.0"
|
|
1832
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1867
1833
|
dependencies = [
|
|
1834
|
+
"bitflags",
|
|
1868
1835
|
"hex",
|
|
1869
|
-
"once_cell",
|
|
1870
|
-
"polars-arrow",
|
|
1871
1836
|
"polars-core",
|
|
1872
1837
|
"polars-error",
|
|
1873
1838
|
"polars-lazy",
|
|
@@ -1876,23 +1841,29 @@ dependencies = [
|
|
|
1876
1841
|
"polars-time",
|
|
1877
1842
|
"polars-utils",
|
|
1878
1843
|
"rand 0.8.5",
|
|
1844
|
+
"regex",
|
|
1879
1845
|
"serde",
|
|
1880
|
-
"serde_json",
|
|
1881
1846
|
"sqlparser",
|
|
1882
1847
|
]
|
|
1883
1848
|
|
|
1884
1849
|
[[package]]
|
|
1885
1850
|
name = "polars-stream"
|
|
1886
|
-
version = "0.
|
|
1887
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1851
|
+
version = "0.46.0"
|
|
1852
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1888
1853
|
dependencies = [
|
|
1854
|
+
"async-trait",
|
|
1889
1855
|
"atomic-waker",
|
|
1856
|
+
"bitflags",
|
|
1857
|
+
"crossbeam-channel",
|
|
1890
1858
|
"crossbeam-deque",
|
|
1859
|
+
"crossbeam-queue",
|
|
1891
1860
|
"crossbeam-utils",
|
|
1892
1861
|
"futures",
|
|
1893
1862
|
"memmap2",
|
|
1894
1863
|
"parking_lot",
|
|
1864
|
+
"percent-encoding",
|
|
1895
1865
|
"pin-project-lite",
|
|
1866
|
+
"polars-arrow",
|
|
1896
1867
|
"polars-core",
|
|
1897
1868
|
"polars-error",
|
|
1898
1869
|
"polars-expr",
|
|
@@ -1912,40 +1883,40 @@ dependencies = [
|
|
|
1912
1883
|
|
|
1913
1884
|
[[package]]
|
|
1914
1885
|
name = "polars-time"
|
|
1915
|
-
version = "0.
|
|
1916
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1886
|
+
version = "0.46.0"
|
|
1887
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1917
1888
|
dependencies = [
|
|
1918
|
-
"
|
|
1889
|
+
"atoi_simd",
|
|
1919
1890
|
"bytemuck",
|
|
1920
1891
|
"chrono",
|
|
1921
|
-
"chrono-tz 0.10.
|
|
1892
|
+
"chrono-tz 0.10.3",
|
|
1922
1893
|
"now",
|
|
1923
|
-
"
|
|
1894
|
+
"num-traits",
|
|
1924
1895
|
"polars-arrow",
|
|
1925
1896
|
"polars-compute",
|
|
1926
1897
|
"polars-core",
|
|
1927
1898
|
"polars-error",
|
|
1928
1899
|
"polars-ops",
|
|
1929
1900
|
"polars-utils",
|
|
1901
|
+
"rayon",
|
|
1930
1902
|
"regex",
|
|
1931
1903
|
"strum_macros",
|
|
1932
1904
|
]
|
|
1933
1905
|
|
|
1934
1906
|
[[package]]
|
|
1935
1907
|
name = "polars-utils"
|
|
1936
|
-
version = "0.
|
|
1937
|
-
source = "git+https://github.com/pola-rs/polars?rev=
|
|
1908
|
+
version = "0.46.0"
|
|
1909
|
+
source = "git+https://github.com/pola-rs/polars?rev=ac9d598fd07d85b26a29bd7465a7bfa945b6f963#ac9d598fd07d85b26a29bd7465a7bfa945b6f963"
|
|
1938
1910
|
dependencies = [
|
|
1939
|
-
"ahash",
|
|
1940
1911
|
"bytemuck",
|
|
1941
1912
|
"bytes",
|
|
1942
1913
|
"compact_str",
|
|
1914
|
+
"foldhash",
|
|
1943
1915
|
"hashbrown 0.15.2",
|
|
1944
1916
|
"indexmap",
|
|
1945
1917
|
"libc",
|
|
1946
1918
|
"memmap2",
|
|
1947
1919
|
"num-traits",
|
|
1948
|
-
"once_cell",
|
|
1949
1920
|
"polars-error",
|
|
1950
1921
|
"rand 0.8.5",
|
|
1951
1922
|
"raw-cpuid",
|
|
@@ -1976,7 +1947,7 @@ version = "0.2.21"
|
|
|
1976
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
1948
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1978
1949
|
dependencies = [
|
|
1979
|
-
"zerocopy 0.8.
|
|
1950
|
+
"zerocopy 0.8.24",
|
|
1980
1951
|
]
|
|
1981
1952
|
|
|
1982
1953
|
[[package]]
|
|
@@ -2008,7 +1979,7 @@ dependencies = [
|
|
|
2008
1979
|
|
|
2009
1980
|
[[package]]
|
|
2010
1981
|
name = "py_maplib"
|
|
2011
|
-
version = "0.15.
|
|
1982
|
+
version = "0.15.11"
|
|
2012
1983
|
dependencies = [
|
|
2013
1984
|
"jemallocator",
|
|
2014
1985
|
"log",
|
|
@@ -2099,7 +2070,7 @@ dependencies = [
|
|
|
2099
2070
|
"proc-macro2",
|
|
2100
2071
|
"pyo3-macros-backend",
|
|
2101
2072
|
"quote",
|
|
2102
|
-
"syn
|
|
2073
|
+
"syn",
|
|
2103
2074
|
]
|
|
2104
2075
|
|
|
2105
2076
|
[[package]]
|
|
@@ -2112,7 +2083,7 @@ dependencies = [
|
|
|
2112
2083
|
"proc-macro2",
|
|
2113
2084
|
"pyo3-build-config",
|
|
2114
2085
|
"quote",
|
|
2115
|
-
"syn
|
|
2086
|
+
"syn",
|
|
2116
2087
|
]
|
|
2117
2088
|
|
|
2118
2089
|
[[package]]
|
|
@@ -2132,22 +2103,28 @@ dependencies = [
|
|
|
2132
2103
|
|
|
2133
2104
|
[[package]]
|
|
2134
2105
|
name = "quick-xml"
|
|
2135
|
-
version = "0.37.
|
|
2106
|
+
version = "0.37.3"
|
|
2136
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
2108
|
+
checksum = "bf763ab1c7a3aa408be466efc86efe35ed1bd3dd74173ed39d6b0d0a6f0ba148"
|
|
2138
2109
|
dependencies = [
|
|
2139
2110
|
"memchr",
|
|
2140
2111
|
]
|
|
2141
2112
|
|
|
2142
2113
|
[[package]]
|
|
2143
2114
|
name = "quote"
|
|
2144
|
-
version = "1.0.
|
|
2115
|
+
version = "1.0.40"
|
|
2145
2116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
-
checksum = "
|
|
2117
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2147
2118
|
dependencies = [
|
|
2148
2119
|
"proc-macro2",
|
|
2149
2120
|
]
|
|
2150
2121
|
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "r-efi"
|
|
2124
|
+
version = "5.2.0"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
2127
|
+
|
|
2151
2128
|
[[package]]
|
|
2152
2129
|
name = "rand"
|
|
2153
2130
|
version = "0.8.5"
|
|
@@ -2167,7 +2144,7 @@ checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
|
|
|
2167
2144
|
dependencies = [
|
|
2168
2145
|
"rand_chacha 0.9.0",
|
|
2169
2146
|
"rand_core 0.9.3",
|
|
2170
|
-
"zerocopy 0.8.
|
|
2147
|
+
"zerocopy 0.8.24",
|
|
2171
2148
|
]
|
|
2172
2149
|
|
|
2173
2150
|
[[package]]
|
|
@@ -2205,7 +2182,7 @@ version = "0.9.3"
|
|
|
2205
2182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
2183
|
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2207
2184
|
dependencies = [
|
|
2208
|
-
"getrandom 0.3.
|
|
2185
|
+
"getrandom 0.3.2",
|
|
2209
2186
|
]
|
|
2210
2187
|
|
|
2211
2188
|
[[package]]
|
|
@@ -2270,7 +2247,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2270
2247
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
2271
2248
|
dependencies = [
|
|
2272
2249
|
"quote",
|
|
2273
|
-
"syn
|
|
2250
|
+
"syn",
|
|
2274
2251
|
]
|
|
2275
2252
|
|
|
2276
2253
|
[[package]]
|
|
@@ -2299,7 +2276,7 @@ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
|
2299
2276
|
dependencies = [
|
|
2300
2277
|
"proc-macro2",
|
|
2301
2278
|
"quote",
|
|
2302
|
-
"syn
|
|
2279
|
+
"syn",
|
|
2303
2280
|
]
|
|
2304
2281
|
|
|
2305
2282
|
[[package]]
|
|
@@ -2351,7 +2328,7 @@ name = "representation"
|
|
|
2351
2328
|
version = "0.6.10"
|
|
2352
2329
|
dependencies = [
|
|
2353
2330
|
"chrono",
|
|
2354
|
-
"chrono-tz 0.10.
|
|
2331
|
+
"chrono-tz 0.10.3",
|
|
2355
2332
|
"log",
|
|
2356
2333
|
"oxrdf",
|
|
2357
2334
|
"oxsdatatypes",
|
|
@@ -2390,7 +2367,7 @@ dependencies = [
|
|
|
2390
2367
|
"regex",
|
|
2391
2368
|
"relative-path",
|
|
2392
2369
|
"rustc_version",
|
|
2393
|
-
"syn
|
|
2370
|
+
"syn",
|
|
2394
2371
|
"unicode-ident",
|
|
2395
2372
|
]
|
|
2396
2373
|
|
|
@@ -2487,7 +2464,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
|
2487
2464
|
dependencies = [
|
|
2488
2465
|
"proc-macro2",
|
|
2489
2466
|
"quote",
|
|
2490
|
-
"syn
|
|
2467
|
+
"syn",
|
|
2491
2468
|
]
|
|
2492
2469
|
|
|
2493
2470
|
[[package]]
|
|
@@ -2524,13 +2501,15 @@ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
|
|
|
2524
2501
|
dependencies = [
|
|
2525
2502
|
"proc-macro2",
|
|
2526
2503
|
"quote",
|
|
2527
|
-
"syn
|
|
2504
|
+
"syn",
|
|
2528
2505
|
]
|
|
2529
2506
|
|
|
2530
2507
|
[[package]]
|
|
2531
2508
|
name = "shacl"
|
|
2532
2509
|
version = "0.1.0"
|
|
2533
2510
|
dependencies = [
|
|
2511
|
+
"oxrdf",
|
|
2512
|
+
"polars",
|
|
2534
2513
|
"representation",
|
|
2535
2514
|
"thiserror",
|
|
2536
2515
|
"triplestore",
|
|
@@ -2542,6 +2521,25 @@ version = "1.3.0"
|
|
|
2542
2521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
2522
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2544
2523
|
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "signal-hook"
|
|
2526
|
+
version = "0.3.17"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"libc",
|
|
2531
|
+
"signal-hook-registry",
|
|
2532
|
+
]
|
|
2533
|
+
|
|
2534
|
+
[[package]]
|
|
2535
|
+
name = "signal-hook-registry"
|
|
2536
|
+
version = "1.4.2"
|
|
2537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2538
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
2539
|
+
dependencies = [
|
|
2540
|
+
"libc",
|
|
2541
|
+
]
|
|
2542
|
+
|
|
2545
2543
|
[[package]]
|
|
2546
2544
|
name = "simd-json"
|
|
2547
2545
|
version = "0.14.3"
|
|
@@ -2655,18 +2653,18 @@ dependencies = [
|
|
|
2655
2653
|
|
|
2656
2654
|
[[package]]
|
|
2657
2655
|
name = "sqlparser"
|
|
2658
|
-
version = "0.
|
|
2656
|
+
version = "0.53.0"
|
|
2659
2657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
-
checksum = "
|
|
2658
|
+
checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
|
|
2661
2659
|
dependencies = [
|
|
2662
2660
|
"log",
|
|
2663
2661
|
]
|
|
2664
2662
|
|
|
2665
2663
|
[[package]]
|
|
2666
2664
|
name = "stacker"
|
|
2667
|
-
version = "0.1.
|
|
2665
|
+
version = "0.1.20"
|
|
2668
2666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
-
checksum = "
|
|
2667
|
+
checksum = "601f9201feb9b09c00266478bf459952b9ef9a6b94edb2f21eba14ab681a60a9"
|
|
2670
2668
|
dependencies = [
|
|
2671
2669
|
"cc",
|
|
2672
2670
|
"cfg-if",
|
|
@@ -2712,18 +2710,7 @@ dependencies = [
|
|
|
2712
2710
|
"proc-macro2",
|
|
2713
2711
|
"quote",
|
|
2714
2712
|
"rustversion",
|
|
2715
|
-
"syn
|
|
2716
|
-
]
|
|
2717
|
-
|
|
2718
|
-
[[package]]
|
|
2719
|
-
name = "syn"
|
|
2720
|
-
version = "1.0.109"
|
|
2721
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2723
|
-
dependencies = [
|
|
2724
|
-
"proc-macro2",
|
|
2725
|
-
"quote",
|
|
2726
|
-
"unicode-ident",
|
|
2713
|
+
"syn",
|
|
2727
2714
|
]
|
|
2728
2715
|
|
|
2729
2716
|
[[package]]
|
|
@@ -2750,12 +2737,6 @@ dependencies = [
|
|
|
2750
2737
|
"windows",
|
|
2751
2738
|
]
|
|
2752
2739
|
|
|
2753
|
-
[[package]]
|
|
2754
|
-
name = "target-features"
|
|
2755
|
-
version = "0.1.6"
|
|
2756
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
-
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
|
2758
|
-
|
|
2759
2740
|
[[package]]
|
|
2760
2741
|
name = "target-lexicon"
|
|
2761
2742
|
version = "0.12.16"
|
|
@@ -2793,14 +2774,29 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
|
2793
2774
|
dependencies = [
|
|
2794
2775
|
"proc-macro2",
|
|
2795
2776
|
"quote",
|
|
2796
|
-
"syn
|
|
2777
|
+
"syn",
|
|
2778
|
+
]
|
|
2779
|
+
|
|
2780
|
+
[[package]]
|
|
2781
|
+
name = "tinyvec"
|
|
2782
|
+
version = "1.9.0"
|
|
2783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2784
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
2785
|
+
dependencies = [
|
|
2786
|
+
"tinyvec_macros",
|
|
2797
2787
|
]
|
|
2798
2788
|
|
|
2789
|
+
[[package]]
|
|
2790
|
+
name = "tinyvec_macros"
|
|
2791
|
+
version = "0.1.1"
|
|
2792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2794
|
+
|
|
2799
2795
|
[[package]]
|
|
2800
2796
|
name = "tokio"
|
|
2801
|
-
version = "1.44.
|
|
2797
|
+
version = "1.44.1"
|
|
2802
2798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
-
checksum = "
|
|
2799
|
+
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
|
2804
2800
|
dependencies = [
|
|
2805
2801
|
"backtrace",
|
|
2806
2802
|
"bytes",
|
|
@@ -2813,9 +2809,9 @@ dependencies = [
|
|
|
2813
2809
|
|
|
2814
2810
|
[[package]]
|
|
2815
2811
|
name = "tokio-util"
|
|
2816
|
-
version = "0.7.
|
|
2812
|
+
version = "0.7.14"
|
|
2817
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
-
checksum = "
|
|
2814
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
2819
2815
|
dependencies = [
|
|
2820
2816
|
"bytes",
|
|
2821
2817
|
"futures-core",
|
|
@@ -2878,6 +2874,15 @@ version = "1.0.18"
|
|
|
2878
2874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
2875
|
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
2880
2876
|
|
|
2877
|
+
[[package]]
|
|
2878
|
+
name = "unicode-normalization"
|
|
2879
|
+
version = "0.1.24"
|
|
2880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
2882
|
+
dependencies = [
|
|
2883
|
+
"tinyvec",
|
|
2884
|
+
]
|
|
2885
|
+
|
|
2881
2886
|
[[package]]
|
|
2882
2887
|
name = "unicode-reverse"
|
|
2883
2888
|
version = "1.0.9"
|
|
@@ -2913,11 +2918,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
2913
2918
|
|
|
2914
2919
|
[[package]]
|
|
2915
2920
|
name = "uuid"
|
|
2916
|
-
version = "1.
|
|
2921
|
+
version = "1.16.0"
|
|
2917
2922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2918
|
-
checksum = "
|
|
2923
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
2919
2924
|
dependencies = [
|
|
2920
|
-
"getrandom 0.3.
|
|
2925
|
+
"getrandom 0.3.2",
|
|
2921
2926
|
"rand 0.9.0",
|
|
2922
2927
|
]
|
|
2923
2928
|
|
|
@@ -2957,9 +2962,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2957
2962
|
|
|
2958
2963
|
[[package]]
|
|
2959
2964
|
name = "wasi"
|
|
2960
|
-
version = "0.
|
|
2965
|
+
version = "0.14.2+wasi-0.2.4"
|
|
2961
2966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
2967
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
2963
2968
|
dependencies = [
|
|
2964
2969
|
"wit-bindgen-rt",
|
|
2965
2970
|
]
|
|
@@ -2986,7 +2991,7 @@ dependencies = [
|
|
|
2986
2991
|
"log",
|
|
2987
2992
|
"proc-macro2",
|
|
2988
2993
|
"quote",
|
|
2989
|
-
"syn
|
|
2994
|
+
"syn",
|
|
2990
2995
|
"wasm-bindgen-shared",
|
|
2991
2996
|
]
|
|
2992
2997
|
|
|
@@ -3008,7 +3013,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3008
3013
|
dependencies = [
|
|
3009
3014
|
"proc-macro2",
|
|
3010
3015
|
"quote",
|
|
3011
|
-
"syn
|
|
3016
|
+
"syn",
|
|
3012
3017
|
"wasm-bindgen-backend",
|
|
3013
3018
|
"wasm-bindgen-shared",
|
|
3014
3019
|
]
|
|
@@ -3092,7 +3097,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
|
3092
3097
|
dependencies = [
|
|
3093
3098
|
"proc-macro2",
|
|
3094
3099
|
"quote",
|
|
3095
|
-
"syn
|
|
3100
|
+
"syn",
|
|
3096
3101
|
]
|
|
3097
3102
|
|
|
3098
3103
|
[[package]]
|
|
@@ -3103,14 +3108,14 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
|
3103
3108
|
dependencies = [
|
|
3104
3109
|
"proc-macro2",
|
|
3105
3110
|
"quote",
|
|
3106
|
-
"syn
|
|
3111
|
+
"syn",
|
|
3107
3112
|
]
|
|
3108
3113
|
|
|
3109
3114
|
[[package]]
|
|
3110
3115
|
name = "windows-link"
|
|
3111
|
-
version = "0.1.
|
|
3116
|
+
version = "0.1.1"
|
|
3112
3117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
-
checksum = "
|
|
3118
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
3114
3119
|
|
|
3115
3120
|
[[package]]
|
|
3116
3121
|
name = "windows-result"
|
|
@@ -3205,18 +3210,18 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
3205
3210
|
|
|
3206
3211
|
[[package]]
|
|
3207
3212
|
name = "winnow"
|
|
3208
|
-
version = "0.7.
|
|
3213
|
+
version = "0.7.4"
|
|
3209
3214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3210
|
-
checksum = "
|
|
3215
|
+
checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
|
|
3211
3216
|
dependencies = [
|
|
3212
3217
|
"memchr",
|
|
3213
3218
|
]
|
|
3214
3219
|
|
|
3215
3220
|
[[package]]
|
|
3216
3221
|
name = "wit-bindgen-rt"
|
|
3217
|
-
version = "0.
|
|
3222
|
+
version = "0.39.0"
|
|
3218
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3219
|
-
checksum = "
|
|
3224
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
3220
3225
|
dependencies = [
|
|
3221
3226
|
"bitflags",
|
|
3222
3227
|
]
|
|
@@ -3238,11 +3243,11 @@ dependencies = [
|
|
|
3238
3243
|
|
|
3239
3244
|
[[package]]
|
|
3240
3245
|
name = "zerocopy"
|
|
3241
|
-
version = "0.8.
|
|
3246
|
+
version = "0.8.24"
|
|
3242
3247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "
|
|
3248
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
3244
3249
|
dependencies = [
|
|
3245
|
-
"zerocopy-derive 0.8.
|
|
3250
|
+
"zerocopy-derive 0.8.24",
|
|
3246
3251
|
]
|
|
3247
3252
|
|
|
3248
3253
|
[[package]]
|
|
@@ -3253,20 +3258,26 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
3253
3258
|
dependencies = [
|
|
3254
3259
|
"proc-macro2",
|
|
3255
3260
|
"quote",
|
|
3256
|
-
"syn
|
|
3261
|
+
"syn",
|
|
3257
3262
|
]
|
|
3258
3263
|
|
|
3259
3264
|
[[package]]
|
|
3260
3265
|
name = "zerocopy-derive"
|
|
3261
|
-
version = "0.8.
|
|
3266
|
+
version = "0.8.24"
|
|
3262
3267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
|
-
checksum = "
|
|
3268
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
3264
3269
|
dependencies = [
|
|
3265
3270
|
"proc-macro2",
|
|
3266
3271
|
"quote",
|
|
3267
|
-
"syn
|
|
3272
|
+
"syn",
|
|
3268
3273
|
]
|
|
3269
3274
|
|
|
3275
|
+
[[package]]
|
|
3276
|
+
name = "zlib-rs"
|
|
3277
|
+
version = "0.4.2"
|
|
3278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
+
checksum = "8b20717f0917c908dc63de2e44e97f1e6b126ca58d0e391cee86d504eb8fbd05"
|
|
3280
|
+
|
|
3270
3281
|
[[package]]
|
|
3271
3282
|
name = "zstd"
|
|
3272
3283
|
version = "0.13.3"
|
|
@@ -3278,18 +3289,18 @@ dependencies = [
|
|
|
3278
3289
|
|
|
3279
3290
|
[[package]]
|
|
3280
3291
|
name = "zstd-safe"
|
|
3281
|
-
version = "7.2.
|
|
3292
|
+
version = "7.2.4"
|
|
3282
3293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
-
checksum = "
|
|
3294
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3284
3295
|
dependencies = [
|
|
3285
3296
|
"zstd-sys",
|
|
3286
3297
|
]
|
|
3287
3298
|
|
|
3288
3299
|
[[package]]
|
|
3289
3300
|
name = "zstd-sys"
|
|
3290
|
-
version = "2.0.
|
|
3301
|
+
version = "2.0.15+zstd.1.5.7"
|
|
3291
3302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3292
|
-
checksum = "
|
|
3303
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
3293
3304
|
dependencies = [
|
|
3294
3305
|
"cc",
|
|
3295
3306
|
"pkg-config",
|