[package]
edition = "2021"
name = "agentic-memory"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Binary graph-based memory system for AI agents"
homepage = "https://agentralabs.tech"
readme = "README.md"
keywords = [
"ai",
"agent",
"memory",
"llm",
"graph",
]
categories = [
"data-structures",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/agentralabs/agentic-memory"
[features]
cli = [
"dep:clap",
"dep:clap_complete",
"dep:rustyline",
"format",
]
default = [
"cli",
"format",
"ffi",
]
ffi = ["format"]
format = [
"dep:lz4_flex",
"dep:memmap2",
]
[lib]
name = "agentic_memory"
crate-type = [
"lib",
"cdylib",
"staticlib",
]
path = "src/lib.rs"
[[bin]]
name = "amem"
path = "src/bin/amem.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "bench_v02_10k"
path = "examples/bench_v02_10k.rs"
[[example]]
name = "bench_v02_slow"
path = "examples/bench_v02_slow.rs"
[[example]]
name = "large_graph"
path = "examples/large_graph.rs"
[[test]]
name = "phase1_foundation"
path = "tests/phase1_foundation.rs"
[[test]]
name = "phase2_engine"
path = "tests/phase2_engine.rs"
[[test]]
name = "phase3_indexes"
path = "tests/phase3_indexes.rs"
[[test]]
name = "phase4_integration"
path = "tests/phase4_integration.rs"
[[test]]
name = "phase5_compat"
path = "tests/phase5_compat.rs"
[[test]]
name = "phase5_quality"
path = "tests/phase5_quality.rs"
[[test]]
name = "phase5_query_bm25"
path = "tests/phase5_query_bm25.rs"
[[test]]
name = "phase5_query_graph"
path = "tests/phase5_query_graph.rs"
[[test]]
name = "phase5_query_novel"
path = "tests/phase5_query_novel.rs"
[[test]]
name = "phase5_regression"
path = "tests/phase5_regression.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
optional = true
[dependencies.clap_complete]
version = "4"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.lz4_flex]
version = "0.11"
optional = true
[dependencies.memmap2]
version = "0.9"
optional = true
[dependencies.rustyline]
version = "14"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"