thingd 0.68.2

Core primitives for thingd, an object-shaped local memory engine for apps and agents.
Documentation
[package]
name = "thingd"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
description = "Core primitives for thingd, an object-shaped local memory engine for apps and agents."
readme = "README.md"
keywords = ["ai", "memory", "mcp", "database", "lsm"]
categories = ["database-implementations", "caching"]
exclude = ["examples/"]

[features]
default = ["fjall", "search"]
search = ["dep:tantivy"]
fjall = ["dep:fjall"]
vectors = []
connectors = ["dep:csv", "dep:sqlx", "dep:tokio"]

[dependencies]
fjall = { version = "3.1.8", optional = true }
tantivy = { version = "0.26.1", optional = true }
csv = { version = "1.4", optional = true }
chrono = "0.4.45"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "postgres", "mysql"], optional = true }
tokio = { version = "1", features = ["rt", "macros"], optional = true }

[dev-dependencies]
tempfile = "3.27.0"

[lib]
path = "src/lib.rs"

[lints]
workspace = true

[package.metadata.docs.rs]
features = ["fjall"]
rustdoc-args = ["--cfg", "docsrs"]