[package]
edition = "2021"
rust-version = "1.95"
name = "hippmem-engine"
version = "0.1.0"
authors = ["hippmem <hippmem@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HIPPMEM native association memory engine — unified public Rust API orchestration layer"
homepage = "https://github.com/hippmem/hippmem"
documentation = "https://docs.rs/hippmem-engine"
readme = false
keywords = [
"memory",
"ai",
"agent",
"rag",
"associative",
]
categories = [
"database",
"command-line-interface",
]
license = "AGPL-3.0-only"
repository = "https://github.com/hippmem/hippmem"
[features]
api-backends = ["hippmem-model/api-backends"]
default = ["api-backends"]
[lib]
name = "hippmem_engine"
path = "src/lib.rs"
[[bin]]
name = "hippmem"
path = "src/bin/hippmem.rs"
[[bin]]
name = "hippmem-server"
path = "src/bin/hippmem-server.rs"
[[example]]
name = "agent_session"
path = "examples/agent_session.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "consolidation_cycle"
path = "examples/consolidation_cycle.rs"
[[example]]
name = "seed_100"
path = "examples/seed_100.rs"
[[test]]
name = "channel_calibration_e2e"
path = "tests/channel_calibration_e2e.rs"
[[test]]
name = "compliance"
path = "tests/compliance.rs"
[[test]]
name = "comprehensive_100"
path = "tests/comprehensive_100.rs"
[[test]]
name = "consolidate"
path = "tests/consolidate.rs"
[[test]]
name = "consolidate_cycle"
path = "tests/consolidate_cycle.rs"
[[test]]
name = "dump_e2e"
path = "tests/dump_e2e.rs"
[[test]]
name = "enrich"
path = "tests/enrich.rs"
[[test]]
name = "explain_inspect"
path = "tests/explain_inspect.rs"
[[test]]
name = "feedback"
path = "tests/feedback.rs"
[[test]]
name = "list_e2e"
path = "tests/list_e2e.rs"
[[test]]
name = "open_close"
path = "tests/open_close.rs"
[[test]]
name = "reindex_e2e"
path = "tests/reindex_e2e.rs"
[[test]]
name = "retrieve_e2e"
path = "tests/retrieve_e2e.rs"
[[test]]
name = "retrieve_golden"
path = "tests/retrieve_golden.rs"
[[test]]
name = "traverse_e2e"
path = "tests/traverse_e2e.rs"
[[test]]
name = "write_e2e"
path = "tests/write_e2e.rs"
[dependencies.bincode]
version = "2"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.dashmap]
version = "6"
[dependencies.dotenvy]
version = "0.15"
[dependencies.hippmem-consolidation]
version = "0.1.0"
[dependencies.hippmem-core]
version = "0.1.0"
[dependencies.hippmem-model]
version = "0.1.0"
[dependencies.hippmem-retrieval]
version = "0.1.0"
[dependencies.hippmem-store]
version = "0.1.0"
[dependencies.hippmem-write]
version = "0.1.0"
[dependencies.parking_lot]
version = "0.12"
[dependencies.redb]
version = "3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"time",
"rt-multi-thread",
"sync",
"time",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"