[package]
name = "graphos-engine"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "Query engine and database management for Graphos"
[dependencies]
graphos-common.workspace = true
graphos-core.workspace = true
graphos-adapters.workspace = true
thiserror.workspace = true
anyhow.workspace = true
smallvec.workspace = true
hashbrown.workspace = true
indexmap.workspace = true
parking_lot.workspace = true
crossbeam.workspace = true
rayon.workspace = true
tokio.workspace = true
serde.workspace = true
tracing.workspace = true
[dev-dependencies]
criterion.workspace = true
tempfile.workspace = true
[features]
default = ["gql"]
gql = ["graphos-adapters/gql"]
cypher = ["graphos-adapters/cypher"]
sparql = ["graphos-adapters/sparql"]
gremlin = ["graphos-adapters/gremlin"]
graphql = ["graphos-adapters/graphql"]
rdf = ["graphos-core/rdf", "graphos-adapters/rdf"]
full = ["gql", "cypher", "sparql", "gremlin", "graphql", "rdf"]
[lints]
workspace = true