[package]
edition = "2021"
name = "lance-graph"
version = "0.5.0"
authors = ["Lance Devs <dev@lancedb.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Graph query engine for Lance datasets with Cypher support"
readme = "README.md"
keywords = [
"lance",
"graph",
"cypher",
"query",
"datafusion",
]
categories = [
"database",
"data-structures",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/lancedb/lance-graph"
[lib]
name = "lance_graph"
path = "src/lib.rs"
[[test]]
name = "test_case_insensitivity"
path = "tests/test_case_insensitivity.rs"
[[test]]
name = "test_datafusion_pipeline"
path = "tests/test_datafusion_pipeline.rs"
[[test]]
name = "test_datafusion_scenarios"
path = "tests/test_datafusion_scenarios.rs"
[[test]]
name = "test_datafusion_varlength_complex"
path = "tests/test_datafusion_varlength_complex.rs"
[[test]]
name = "test_datafusion_vector_search"
path = "tests/test_datafusion_vector_search.rs"
[[test]]
name = "test_datafusion_with_context"
path = "tests/test_datafusion_with_context.rs"
[[test]]
name = "test_explain_output"
path = "tests/test_explain_output.rs"
[[test]]
name = "test_lance_vector_search"
path = "tests/test_lance_vector_search.rs"
[[test]]
name = "test_simple_executor_pipeline"
path = "tests/test_simple_executor_pipeline.rs"
[[test]]
name = "test_to_sql"
path = "tests/test_to_sql.rs"
[[bench]]
name = "graph_execution"
path = "benches/graph_execution.rs"
harness = false
[dependencies.arrow]
version = "56.2"
features = ["prettyprint"]
[dependencies.arrow-array]
version = "56.2"
[dependencies.arrow-schema]
version = "56.2"
[dependencies.async-trait]
version = "0.1"
[dependencies.datafusion]
version = "50.3"
features = [
"nested_expressions",
"regex_expressions",
"unicode_expressions",
"crypto_expressions",
"encoding_expressions",
"datetime_expressions",
"string_expressions",
]
default-features = false
[dependencies.datafusion-common]
version = "50.3"
[dependencies.datafusion-expr]
version = "50.3"
[dependencies.datafusion-functions-aggregate]
version = "50.3"
[dependencies.datafusion-sql]
version = "50.3"
[dependencies.futures]
version = "0.3"
[dependencies.lance]
version = "1.0.0"
[dependencies.lance-linalg]
version = "1.0.0"
[dependencies.lance-namespace]
version = "1.0.1"
[dependencies.nom]
version = "7.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.snafu]
version = "0.8"
[dev-dependencies.criterion]
version = "0.5"
features = [
"async",
"async_tokio",
"html_reports",
]
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.lance-arrow]
version = "1.0.0"
[dev-dependencies.lance-index]
version = "1.0.0"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.37"
features = [
"macros",
"rt-multi-thread",
]