[package]
edition = "2024"
rust-version = "1.85"
name = "memory-core"
version = "0.1.12"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for persistent AI agent memory"
homepage = "https://github.com/victorqnguyen/memory-agent"
readme = false
keywords = [
"ai",
"memory",
"agent",
"sqlite",
"fts5",
]
categories = [
"database",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/victorqnguyen/memory-agent"
resolver = "2"
[features]
default = ["rusqlite/bundled"]
encryption = ["rusqlite/bundled-sqlcipher"]
test-utils = []
[lib]
name = "memory_core"
path = "src/lib.rs"
[[test]]
name = "benchmark_token_savings"
path = "tests/benchmark_token_savings.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "encryption_test"
path = "tests/encryption_test.rs"
[[test]]
name = "fts5_injection_test"
path = "tests/fts5_injection_test.rs"
[[test]]
name = "input_validation_test"
path = "tests/input_validation_test.rs"
[[test]]
name = "scope_test"
path = "tests/scope_test.rs"
[[test]]
name = "secret_detection_test"
path = "tests/secret_detection_test.rs"
[[test]]
name = "store_test"
path = "tests/store_test.rs"
[dependencies.blake3]
version = "1"
[dependencies.regex-lite]
version = "0.1"
[dependencies.rusqlite]
version = "0.38"
default-features = false
[dependencies.rusqlite_migration]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"