[package]
edition = "2021"
name = "recall-echo"
version = "4.0.0"
authors = ["dnacenta"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent memory system with knowledge graph — for any LLM tool"
readme = "README.md"
keywords = [
"ai",
"memory",
"llm",
"conversation",
"knowledge-graph",
]
categories = ["command-line-utilities"]
license = "MPL-2.0"
repository = "https://github.com/dnacenta/recall-echo"
[features]
bench = ["llm"]
default = [
"embedded",
"server",
"llm",
]
embedded = ["surrealdb/kv-surrealkv"]
llm = ["reqwest"]
pulse-null = ["pulse-system-types"]
server = ["surrealdb/protocol-ws"]
[lib]
name = "recall_echo"
path = "src/lib.rs"
[[bin]]
name = "recall-echo"
path = "src/main.rs"
[[test]]
name = "capture"
path = "tests/capture.rs"
[[test]]
name = "ephemeral"
path = "tests/ephemeral.rs"
[[test]]
name = "feedback"
path = "tests/feedback.rs"
[[test]]
name = "graph_confidence"
path = "tests/graph_confidence.rs"
[[test]]
name = "graph_crud"
path = "tests/graph_crud.rs"
[[test]]
name = "graph_dedup"
path = "tests/graph_dedup.rs"
[[test]]
name = "graph_episode_gc"
path = "tests/graph_episode_gc.rs"
[[test]]
name = "graph_episodes"
path = "tests/graph_episodes.rs"
[[test]]
name = "graph_gc"
path = "tests/graph_gc.rs"
[[test]]
name = "graph_lock"
path = "tests/graph_lock.rs"
[[test]]
name = "graph_traverse"
path = "tests/graph_traverse.rs"
[[test]]
name = "mcp_protocol"
path = "tests/mcp_protocol.rs"
[[test]]
name = "migration"
path = "tests/migration.rs"
[[test]]
name = "provenance"
path = "tests/provenance.rs"
[[test]]
name = "query_golden"
path = "tests/query_golden.rs"
[[test]]
name = "serve_client"
path = "tests/serve_client.rs"
[[test]]
name = "serve_extract"
path = "tests/serve_extract.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.fastembed]
version = "4"
features = [
"ort-download-binaries",
"hf-hub-rustls-tls",
]
default-features = false
[dependencies.futures]
version = "0.3"
[dependencies.pulse-system-types]
version = "0.6"
optional = true
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"charset",
"http2",
]
optional = true
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.surrealdb]
version = "3.2"
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"process",
"io-util",
"net",
"time",
"sync",
"macros",
]
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]