Files
poimen-memory/crates/mem-cli/Cargo.toml
rock e6e39cf6fd
Build and Push / Test (push) Failing after 2m37s
Build and Push / Build and push image (push) Skipped
feat(core): implement full memory pipeline (#11)
2026-08-24 01:37:16 +00:00

38 lines
913 B
TOML

[package]
name = "mem-cli"
version = "0.1.0"
edition = "2021"
[lib]
name = "mem_cli"
path = "src/lib.rs"
[[bin]]
name = "mem"
path = "src/main.rs"
[dependencies]
mem-core = { path = "../mem-core" }
mem-chunk = { path = "../mem-chunk" }
mem-llm = { path = "../mem-llm" }
mem-ingest = { path = "../mem-ingest" }
mem-store = { path = "../mem-store" }
tokio = { workspace = true }
futures = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
clap = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
time = { workspace = true }
actix-web = { workspace = true }
actix-rt = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
sqlx = { workspace = true }
pgvector = { workspace = true }
base64 = { workspace = true }