uqa-graph 0.2.3

Graph store, RPQ, Cypher (lexer/parser/AST/compiler), graph algorithms
Documentation
[package]
name = "uqa-graph"
# Keep integration sources in one linked harness; CI verifies every source is registered.
autotests = false
description = "Graph store, RPQ, Cypher (lexer/parser/AST/compiler), graph algorithms"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
rust-version.workspace = true
documentation = "https://docs.rs/uqa-graph"
exclude.workspace = true

[dependencies]
uqa-core = { workspace = true }
uqa-analysis = { workspace = true }
uqa-operators = { workspace = true }
uqa-storage = { workspace = true }
icu_properties = { workspace = true }
parking_lot = { workspace = true }
regex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }

# SQLCipher's crypto provider does not exist on the browser target;
# emscripten builds bundle plain SQLite instead.
[target.'cfg(not(target_os = "emscripten"))'.dependencies]
rusqlite = { workspace = true }

[target.'cfg(target_os = "emscripten")'.dependencies]
rusqlite = { version = "0.39", default-features = false, features = ["bundled", "blob", "cache"] }

[dev-dependencies]
proptest = { workspace = true }
criterion = { workspace = true }

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "rpq"
harness = false

[[bench]]
name = "graph_workloads"
harness = false

[lints]
workspace = true