[package]
edition = "2021"
rust-version = "1.82"
name = "marsdb-query"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "openCypher query subset parser, planner, and executor used internally by MarsDB."
homepage = "https://github.com/knoguchi/marsdb"
documentation = "https://knoguchi.github.io/marsdb/"
readme = "README.md"
keywords = [
"graph-database",
"cypher",
"opencypher",
"embedded",
"database",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/knoguchi/marsdb"
[lib]
name = "marsdb_query"
path = "src/lib.rs"
[[example]]
name = "parse_only"
path = "examples/parse_only.rs"
[[test]]
name = "ldbc_is_queries"
path = "tests/ldbc_is_queries.rs"
[[test]]
name = "smoke_aggregates"
path = "tests/smoke_aggregates.rs"
[[test]]
name = "smoke_expressions"
path = "tests/smoke_expressions.rs"
[[test]]
name = "smoke_filtering"
path = "tests/smoke_filtering.rs"
[[test]]
name = "smoke_matching"
path = "tests/smoke_matching.rs"
[[test]]
name = "smoke_mutation"
path = "tests/smoke_mutation.rs"
[[test]]
name = "smoke_temporal"
path = "tests/smoke_temporal.rs"
[[test]]
name = "smoke_with_unwind"
path = "tests/smoke_with_unwind.rs"
[dependencies.antlr4rust]
version = "0.5.2"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.chrono-tz]
version = "0.10"
[dependencies.marsdb-graph]
version = "0.8.0"
[dependencies.thiserror]
version = "2"