maplib 0.19.13__tar.gz → 0.19.14__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.19.13 → maplib-0.19.14}/Cargo.lock +33 -188
- {maplib-0.19.13 → maplib-0.19.14}/Cargo.toml +6 -6
- {maplib-0.19.13 → maplib-0.19.14}/PKG-INFO +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/file_io/Cargo.toml +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/Cargo.toml +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/model.rs +4 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/pydf_io/Cargo.toml +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/Cargo.toml +1 -4
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/Cargo.toml +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/Cargo.toml +11 -16
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/README.md +8 -4
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/src/algebra.rs +279 -38
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/src/lib.rs +2 -5
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/src/parser.rs +801 -364
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/src/query.rs +56 -21
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/src/term.rs +71 -114
- {maplib-0.19.13 → maplib-0.19.14}/lib/spargebra/src/update.rs +25 -11
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/Cargo.toml +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/Cargo.toml +2 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/errors.rs +2 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/debug.rs +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/join.rs +0 -3
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns.rs +0 -3
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/rewrite/rewrite_pushdown.rs +0 -1
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/storage.rs +238 -63
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/triples_read.rs +36 -6
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/triples_write/pretty_turtle.rs +281 -193
- {maplib-0.19.13 → maplib-0.19.14}/lib/utils/Cargo.toml +1 -1
- {maplib-0.19.13 → maplib-0.19.14}/maplib/__init__.pyi +9 -5
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/Cargo.toml +2 -2
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/__init__.pyi +9 -5
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/src/lib.rs +13 -0
- maplib-0.19.14/py_maplib/tests/test_jsonld.py +25 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_pretty_turtle.py +43 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_read_write.py +1 -0
- maplib-0.19.14/py_maplib/tests/testdata/jsonlds/csvw.jsonld +1554 -0
- maplib-0.19.14/py_maplib/tests/testdata/jsonlds/grit_bins.json +28 -0
- maplib-0.19.14/py_maplib/tests/testdata/jsonlds/test.jsonld +112 -0
- maplib-0.19.14/py_maplib/tests/testdata/pretty_turtle_write_multi_provided_expected.csv +25 -0
- maplib-0.19.13/lib/spargebra/LICENSE +0 -201
- maplib-0.19.13/lib/spargebra/src/query_context.rs +0 -292
- maplib-0.19.13/lib/spargebra/src/remove_sugar.rs +0 -997
- maplib-0.19.13/lib/spargebra/src/treehouse.rs +0 -171
- {maplib-0.19.13 → maplib-0.19.14}/LICENSE +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/README.md +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/cimxml_export/Cargo.toml +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/cimxml_export/src/export.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/cimxml_export/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/cimxml_import/Cargo.toml +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/cimxml_import/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/datalog/Cargo.toml +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/datalog/src/ast.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/datalog/src/inference.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/datalog/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/datalog/src/parser.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/datalog/src/python.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/file_io/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/fts/Cargo.toml +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/fts/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/errors.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/model/constant_terms.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/model/default.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/model/errors.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/model/expansion/validation.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/maplib/src/model/expansion.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/pydf_io/LICENSE +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/pydf_io/README.md +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/pydf_io/licensing/POLARS_LICENSE +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/pydf_io/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/pydf_io/src/to_python.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/pydf_io/src/to_rust.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/LICENSE +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/README.md +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/aggregates.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/cats.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/constants.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/errors.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/exists_helper.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/expressions/comparisons.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/expressions/functions.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/expressions/operations.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/expressions.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/find_query_variables.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/cats.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/group.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/join.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/order.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/union.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/graph_patterns/values.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/graph_patterns.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/pushdowns.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/query_processing/src/type_constraints.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/report_mapping/Cargo.toml +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/report_mapping/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/LICENSE +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/README.md +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/base_rdf_type.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/decode.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/encode.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/globalize.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/image.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/maps/in_memory.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/maps/on_disk.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/maps.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats/re_encode.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/cats.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/constants.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/dataset.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/debug.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/errors.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/formatting.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/literals.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/multitype.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/polars_to_rdf.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/prefixes.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/python.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/query_context.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/rdf_state.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/rdf_to_polars.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/rdf_type.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/solution_mapping.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/representation/src/subtypes.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/shacl/Cargo.toml +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/shacl/src/errors.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/shacl/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/shacl/src/storage.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/ast.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/compatible.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/dataset/errors.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/dataset.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/document.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/parsing.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/python/owl.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/python/rdf.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/python/rdfs.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/python/xsd.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/python.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/templates/src/subtypes_ext.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/cats.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/dblf.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/io_funcs.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/map_json.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/native_parquet_write.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/query_solutions.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/rdfs_inferencing.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/delete.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/errors.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/insert.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_aggregate.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_expressions.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/distinct.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/extend.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/filter.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/graph.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/group.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/left_join.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/minus.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/order_by.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/path.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/project.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/pvalues.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/triple.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/triples_ordering.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/union.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_graph_patterns/values.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/lazy_order.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/rewrite/rewrite_cse.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql/rewrite.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/sparql.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/storage/deduplication.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/storage/so_index.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/triples_write/fast_ntriples.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/triples_write/serializers.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/triplestore/src/triples_write.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/utils/src/lib.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/lib/utils/src/polars.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/maplib/__init__.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/maplib/adding_triples.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/maplib/py.typed +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/maplib/template_generator/__init__.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/maplib/template_generator/generate.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/maplib/template_generator/ordering.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/LICENSE +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/README.md +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/.gitignore +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/__init__.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/adding_triples.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/py.typed +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/template_generator/__init__.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/template_generator/generate.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/maplib/template_generator/ordering.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/src/error.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/src/shacl.rs +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/.gitignore +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/__init__.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/out.ttl +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/requirements.txt +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_basics.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_blank_nodes_multi.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_data_validation.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_exceptions.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_integration.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_json.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_multi_expressions.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_named_graphs.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_pizza_example.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_programmatic_pizza_example.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_rdf_parser.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_stottr.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/test_validate_iris.py +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/expected_easy_case.ttl +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_constant_object_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_constant_subject_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/iterated_property_path_query_with_bug.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/jsons/1.json +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/jsons/2.json +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/jsons/3.json +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/larger_ordered_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/larger_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_concat.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_join_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_join_query_two_vars.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_leftjoin_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_query_sorting.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_query_native_df.parquet +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_sort_desc1_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_datatype_union_sort_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/multi_many_comp.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/property_path_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/rdf_parser/date_panic.nt +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/read_lists.ttl +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/read_ntriples.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/read_ntriples.nt +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/read_ntriples2.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/simple_construct_query_nothing.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/simple_construct_query_something.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/simple_insert_query_nothing.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/simple_insert_query_something.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/simple_property_path_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/simple_query.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/stringfuncs.csv +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/templates.ttl +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/py_maplib/tests/testdata/write_turtle_newlines_bug.nt +0 -0
- {maplib-0.19.13 → maplib-0.19.14}/pyproject.toml +0 -0
|
@@ -315,9 +315,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
315
315
|
|
|
316
316
|
[[package]]
|
|
317
317
|
name = "bytes"
|
|
318
|
-
version = "1.
|
|
318
|
+
version = "1.11.1"
|
|
319
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
320
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
321
321
|
dependencies = [
|
|
322
322
|
"serde",
|
|
323
323
|
]
|
|
@@ -746,24 +746,6 @@ dependencies = [
|
|
|
746
746
|
"thiserror",
|
|
747
747
|
]
|
|
748
748
|
|
|
749
|
-
[[package]]
|
|
750
|
-
name = "fundu"
|
|
751
|
-
version = "2.0.1"
|
|
752
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
-
checksum = "2ce12752fc64f35be3d53e0a57017cd30970f0cffd73f62c791837d8845badbd"
|
|
754
|
-
dependencies = [
|
|
755
|
-
"fundu-core",
|
|
756
|
-
]
|
|
757
|
-
|
|
758
|
-
[[package]]
|
|
759
|
-
name = "fundu-core"
|
|
760
|
-
version = "0.3.1"
|
|
761
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
-
checksum = "e463452e2d8b7600d38dcea1ed819773a57f0d710691bfc78db3961bd3f4c3ba"
|
|
763
|
-
dependencies = [
|
|
764
|
-
"chrono",
|
|
765
|
-
]
|
|
766
|
-
|
|
767
749
|
[[package]]
|
|
768
750
|
name = "futures"
|
|
769
751
|
version = "0.3.31"
|
|
@@ -835,12 +817,6 @@ version = "0.3.31"
|
|
|
835
817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
818
|
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
837
819
|
|
|
838
|
-
[[package]]
|
|
839
|
-
name = "futures-timer"
|
|
840
|
-
version = "3.0.3"
|
|
841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
-
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
843
|
-
|
|
844
820
|
[[package]]
|
|
845
821
|
name = "futures-util"
|
|
846
822
|
version = "0.3.31"
|
|
@@ -1621,7 +1597,7 @@ dependencies = [
|
|
|
1621
1597
|
"parking_lot",
|
|
1622
1598
|
"percent-encoding",
|
|
1623
1599
|
"quick-xml 0.38.3",
|
|
1624
|
-
"rand
|
|
1600
|
+
"rand",
|
|
1625
1601
|
"reqwest",
|
|
1626
1602
|
"ring",
|
|
1627
1603
|
"serde",
|
|
@@ -1665,9 +1641,9 @@ checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
|
|
|
1665
1641
|
|
|
1666
1642
|
[[package]]
|
|
1667
1643
|
name = "oxjsonld"
|
|
1668
|
-
version = "0.
|
|
1644
|
+
version = "0.2.2"
|
|
1669
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1646
|
+
checksum = "b1a98ed4bc15e5b34e62de88c514cd91bcecd8003bc8f15e8036edccb2f3ed85"
|
|
1671
1647
|
dependencies = [
|
|
1672
1648
|
"json-event-parser",
|
|
1673
1649
|
"oxiri",
|
|
@@ -1677,22 +1653,22 @@ dependencies = [
|
|
|
1677
1653
|
|
|
1678
1654
|
[[package]]
|
|
1679
1655
|
name = "oxrdf"
|
|
1680
|
-
version = "0.2
|
|
1656
|
+
version = "0.3.2"
|
|
1681
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
-
checksum = "
|
|
1658
|
+
checksum = "647ec1bce9b009b5ef00d678587ff263d53ac793cfa0652d0f1e85bc9f9699d3"
|
|
1683
1659
|
dependencies = [
|
|
1684
1660
|
"oxilangtag",
|
|
1685
1661
|
"oxiri",
|
|
1686
1662
|
"oxsdatatypes",
|
|
1687
|
-
"rand
|
|
1663
|
+
"rand",
|
|
1688
1664
|
"thiserror",
|
|
1689
1665
|
]
|
|
1690
1666
|
|
|
1691
1667
|
[[package]]
|
|
1692
1668
|
name = "oxrdfio"
|
|
1693
|
-
version = "0.
|
|
1669
|
+
version = "0.2.2"
|
|
1694
1670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
-
checksum = "
|
|
1671
|
+
checksum = "b7d7fe02334223d57b3ade38c06532e3d63a2d9e4995f8ff7d5a8cfe0cbb7720"
|
|
1696
1672
|
dependencies = [
|
|
1697
1673
|
"oxjsonld",
|
|
1698
1674
|
"oxrdf",
|
|
@@ -1703,9 +1679,9 @@ dependencies = [
|
|
|
1703
1679
|
|
|
1704
1680
|
[[package]]
|
|
1705
1681
|
name = "oxrdfxml"
|
|
1706
|
-
version = "0.
|
|
1682
|
+
version = "0.2.2"
|
|
1707
1683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
-
checksum = "
|
|
1684
|
+
checksum = "c6b0befe85eeba41a2dc4507742486d287a9fca366add4626778697189c5e648"
|
|
1709
1685
|
dependencies = [
|
|
1710
1686
|
"oxilangtag",
|
|
1711
1687
|
"oxiri",
|
|
@@ -1725,9 +1701,9 @@ dependencies = [
|
|
|
1725
1701
|
|
|
1726
1702
|
[[package]]
|
|
1727
1703
|
name = "oxttl"
|
|
1728
|
-
version = "0.
|
|
1704
|
+
version = "0.2.2"
|
|
1729
1705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
-
checksum = "
|
|
1706
|
+
checksum = "ee1a35ad74d990aa6be2f3f62cd895fb4e91d64167cb81885ae304628f970f8d"
|
|
1731
1707
|
dependencies = [
|
|
1732
1708
|
"memchr",
|
|
1733
1709
|
"oxilangtag",
|
|
@@ -1933,7 +1909,7 @@ dependencies = [
|
|
|
1933
1909
|
"polars-arrow",
|
|
1934
1910
|
"polars-error",
|
|
1935
1911
|
"polars-utils",
|
|
1936
|
-
"rand
|
|
1912
|
+
"rand",
|
|
1937
1913
|
"ryu",
|
|
1938
1914
|
"serde",
|
|
1939
1915
|
"strength_reduce",
|
|
@@ -1965,7 +1941,7 @@ dependencies = [
|
|
|
1965
1941
|
"polars-row",
|
|
1966
1942
|
"polars-schema",
|
|
1967
1943
|
"polars-utils",
|
|
1968
|
-
"rand
|
|
1944
|
+
"rand",
|
|
1969
1945
|
"rand_distr",
|
|
1970
1946
|
"rayon",
|
|
1971
1947
|
"regex",
|
|
@@ -2024,7 +2000,7 @@ dependencies = [
|
|
|
2024
2000
|
"polars-row",
|
|
2025
2001
|
"polars-time",
|
|
2026
2002
|
"polars-utils",
|
|
2027
|
-
"rand
|
|
2003
|
+
"rand",
|
|
2028
2004
|
"rayon",
|
|
2029
2005
|
"recursive",
|
|
2030
2006
|
"regex",
|
|
@@ -2167,7 +2143,7 @@ dependencies = [
|
|
|
2167
2143
|
"polars-error",
|
|
2168
2144
|
"polars-schema",
|
|
2169
2145
|
"polars-utils",
|
|
2170
|
-
"rand
|
|
2146
|
+
"rand",
|
|
2171
2147
|
"rayon",
|
|
2172
2148
|
"regex",
|
|
2173
2149
|
"regex-syntax",
|
|
@@ -2293,7 +2269,7 @@ dependencies = [
|
|
|
2293
2269
|
"polars-plan",
|
|
2294
2270
|
"polars-time",
|
|
2295
2271
|
"polars-utils",
|
|
2296
|
-
"rand
|
|
2272
|
+
"rand",
|
|
2297
2273
|
"regex",
|
|
2298
2274
|
"serde",
|
|
2299
2275
|
"sqlparser",
|
|
@@ -2331,7 +2307,7 @@ dependencies = [
|
|
|
2331
2307
|
"polars-plan",
|
|
2332
2308
|
"polars-time",
|
|
2333
2309
|
"polars-utils",
|
|
2334
|
-
"rand
|
|
2310
|
+
"rand",
|
|
2335
2311
|
"rayon",
|
|
2336
2312
|
"recursive",
|
|
2337
2313
|
"slotmap",
|
|
@@ -2381,7 +2357,7 @@ dependencies = [
|
|
|
2381
2357
|
"memmap2",
|
|
2382
2358
|
"num-traits",
|
|
2383
2359
|
"polars-error",
|
|
2384
|
-
"rand
|
|
2360
|
+
"rand",
|
|
2385
2361
|
"raw-cpuid",
|
|
2386
2362
|
"rayon",
|
|
2387
2363
|
"regex",
|
|
@@ -2428,15 +2404,6 @@ dependencies = [
|
|
|
2428
2404
|
"zerocopy",
|
|
2429
2405
|
]
|
|
2430
2406
|
|
|
2431
|
-
[[package]]
|
|
2432
|
-
name = "proc-macro-crate"
|
|
2433
|
-
version = "3.4.0"
|
|
2434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
|
-
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
2436
|
-
dependencies = [
|
|
2437
|
-
"toml_edit",
|
|
2438
|
-
]
|
|
2439
|
-
|
|
2440
2407
|
[[package]]
|
|
2441
2408
|
name = "proc-macro2"
|
|
2442
2409
|
version = "1.0.101"
|
|
@@ -2457,7 +2424,7 @@ dependencies = [
|
|
|
2457
2424
|
|
|
2458
2425
|
[[package]]
|
|
2459
2426
|
name = "py_maplib"
|
|
2460
|
-
version = "0.19.
|
|
2427
|
+
version = "0.19.14"
|
|
2461
2428
|
dependencies = [
|
|
2462
2429
|
"chrono",
|
|
2463
2430
|
"cimxml_export",
|
|
@@ -2564,7 +2531,6 @@ dependencies = [
|
|
|
2564
2531
|
"polars",
|
|
2565
2532
|
"rayon",
|
|
2566
2533
|
"representation",
|
|
2567
|
-
"rstest",
|
|
2568
2534
|
"spargebra",
|
|
2569
2535
|
"thiserror",
|
|
2570
2536
|
"tracing",
|
|
@@ -2619,7 +2585,7 @@ dependencies = [
|
|
|
2619
2585
|
"bytes",
|
|
2620
2586
|
"getrandom 0.3.3",
|
|
2621
2587
|
"lru-slab",
|
|
2622
|
-
"rand
|
|
2588
|
+
"rand",
|
|
2623
2589
|
"ring",
|
|
2624
2590
|
"rustc-hash",
|
|
2625
2591
|
"rustls",
|
|
@@ -2660,35 +2626,14 @@ version = "5.3.0"
|
|
|
2660
2626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2661
2627
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2662
2628
|
|
|
2663
|
-
[[package]]
|
|
2664
|
-
name = "rand"
|
|
2665
|
-
version = "0.8.5"
|
|
2666
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2668
|
-
dependencies = [
|
|
2669
|
-
"libc",
|
|
2670
|
-
"rand_chacha 0.3.1",
|
|
2671
|
-
"rand_core 0.6.4",
|
|
2672
|
-
]
|
|
2673
|
-
|
|
2674
2629
|
[[package]]
|
|
2675
2630
|
name = "rand"
|
|
2676
2631
|
version = "0.9.2"
|
|
2677
2632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
2633
|
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2679
2634
|
dependencies = [
|
|
2680
|
-
"rand_chacha
|
|
2681
|
-
"rand_core
|
|
2682
|
-
]
|
|
2683
|
-
|
|
2684
|
-
[[package]]
|
|
2685
|
-
name = "rand_chacha"
|
|
2686
|
-
version = "0.3.1"
|
|
2687
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2689
|
-
dependencies = [
|
|
2690
|
-
"ppv-lite86",
|
|
2691
|
-
"rand_core 0.6.4",
|
|
2635
|
+
"rand_chacha",
|
|
2636
|
+
"rand_core",
|
|
2692
2637
|
]
|
|
2693
2638
|
|
|
2694
2639
|
[[package]]
|
|
@@ -2698,16 +2643,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2698
2643
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2699
2644
|
dependencies = [
|
|
2700
2645
|
"ppv-lite86",
|
|
2701
|
-
"rand_core
|
|
2702
|
-
]
|
|
2703
|
-
|
|
2704
|
-
[[package]]
|
|
2705
|
-
name = "rand_core"
|
|
2706
|
-
version = "0.6.4"
|
|
2707
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2709
|
-
dependencies = [
|
|
2710
|
-
"getrandom 0.2.16",
|
|
2646
|
+
"rand_core",
|
|
2711
2647
|
]
|
|
2712
2648
|
|
|
2713
2649
|
[[package]]
|
|
@@ -2726,7 +2662,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2726
2662
|
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
|
2727
2663
|
dependencies = [
|
|
2728
2664
|
"num-traits",
|
|
2729
|
-
"rand
|
|
2665
|
+
"rand",
|
|
2730
2666
|
]
|
|
2731
2667
|
|
|
2732
2668
|
[[package]]
|
|
@@ -2842,12 +2778,6 @@ version = "0.8.7"
|
|
|
2842
2778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
2779
|
checksum = "c3160422bbd54dd5ecfdca71e5fd59b7b8fe2b1697ab2baf64f6d05dcc66d298"
|
|
2844
2780
|
|
|
2845
|
-
[[package]]
|
|
2846
|
-
name = "relative-path"
|
|
2847
|
-
version = "1.9.3"
|
|
2848
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
-
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
2850
|
-
|
|
2851
2781
|
[[package]]
|
|
2852
2782
|
name = "report_mapping"
|
|
2853
2783
|
version = "0.1.0"
|
|
@@ -2954,36 +2884,6 @@ dependencies = [
|
|
|
2954
2884
|
"serde",
|
|
2955
2885
|
]
|
|
2956
2886
|
|
|
2957
|
-
[[package]]
|
|
2958
|
-
name = "rstest"
|
|
2959
|
-
version = "0.25.0"
|
|
2960
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
-
checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
|
|
2962
|
-
dependencies = [
|
|
2963
|
-
"futures-timer",
|
|
2964
|
-
"futures-util",
|
|
2965
|
-
"rstest_macros",
|
|
2966
|
-
"rustc_version",
|
|
2967
|
-
]
|
|
2968
|
-
|
|
2969
|
-
[[package]]
|
|
2970
|
-
name = "rstest_macros"
|
|
2971
|
-
version = "0.25.0"
|
|
2972
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
-
checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
|
|
2974
|
-
dependencies = [
|
|
2975
|
-
"cfg-if",
|
|
2976
|
-
"glob",
|
|
2977
|
-
"proc-macro-crate",
|
|
2978
|
-
"proc-macro2",
|
|
2979
|
-
"quote",
|
|
2980
|
-
"regex",
|
|
2981
|
-
"relative-path",
|
|
2982
|
-
"rustc_version",
|
|
2983
|
-
"syn",
|
|
2984
|
-
"unicode-ident",
|
|
2985
|
-
]
|
|
2986
|
-
|
|
2987
2887
|
[[package]]
|
|
2988
2888
|
name = "rustc-demangle"
|
|
2989
2889
|
version = "0.1.26"
|
|
@@ -2996,15 +2896,6 @@ version = "2.1.1"
|
|
|
2996
2896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
2897
|
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2998
2898
|
|
|
2999
|
-
[[package]]
|
|
3000
|
-
name = "rustc_version"
|
|
3001
|
-
version = "0.4.1"
|
|
3002
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3004
|
-
dependencies = [
|
|
3005
|
-
"semver",
|
|
3006
|
-
]
|
|
3007
|
-
|
|
3008
2899
|
[[package]]
|
|
3009
2900
|
name = "rustix"
|
|
3010
2901
|
version = "1.1.2"
|
|
@@ -3124,12 +3015,6 @@ dependencies = [
|
|
|
3124
3015
|
"libc",
|
|
3125
3016
|
]
|
|
3126
3017
|
|
|
3127
|
-
[[package]]
|
|
3128
|
-
name = "semver"
|
|
3129
|
-
version = "1.0.27"
|
|
3130
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
-
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
3132
|
-
|
|
3133
3018
|
[[package]]
|
|
3134
3019
|
name = "serde"
|
|
3135
3020
|
version = "1.0.228"
|
|
@@ -3326,9 +3211,9 @@ dependencies = [
|
|
|
3326
3211
|
|
|
3327
3212
|
[[package]]
|
|
3328
3213
|
name = "sparesults"
|
|
3329
|
-
version = "0.2
|
|
3214
|
+
version = "0.3.2"
|
|
3330
3215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
|
-
checksum = "
|
|
3216
|
+
checksum = "c093f91918540c91b4dd447bf1179ff66b4bd5c5816138a00057e0d156969dd0"
|
|
3332
3217
|
dependencies = [
|
|
3333
3218
|
"json-event-parser",
|
|
3334
3219
|
"memchr",
|
|
@@ -3339,15 +3224,13 @@ dependencies = [
|
|
|
3339
3224
|
|
|
3340
3225
|
[[package]]
|
|
3341
3226
|
name = "spargebra"
|
|
3342
|
-
version = "0.
|
|
3227
|
+
version = "0.4.4"
|
|
3343
3228
|
dependencies = [
|
|
3344
|
-
"chrono",
|
|
3345
|
-
"fundu",
|
|
3346
3229
|
"oxilangtag",
|
|
3347
3230
|
"oxiri",
|
|
3348
3231
|
"oxrdf",
|
|
3349
3232
|
"peg",
|
|
3350
|
-
"rand
|
|
3233
|
+
"rand",
|
|
3351
3234
|
"thiserror",
|
|
3352
3235
|
]
|
|
3353
3236
|
|
|
@@ -3618,36 +3501,6 @@ dependencies = [
|
|
|
3618
3501
|
"tokio",
|
|
3619
3502
|
]
|
|
3620
3503
|
|
|
3621
|
-
[[package]]
|
|
3622
|
-
name = "toml_datetime"
|
|
3623
|
-
version = "0.7.3"
|
|
3624
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
-
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
3626
|
-
dependencies = [
|
|
3627
|
-
"serde_core",
|
|
3628
|
-
]
|
|
3629
|
-
|
|
3630
|
-
[[package]]
|
|
3631
|
-
name = "toml_edit"
|
|
3632
|
-
version = "0.23.7"
|
|
3633
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3634
|
-
checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
|
|
3635
|
-
dependencies = [
|
|
3636
|
-
"indexmap",
|
|
3637
|
-
"toml_datetime",
|
|
3638
|
-
"toml_parser",
|
|
3639
|
-
"winnow",
|
|
3640
|
-
]
|
|
3641
|
-
|
|
3642
|
-
[[package]]
|
|
3643
|
-
name = "toml_parser"
|
|
3644
|
-
version = "1.0.4"
|
|
3645
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3646
|
-
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
3647
|
-
dependencies = [
|
|
3648
|
-
"winnow",
|
|
3649
|
-
]
|
|
3650
|
-
|
|
3651
3504
|
[[package]]
|
|
3652
3505
|
name = "tower"
|
|
3653
3506
|
version = "0.5.2"
|
|
@@ -3765,6 +3618,7 @@ dependencies = [
|
|
|
3765
3618
|
"fts",
|
|
3766
3619
|
"itoa",
|
|
3767
3620
|
"memmap2",
|
|
3621
|
+
"oxjsonld",
|
|
3768
3622
|
"oxrdf",
|
|
3769
3623
|
"oxrdfio",
|
|
3770
3624
|
"oxttl",
|
|
@@ -3888,7 +3742,7 @@ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
|
3888
3742
|
dependencies = [
|
|
3889
3743
|
"getrandom 0.3.3",
|
|
3890
3744
|
"js-sys",
|
|
3891
|
-
"rand
|
|
3745
|
+
"rand",
|
|
3892
3746
|
"serde",
|
|
3893
3747
|
"wasm-bindgen",
|
|
3894
3748
|
]
|
|
@@ -4326,15 +4180,6 @@ version = "0.53.1"
|
|
|
4326
4180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4327
4181
|
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4328
4182
|
|
|
4329
|
-
[[package]]
|
|
4330
|
-
name = "winnow"
|
|
4331
|
-
version = "0.7.13"
|
|
4332
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4333
|
-
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
4334
|
-
dependencies = [
|
|
4335
|
-
"memchr",
|
|
4336
|
-
]
|
|
4337
|
-
|
|
4338
4183
|
[[package]]
|
|
4339
4184
|
name = "wit-bindgen"
|
|
4340
4185
|
version = "0.46.0"
|
|
@@ -4,6 +4,7 @@ members = ["py_maplib"]
|
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
6
|
rust-version = "1.88.0"
|
|
7
|
+
edition = "2021"
|
|
7
8
|
|
|
8
9
|
[workspace.dependencies]
|
|
9
10
|
pyo3 = {version = "0.25", features = ["py-clone"] }
|
|
@@ -12,11 +13,12 @@ polars = { version = "0.52.0", features = ["simd", "nightly", "new_streaming", "
|
|
|
12
13
|
polars-core = { version = "0.52.0" }
|
|
13
14
|
rayon = "1.10.0"
|
|
14
15
|
regex = "1.11.1"
|
|
15
|
-
oxrdf = { version = "0.2
|
|
16
|
-
oxrdfio = { version = "0.
|
|
17
|
-
oxttl = { version="0.
|
|
16
|
+
oxrdf = { version = "0.3.2" }
|
|
17
|
+
oxrdfio = { version = "0.2.2" }
|
|
18
|
+
oxttl = { version= "0.2.2" }
|
|
19
|
+
oxjsonld = {version = "0.2.2"}
|
|
18
20
|
oxiri = "0.2.11"
|
|
19
|
-
sparesults = "0.2
|
|
21
|
+
sparesults = "0.3.2"
|
|
20
22
|
oxsdatatypes = "0.2.2"
|
|
21
23
|
chrono = "0.4.41"
|
|
22
24
|
chrono-tz = "0.10.3"
|
|
@@ -43,8 +45,6 @@ tracing-log = "0.2"
|
|
|
43
45
|
itoa = "1.0.15"
|
|
44
46
|
ryu = "1.0.20"
|
|
45
47
|
#dev-dependencies
|
|
46
|
-
rstest = "0.25.0"
|
|
47
|
-
serial_test = "3.2.0"
|
|
48
48
|
nohash-hasher = "0.2.0"
|
|
49
49
|
|
|
50
50
|
[patch.crates-io]
|
|
@@ -215,6 +215,7 @@ impl Model {
|
|
|
215
215
|
graph: &NamedGraph,
|
|
216
216
|
replace_graph: bool,
|
|
217
217
|
triples_batch_size: Option<usize>,
|
|
218
|
+
known_contexts: HashMap<String, String>,
|
|
218
219
|
) -> Result<(), MaplibError> {
|
|
219
220
|
if replace_graph {
|
|
220
221
|
self.truncate_graph(&graph)
|
|
@@ -230,6 +231,7 @@ impl Model {
|
|
|
230
231
|
graph,
|
|
231
232
|
&self.prefixes,
|
|
232
233
|
triples_batch_size,
|
|
234
|
+
known_contexts,
|
|
233
235
|
)
|
|
234
236
|
.map_err(MaplibError::TriplestoreError)
|
|
235
237
|
}
|
|
@@ -259,6 +261,7 @@ impl Model {
|
|
|
259
261
|
graph: &NamedGraph,
|
|
260
262
|
replace_graph: bool,
|
|
261
263
|
triples_batch_size: Option<usize>,
|
|
264
|
+
known_contexts: HashMap<String, String>,
|
|
262
265
|
) -> Result<(), MaplibError> {
|
|
263
266
|
if replace_graph {
|
|
264
267
|
self.truncate_graph(&graph)
|
|
@@ -274,6 +277,7 @@ impl Model {
|
|
|
274
277
|
graph,
|
|
275
278
|
&self.prefixes,
|
|
276
279
|
triples_batch_size,
|
|
280
|
+
known_contexts,
|
|
277
281
|
)
|
|
278
282
|
.map_err(MaplibError::TriplestoreError)
|
|
279
283
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "query_processing"
|
|
3
3
|
version = "0.3.12"
|
|
4
|
-
edition =
|
|
4
|
+
edition.workspace = true
|
|
5
5
|
rust-version.workspace = true
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
|
|
@@ -39,6 +39,3 @@ tracing.workspace = true
|
|
|
39
39
|
uuid.workspace = true
|
|
40
40
|
thiserror.workspace = true
|
|
41
41
|
rayon.workspace = true
|
|
42
|
-
|
|
43
|
-
[dev-dependencies]
|
|
44
|
-
rstest.workspace = true
|
|
@@ -1,32 +1,27 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "spargebra"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.4"
|
|
4
4
|
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
|
|
5
5
|
license = "MIT OR Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
keywords = ["SPARQL"]
|
|
8
8
|
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra"
|
|
9
|
-
homepage = "https://oxigraph.org/"
|
|
10
9
|
documentation = "https://docs.rs/spargebra"
|
|
11
|
-
description = ""
|
|
12
|
-
|
|
13
|
-
"""
|
|
14
|
-
edition = "2021"
|
|
10
|
+
description = "SPARQL parser"
|
|
11
|
+
edition.workspace = true
|
|
15
12
|
rust-version.workspace = true
|
|
16
13
|
|
|
17
14
|
[features]
|
|
18
15
|
default = []
|
|
19
|
-
|
|
16
|
+
sparql-12 = ["oxrdf/rdf-12"]
|
|
17
|
+
sep-0002 = []
|
|
18
|
+
sep-0006 = []
|
|
19
|
+
standard-unicode-escaping = [] # Allow \uXXXX anywhere in the query/update and not only in IRIs and literals, following the SPARQL specification
|
|
20
20
|
|
|
21
21
|
[dependencies]
|
|
22
|
-
rand.workspace = true
|
|
23
|
-
peg.workspace = true
|
|
24
|
-
oxrdf.workspace = true
|
|
25
|
-
oxiri.workspace = true
|
|
26
22
|
oxilangtag.workspace = true
|
|
27
|
-
|
|
28
|
-
|
|
23
|
+
oxiri.workspace = true
|
|
24
|
+
oxrdf.workspace = true
|
|
25
|
+
peg.workspace = true
|
|
26
|
+
rand.workspace = true
|
|
29
27
|
thiserror.workspace = true
|
|
30
|
-
|
|
31
|
-
[package.metadata.docs.rs]
|
|
32
|
-
all-features = true
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
This repository is forked from https://github.com/oxigraph/oxigraph in order to support some custom constructions.
|
|
2
2
|
We recommend that you use the original library, and to support the original creator Thomas Tanon.
|
|
3
|
+
License can be found in /licensing
|
|
3
4
|
|
|
4
5
|
Spargebra
|
|
5
6
|
=========
|
|
@@ -8,7 +9,7 @@ Spargebra
|
|
|
8
9
|
[](https://docs.rs/spargebra)
|
|
9
10
|
[](https://crates.io/crates/spargebra)
|
|
10
11
|
[](https://github.com/oxigraph/oxigraph/actions)
|
|
11
|
-
[](https://gitter.im/oxigraph/community
|
|
12
|
+
[](https://gitter.im/oxigraph/community)
|
|
12
13
|
|
|
13
14
|
Spargebra is a [SPARQL](https://www.w3.org/TR/sparql11-overview/) parser.
|
|
14
15
|
|
|
@@ -18,17 +19,20 @@ The emitted tree is based on [SPARQL 1.1 Query Algebra](https://www.w3.org/TR/sp
|
|
|
18
19
|
|
|
19
20
|
The API entry point for SPARQL queries is the [`Query`] struct and the API entry point for SPARQL updates is the [`Update`] struct.
|
|
20
21
|
|
|
21
|
-
Support for [SPARQL
|
|
22
|
+
Support for [SPARQL 1.2](https://www.w3.org/TR/sparql12-query/) is also available behind the `sparql-12` feature.
|
|
22
23
|
|
|
23
24
|
This crate is intended to be a building piece for SPARQL implementations in Rust like [Oxigraph](https://oxigraph.org).
|
|
24
25
|
|
|
26
|
+
Note that, opposite to the SPARQL specification, the parser does not allow `\uXXXX` escape sequences anywhere in the SPARQL syntax but only in IRIs and string literals, just like in Turtle.
|
|
27
|
+
To use the standard SPARQL behavior (i.e. allow `\uXXXX` escape sequences in all strings), enable the `standard-unicode-escaping` feature.
|
|
28
|
+
|
|
25
29
|
Usage example:
|
|
26
30
|
|
|
27
31
|
```rust
|
|
28
|
-
use spargebra::
|
|
32
|
+
use spargebra::SparqlParser;
|
|
29
33
|
|
|
30
34
|
let query_str = "SELECT ?s ?p ?o WHERE { ?s ?p ?o . }";
|
|
31
|
-
let query =
|
|
35
|
+
let query = SparqlParser::new().parse_query(query_str).unwrap();
|
|
32
36
|
assert_eq!(query.to_string(), query_str);
|
|
33
37
|
```
|
|
34
38
|
|