[package]
edition = "2024"
name = "alopex-sql"
version = "0.6.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL parser components for the Alopex DB dialect"
readme = "README.md"
keywords = [
"database",
"sql",
"parser",
]
categories = [
"database-implementations",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/alopex-db/alopex"
resolver = "2"
[features]
async = [
"alopex-core/async",
"dep:futures",
]
default = []
lane_ci = []
lane_fuzz = []
tokio = [
"async",
"alopex-core/tokio",
"dep:tokio",
]
[lib]
name = "alopex_sql"
path = "src/lib.rs"
[[test]]
name = "ast_span_test"
path = "tests/ast_span_test.rs"
[[test]]
name = "async_executor_test"
path = "tests/async_executor_test.rs"
[[test]]
name = "async_facade_parity"
path = "tests/async_facade_parity.rs"
[[test]]
name = "async_streaming"
path = "tests/async_streaming.rs"
[[test]]
name = "async_vector_consistency"
path = "tests/async_vector_consistency.rs"
[[test]]
name = "columnar_scan"
path = "tests/columnar_scan.rs"
[[test]]
name = "columnar_segment"
path = "tests/columnar_segment.rs"
[[test]]
name = "copy_bulk_load"
path = "tests/copy_bulk_load.rs"
[[test]]
name = "ddl_columnar"
path = "tests/ddl_columnar.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "error_test"
path = "tests/error_test.rs"
[[test]]
name = "executor_integration"
path = "tests/executor_integration.rs"
[[test]]
name = "hnsw_sql_tests"
path = "tests/hnsw_sql_tests.rs"
[[test]]
name = "integration_suite"
path = "tests/integration_suite.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "join_exec_test"
path = "tests/join_exec_test.rs"
[[test]]
name = "knn_optimization"
path = "tests/knn_optimization.rs"
[[test]]
name = "nim_bridge_test"
path = "tests/nim_bridge_test.rs"
[[test]]
name = "nim_error_test"
path = "tests/nim_error_test.rs"
[[test]]
name = "persistence_test"
path = "tests/persistence_test.rs"
[[test]]
name = "poc_msgpack_roundtrip"
path = "tests/poc_msgpack_roundtrip.rs"
[[test]]
name = "storage_integration"
path = "tests/storage_integration.rs"
[[test]]
name = "stress_invalid_ops_sql"
path = "tests/stress_invalid_ops_sql.rs"
[[test]]
name = "subquery_exec_test"
path = "tests/subquery_exec_test.rs"
[[test]]
name = "txn_integration"
path = "tests/txn_integration.rs"
[[test]]
name = "vector_functions"
path = "tests/vector_functions.rs"
[[bench]]
name = "group_by_bench"
path = "benches/group_by_bench.rs"
harness = false
[[bench]]
name = "key_encoding"
path = "benches/key_encoding.rs"
harness = false
[[bench]]
name = "knn_rowid"
path = "benches/knn_rowid.rs"
harness = false
[[bench]]
name = "parser_exec_bench"
path = "benches/parser_exec_bench.rs"
harness = false
[[bench]]
name = "storage_bench"
path = "benches/storage_bench.rs"
harness = false
[[bench]]
name = "storage_macro_bench"
path = "benches/storage_macro_bench.rs"
harness = false
[dependencies.alopex-core]
version = "0.6.0"
features = ["compression-zstd"]
[dependencies.arrow-array]
version = "52"
[dependencies.arrow-schema]
version = "52"
[dependencies.bincode]
version = "1.3"
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.futures-core]
version = "0.3"
[dependencies.parquet]
version = "52"
features = ["arrow"]
[dependencies.rmp-serde]
version = "1.3"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.35"
features = [
"full",
"rt-multi-thread",
"sync",
]
optional = true
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.10"