[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-sqlite"
version = "0.3.0"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite LLM cache and graph checkpointer integration for Synaptic"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_sqlite"
path = "src/lib.rs"
[[test]]
name = "cache"
path = "tests/cache.rs"
[[test]]
name = "checkpointer_basic"
path = "tests/checkpointer_basic.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.3"
[dependencies.synaptic-graph]
version = "0.3"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.synaptic-graph]
version = "0.3"
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]