[package]
edition = "2024"
name = "mnemo-core"
version = "0.5.12"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core storage, data model, query engine, and indexing for Mnemo"
homepage = "https://github.com/sattyamjjain/mnemo"
readme = "README.md"
keywords = [
"memory",
"database",
"ai-agents",
"vector-db",
"mcp",
]
categories = [
"database-implementations",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/sattyamjjain/mnemo"
resolver = "2"
[features]
onnx = [
"dep:ort",
"dep:tokenizers",
"dep:ndarray",
]
s3 = [
"dep:aws-sdk-s3",
"dep:aws-config",
]
[lib]
name = "mnemo_core"
path = "src/lib.rs"
[[example]]
name = "gen_golden_fixture"
path = "examples/gen_golden_fixture.rs"
[[test]]
name = "agent_managed_crossover"
path = "tests/agent_managed_crossover.rs"
[[test]]
name = "budgeted_evidence_retention"
path = "tests/budgeted_evidence_retention.rs"
[[test]]
name = "consolidate"
path = "tests/consolidate.rs"
[[test]]
name = "cost_aware_recall"
path = "tests/cost_aware_recall.rs"
[[test]]
name = "domain_scoped_dilution"
path = "tests/domain_scoped_dilution.rs"
[[test]]
name = "experience_memory"
path = "tests/experience_memory.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "memfail_isolation"
path = "tests/memfail_isolation.rs"
[[test]]
name = "migration_roundtrip"
path = "tests/migration_roundtrip.rs"
[[test]]
name = "provenance_chain"
path = "tests/provenance_chain.rs"
[[test]]
name = "reconstruct"
path = "tests/reconstruct.rs"
[[test]]
name = "version_metadata"
path = "tests/version_metadata.rs"
[[bench]]
name = "engine_bench"
path = "benches/engine_bench.rs"
harness = false
[[bench]]
name = "longmemeval_bench"
path = "benches/longmemeval_bench.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
[dependencies.async-trait]
version = "0.1"
[dependencies.aws-config]
version = "1"
optional = true
[dependencies.aws-sdk-s3]
version = "1"
optional = true
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.duckdb]
version = "=1.10504.0"
features = ["bundled"]
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.13"
[dependencies.ndarray]
version = "0.17"
optional = true
[dependencies.ort]
version = "2.0.0-rc.11"
optional = true
[dependencies.rand]
version = "0.10"
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.13"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.subtle]
version = "2.5"
[dependencies.tantivy]
version = "0.26"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokenizers]
version = "0.23"
features = ["fancy-regex"]
optional = true
default-features = false
[dependencies.tokio]
version = "1.48"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.usearch]
version = "2.21"
[dependencies.uuid]
version = "1.11"
features = [
"v7",
"serde",
]
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.48"
features = [
"full",
"test-util",
"macros",
]