zeph-memory 0.12.3

Semantic memory with SQLite and Qdrant for Zeph agent
Documentation
[package]
name = "zeph-memory"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-memory"
keywords.workspace = true
categories.workspace = true
description = "Semantic memory with SQLite and Qdrant for Zeph agent"
readme = "README.md"

[dependencies]
bytemuck = { workspace = true }
dashmap = { workspace = true }
tiktoken-rs = { workspace = true }
pdf-extract = { workspace = true, optional = true }
qdrant-client = { workspace = true, features = ["serde"] }
schemars.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
sqlx = { workspace = true, features = ["runtime-tokio", "sqlite", "migrate"] }
thiserror.workspace = true
tokio = { workspace = true, features = ["rt"] }
tracing.workspace = true
uuid = { workspace = true, features = ["v4", "v5"] }
blake3.workspace = true
zeph-llm.workspace = true

[features]
default = []
mock = []
pdf = ["dep:pdf-extract"]

[[bench]]
name = "token_estimation"
harness = false

[dev-dependencies]
criterion.workspace = true
proptest.workspace = true
tempfile.workspace = true
testcontainers.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
zeph-llm = { workspace = true, features = ["mock"] }

[lints]
workspace = true