[package]
edition = "2024"
name = "ctx-graph"
version = "0.2.5"
authors = ["CTX contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Graph and memory storage layer for CTX"
homepage = "https://github.com/Alegau03/CTX"
readme = false
license = "MIT"
repository = "https://github.com/Alegau03/CTX"
resolver = "2"
[lib]
name = "ctx_graph"
path = "src/lib.rs"
[[test]]
name = "graph_features"
path = "tests/graph_features.rs"
[[test]]
name = "graph_store"
path = "tests/graph_store.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.rusqlite]
version = "0.37"
features = [
"bundled",
"modern_sqlite",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3.23"