[package]
edition = "2021"
name = "mneme-brain"
version = "0.3.1"
authors = ["mneme contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent memory system for AI coding agents — Rust + SQLite + FTS5 + MCP. Hybrid search, age encryption, CRDT P2P sync, WASM plugins, TUI with knowledge graph."
homepage = "https://github.com/daddydiaz2/mneme"
documentation = "https://github.com/daddydiaz2/mneme#readme"
readme = "README.md"
keywords = [
"ai",
"agent",
"mcp",
"memory",
"sqlite",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT"
repository = "https://github.com/daddydiaz2/mneme"
[features]
default = []
embeddings = [
"dep:fastembed",
"dep:sqlite-vec",
"dep:ndarray",
]
plugins = ["dep:extism"]
[lib]
name = "mneme"
path = "src/lib.rs"
[[bin]]
name = "mneme"
path = "src/main.rs"
[[test]]
name = "cli_commands_tests"
path = "tests/cli_commands_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "cloud_tests"
path = "tests/cloud_tests.rs"
[[test]]
name = "compress_tests"
path = "tests/compress_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "crypto_tests"
path = "tests/crypto_tests.rs"
[[test]]
name = "embeddings_tests"
path = "tests/embeddings_tests.rs"
[[test]]
name = "entities_tests"
path = "tests/entities_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "export_tests"
path = "tests/export_tests.rs"
[[test]]
name = "http_tests"
path = "tests/http_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "mcp_extended_tests"
path = "tests/mcp_extended_tests.rs"
[[test]]
name = "mcp_tests"
path = "tests/mcp_tests.rs"
[[test]]
name = "obsidian_tests"
path = "tests/obsidian_tests.rs"
[[test]]
name = "plugin_tests"
path = "tests/plugin_tests.rs"
[[test]]
name = "rerank_tests"
path = "tests/rerank_tests.rs"
[[test]]
name = "search_tests"
path = "tests/search_tests.rs"
[[test]]
name = "store_extended_tests"
path = "tests/store_extended_tests.rs"
[[test]]
name = "store_tests"
path = "tests/store_tests.rs"
[[test]]
name = "sync_tests"
path = "tests/sync_tests.rs"
[[test]]
name = "watch_tests"
path = "tests/watch_tests.rs"
[[test]]
name = "watcher_new_tests"
path = "tests/watcher_new_tests.rs"
[dependencies.age]
version = "0.10"
features = ["ssh"]
[dependencies.anyhow]
version = "1"
[dependencies.automerge]
version = "0.5"
[dependencies.axum]
version = "0.7"
features = [
"json",
"tokio",
]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
"wrap_help",
]
[dependencies.clap_complete]
version = "4"
[dependencies.crossterm]
version = "0.27"
features = ["event-stream"]
[dependencies.dirs]
version = "5"
[dependencies.extism]
version = "1.30.0"
optional = true
[dependencies.fastembed]
version = "4"
optional = true
[dependencies.fuzzy-matcher]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hostname]
version = "0.4"
[dependencies.md5]
version = "0.7"
[dependencies.ndarray]
version = "0.15"
optional = true
[dependencies.ratatui]
version = "0.27"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rmcp]
version = "0.1"
features = [
"server",
"transport-io",
]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.rusqlite_migration]
version = "1.2"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlite-vec]
version = "0.1"
optional = true
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.4"
[dependencies.tower-http]
version = "0.5"
features = [
"cors",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.unicode-width]
version = "0.1"
[dependencies.ureq]
version = "3"
features = ["json"]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.secrecy]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true