[package]
edition = "2021"
name = "powdb-query"
version = "0.22.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PowQL lexer, parser, planner, and executor — compiled query engine for PowDB"
homepage = "https://zvn-dev.github.io/powdb/"
documentation = "https://docs.rs/powdb-query"
readme = "README.md"
keywords = [
"database",
"powdb",
"powql",
"query-engine",
"parser",
]
categories = [
"database",
"database-implementations",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/ZVN-DEV/powdb"
[features]
testing = []
[lib]
name = "powdb_query"
path = "src/lib.rs"
[[test]]
name = "access_path_equivalence"
path = "tests/access_path_equivalence.rs"
[[test]]
name = "aggregate_modes"
path = "tests/aggregate_modes.rs"
[[test]]
name = "autoincrement"
path = "tests/autoincrement.rs"
[[test]]
name = "column_defaults"
path = "tests/column_defaults.rs"
[[test]]
name = "conjunction_index"
path = "tests/conjunction_index.rs"
[[test]]
name = "correctness_regressions"
path = "tests/correctness_regressions.rs"
[[test]]
name = "cross_type_arithmetic_edges"
path = "tests/cross_type_arithmetic_edges.rs"
[[test]]
name = "cross_type_index_parity"
path = "tests/cross_type_index_parity.rs"
[[test]]
name = "cross_type_matrix"
path = "tests/cross_type_matrix.rs"
[[test]]
name = "data_dir_lock"
path = "tests/data_dir_lock.rs"
[[test]]
name = "durability"
path = "tests/durability.rs"
[[test]]
name = "entity_links"
path = "tests/entity_links.rs"
[[test]]
name = "entity_links_persistence"
path = "tests/entity_links_persistence.rs"
[[test]]
name = "error_display"
path = "tests/error_display.rs"
[[test]]
name = "expr_chain_depth"
path = "tests/expr_chain_depth.rs"
[[test]]
name = "expression_index_runtime"
path = "tests/expression_index_runtime.rs"
[[test]]
name = "group_commit"
path = "tests/group_commit.rs"
[[test]]
name = "join_scope_and_arithmetic"
path = "tests/join_scope_and_arithmetic.rs"
[[test]]
name = "json_path_battery"
path = "tests/json_path_battery.rs"
[[test]]
name = "json_type"
path = "tests/json_type.rs"
[[test]]
name = "link_cardinality_parity"
path = "tests/link_cardinality_parity.rs"
[[test]]
name = "link_introspection"
path = "tests/link_introspection.rs"
[[test]]
name = "link_projection_guards"
path = "tests/link_projection_guards.rs"
[[test]]
name = "matview_backing_types"
path = "tests/matview_backing_types.rs"
[[test]]
name = "matview_source_roundtrip"
path = "tests/matview_source_roundtrip.rs"
[[test]]
name = "multi_row_insert"
path = "tests/multi_row_insert.rs"
[[test]]
name = "nested_results"
path = "tests/nested_results.rs"
[[test]]
name = "nested_selectivity"
path = "tests/nested_selectivity.rs"
[[test]]
name = "not_precedence"
path = "tests/not_precedence.rs"
[[test]]
name = "nul_index_correctness"
path = "tests/nul_index_correctness.rs"
[[test]]
name = "null_semantics"
path = "tests/null_semantics.rs"
[[test]]
name = "overflow_mutation_regressions"
path = "tests/overflow_mutation_regressions.rs"
[[test]]
name = "oversized_rows"
path = "tests/oversized_rows.rs"
[[test]]
name = "parser_edge_cases"
path = "tests/parser_edge_cases.rs"
[[test]]
name = "planner_range_bounds"
path = "tests/planner_range_bounds.rs"
[[test]]
name = "powql_aliased_refs"
path = "tests/powql_aliased_refs.rs"
[[test]]
name = "proptest_frontend_equivalence"
path = "tests/proptest_frontend_equivalence.rs"
[[test]]
name = "safety_limits"
path = "tests/safety_limits.rs"
[[test]]
name = "scalar_link_selectivity"
path = "tests/scalar_link_selectivity.rs"
[[test]]
name = "sql_frontend"
path = "tests/sql_frontend.rs"
[[test]]
name = "unknown_column_errors"
path = "tests/unknown_column_errors.rs"
[[test]]
name = "uuid_bytes"
path = "tests/uuid_bytes.rs"
[[test]]
name = "wal_recovery_executor"
path = "tests/wal_recovery_executor.rs"
[dependencies.powdb-storage]
version = "0.22.0"
[dependencies.rustc-hash]
version = "2"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.all]
level = "deny"
priority = -1