[package]
edition = "2021"
rust-version = "1.88"
name = "mempill-sqlite"
version = "0.2.0"
authors = ["Aliaksei Ivanouski"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite persistence adapter for mempill — embedded, file-per-agent, WAL + FULL sync, zero external process required"
homepage = "https://mempill.netlify.app"
readme = "README.md"
keywords = [
"ai",
"agent",
"memory",
"sqlite",
"temporal",
]
categories = [
"database",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/mempill-ai/mempill"
[lib]
name = "mempill_sqlite"
path = "src/lib.rs"
[[test]]
name = "acid_allergy_retained"
path = "tests/acid_allergy_retained.rs"
[[test]]
name = "acid_amplification"
path = "tests/acid_amplification.rs"
[[test]]
name = "acid_atomic_commit"
path = "tests/acid_atomic_commit.rs"
[[test]]
name = "acid_b11_contested"
path = "tests/acid_b11_contested.rs"
[[test]]
name = "acid_b7_coherence"
path = "tests/acid_b7_coherence.rs"
[[test]]
name = "acid_g1_replay"
path = "tests/acid_g1_replay.rs"
[[test]]
name = "concurrent_writes"
path = "tests/concurrent_writes.rs"
[[test]]
name = "history_qa"
path = "tests/history_qa.rs"
[[test]]
name = "oracle_belief_surfacing_qa"
path = "tests/oracle_belief_surfacing_qa.rs"
[[test]]
name = "oracle_constructor_e2e"
path = "tests/oracle_constructor_e2e.rs"
[[test]]
name = "oracle_resolution_e2e"
path = "tests/oracle_resolution_e2e.rs"
[[test]]
name = "oracle_ttl_sweep_qa"
path = "tests/oracle_ttl_sweep_qa.rs"
[[test]]
name = "sqlite_conformance"
path = "tests/sqlite_conformance.rs"
[[test]]
name = "sqlite_oracle_conformance"
path = "tests/sqlite_oracle_conformance.rs"
[[test]]
name = "temporal_succession_qa"
path = "tests/temporal_succession_qa.rs"
[[test]]
name = "temporal_succession_task11"
path = "tests/temporal_succession_task11.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.mempill-core]
version = "0.2.0"
[dependencies.mempill-types]
version = "0.2.0"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.mempill-core]
version = "0.2.0"
features = ["test-support"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"rt-multi-thread",
"time",
"macros",
]