[package]
edition = "2024"
name = "uni-query"
version = "0.2.0"
authors = ["Dragonscale Industries Inc. <dev@dragonscale.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenCypher query parser, planner, and vectorized executor for Uni"
readme = false
license = "Apache-2.0"
repository = "https://github.com/rustic-ai/uni-db"
resolver = "2"
[features]
default = []
[lib]
name = "uni_query"
path = "src/lib.rs"
[[test]]
name = "bitwise_functions_test"
path = "tests/bitwise_functions_test.rs"
[[test]]
name = "bitwise_parser_test"
path = "tests/bitwise_parser_test.rs"
[[test]]
name = "datetime_functions_test"
path = "tests/datetime_functions_test.rs"
[[test]]
name = "ddl_parser_test"
path = "tests/ddl_parser_test.rs"
[[test]]
name = "df_schemaless_integration"
path = "tests/df_schemaless_integration.rs"
[[test]]
name = "executor_edge_cases"
path = "tests/executor_edge_cases.rs"
[[test]]
name = "functions_test"
path = "tests/functions_test.rs"
[[test]]
name = "json_fts_integration"
path = "tests/json_fts_integration.rs"
[[test]]
name = "list_comprehension_test"
path = "tests/list_comprehension_test.rs"
[[test]]
name = "parser_edge_cases"
path = "tests/parser_edge_cases.rs"
[[test]]
name = "parser_test"
path = "tests/parser_test.rs"
[[test]]
name = "planner_edge_cases"
path = "tests/planner_edge_cases.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "pushdown_test"
path = "tests/pushdown_test.rs"
[[test]]
name = "quantified_path_test"
path = "tests/quantified_path_test.rs"
[[test]]
name = "recursive_cte_parser_test"
path = "tests/recursive_cte_parser_test.rs"
[[test]]
name = "reduce_parser_test"
path = "tests/reduce_parser_test.rs"
[[test]]
name = "spatial_functions_test"
path = "tests/spatial_functions_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.arrow]
version = "56.2.0"
features = ["prettyprint"]
[dependencies.arrow-array]
version = "56.2.0"
[dependencies.arrow-row]
version = "56.2.0"
[dependencies.arrow-schema]
version = "56.2.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.21"
[dependencies.bitvec]
version = "1"
[dependencies.bytes]
version = "1.6"
[dependencies.chrono]
version = "0.4.43"
[dependencies.chrono-tz]
version = "0.10"
[dependencies.csv]
version = "1.3"
[dependencies.datafusion]
version = "50.3.0"
[dependencies.futures]
version = "0.3"
[dependencies.fxhash]
version = "0.2"
[dependencies.lance]
version = "1.0.1"
features = [
"aws",
"azure",
"gcp",
]
default-features = false
[dependencies.lancedb]
version = "0.23.1"
features = [
"aws",
"gcs",
"azure",
]
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.metrics]
version = "0.22"
[dependencies.object_store]
version = "0.11"
features = [
"aws",
"gcp",
"azure",
]
[dependencies.parking_lot]
version = "0.12"
[dependencies.parquet]
version = "56.2.0"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uni-algo]
version = "0.2.0"
[dependencies.uni-common]
version = "0.2.0"
[dependencies.uni-crdt]
version = "0.2.0"
[dependencies.uni-cypher]
version = "0.2.0"
[dependencies.uni-locy]
version = "0.2.0"
[dependencies.uni-store]
version = "0.2.0"
[dependencies.uni-xervo]
version = "0.2.0"
default-features = false
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"