[package]
edition = "2021"
rust-version = "1.84"
name = "cypherlite-core"
version = "2.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, traits, and error handling for CypherLite graph database"
homepage = "https://github.com/Epsilondelta-ai/CypherLite"
readme = "README.md"
keywords = [
"graph",
"database",
"embedded",
"cypher",
"property-graph",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Epsilondelta-ai/CypherLite"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["temporal-core"]
full-temporal = ["hypergraph"]
hypergraph = ["subgraph"]
plugin = []
subgraph = ["temporal-edge"]
temporal-core = []
temporal-edge = ["temporal-core"]
[lib]
name = "cypherlite_core"
path = "src/lib.rs"
[[test]]
name = "plugin_test"
path = "tests/plugin_test.rs"
[dependencies.bincode]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"