[package]
edition = "2021"
rust-version = "1.90"
name = "graphdblite"
version = "0.1.2"
build = false
exclude = [
"tests/tck/features/**",
"tests/tck/graphs/**",
"tests/tck/skiplist.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded graph database with Cypher support. SQLite-grade simplicity, graph-native performance."
homepage = "https://github.com/ds7n/graphdblite"
documentation = "https://docs.rs/graphdblite"
readme = "README.md"
keywords = [
"graph",
"database",
"cypher",
"embedded",
"sqlite",
]
categories = [
"database",
"database-implementations",
]
license = "MIT"
repository = "https://github.com/ds7n/graphdblite"
[features]
dhat-heap = []
fuzzing = []
tck-support = [
"dep:cucumber",
"dep:anyhow",
]
[lib]
name = "graphdblite"
crate-type = ["lib"]
path = "src/lib.rs"
[[bin]]
name = "graphdblite"
path = "src/bin/cli.rs"
[[example]]
name = "recommendation"
path = "examples/recommendation.rs"
[[example]]
name = "seed"
path = "examples/seed.rs"
[[example]]
name = "social_graph"
path = "examples/social_graph.rs"
[[example]]
name = "temporal_events"
path = "examples/temporal_events.rs"
[[test]]
name = "alloc_regression"
path = "tests/alloc_regression.rs"
harness = false
required-features = ["dhat-heap"]
[[test]]
name = "composite_index_lifecycle"
path = "tests/composite_index_lifecycle.rs"
[[test]]
name = "composite_index_planner_tests"
path = "tests/composite_index_planner_tests.rs"
[[test]]
name = "e2e_query_tests"
path = "tests/e2e_query_tests.rs"
[[test]]
name = "edge_tests"
path = "tests/edge_tests.rs"
[[test]]
name = "fts_sanity"
path = "tests/fts_sanity.rs"
[[test]]
name = "fts_write_path"
path = "tests/fts_write_path.rs"
[[test]]
name = "fulltext_perf"
path = "tests/fulltext_perf.rs"
[[test]]
name = "index_maintenance_regression"
path = "tests/index_maintenance_regression.rs"
[[test]]
name = "index_tests"
path = "tests/index_tests.rs"
[[test]]
name = "multiprocess_tests"
path = "tests/multiprocess_tests.rs"
[[test]]
name = "node_tests"
path = "tests/node_tests.rs"
[[test]]
name = "param_plan_equivalence"
path = "tests/param_plan_equivalence.rs"
[[test]]
name = "record_columns_golden"
path = "tests/record_columns_golden.rs"
harness = false
required-features = ["tck-support"]
[[test]]
name = "tck"
path = "tests/tck.rs"
harness = false
required-features = ["tck-support"]
[[test]]
name = "transaction_tests"
path = "tests/transaction_tests.rs"
[dependencies.anyhow]
version = "1"
optional = true
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10.4"
[dependencies.cucumber]
version = "0.21"
optional = true
[dependencies.indexmap]
version = "2"
[dependencies.pest]
version = "2"
[dependencies.pest_derive]
version = "2"
[dependencies.regex]
version = "1"
[dependencies.rmp-serde]
version = "1"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.dhat]
version = "0.3"
[dev-dependencies.pollster]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"