[package]
edition = "2021"
rust-version = "1.75"
name = "mnemo-engine"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Encrypted, single-file, portable agent memory engine with multi-signal recall, sessions, snapshots, and an IVF+PQ index"
homepage = "https://toarchkumar.github.io/mnemo/"
documentation = "https://docs.rs/mnemo-engine"
readme = "README.md"
keywords = [
"database",
"encryption",
"vector",
"ai",
"memory",
]
categories = [
"database",
"cryptography",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/toarchkumar/mnemo"
[lib]
name = "mnemo"
path = "src/lib.rs"
[[bin]]
name = "mnemo"
path = "src/bin/mnemo.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[example]]
name = "session"
path = "examples/session.rs"
[[test]]
name = "cli_smoke"
path = "tests/cli_smoke.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.aes-gcm]
version = "=0.10.3"
[dependencies.argon2]
version = "=0.5.3"
[dependencies.base64ct]
version = "=1.6.0"
[dependencies.clap]
version = "=4.4.18"
features = ["derive"]
[dependencies.rand]
version = "=0.8.5"
[dependencies.rmp]
version = "=0.8.14"
[dependencies.rmp-serde]
version = "=1.3.0"
[dependencies.rpassword]
version = "=7.3.1"
[dependencies.serde]
version = "=1.0.210"
features = ["derive"]
[dependencies.serde_json]
version = "=1.0.128"
[dependencies.thiserror]
version = "=1.0.64"
[dependencies.ulid]
version = "=1.1.3"
features = ["serde"]
[dependencies.zeroize]
version = "=1.8.1"
[dev-dependencies.tempfile]
version = "=3.10.1"
[profile.release]
lto = true
codegen-units = 1