[package]
edition = "2024"
name = "xz-knowledge-graph"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured knowledge graph storage engine with graph traversal"
readme = "README.md"
license = "MIT OR Apache-2.0"
resolver = "2"
[features]
default = []
test-utils = []
[lib]
name = "xz_knowledge_graph"
path = "src/lib.rs"
[[example]]
name = "basic_knowledge_graph"
path = "examples/basic_knowledge_graph.rs"
[[example]]
name = "batch_import"
path = "examples/batch_import.rs"
[[example]]
name = "consistency_check"
path = "examples/consistency_check.rs"
[[example]]
name = "graph_traversal"
path = "examples/graph_traversal.rs"
[[test]]
name = "batch_import"
path = "tests/batch_import.rs"
[[test]]
name = "consistency"
path = "tests/consistency.rs"
[[test]]
name = "entity_crud"
path = "tests/entity_crud.rs"
[[test]]
name = "graph_traversal"
path = "tests/graph_traversal.rs"
[[test]]
name = "relation_crud"
path = "tests/relation_crud.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"sqlite",
]
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
[dependencies.tokio]
version = "1.0"
features = [
"rt",
"sync",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"v7",
]
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]