[package]
name = "halldyll_memory_model"
version = "0.2.0"
edition = "2021"
authors = ["Roy Géryan <geryan.roy@icloud.com>"]
description = "Multi-user, multi-model memory system for distributed AI agents (Halldyll ecosystem)"
license = "MIT"
repository = "https://github.com/Mr-soloDev/Halldyll-Memory-Model"
homepage = "https://github.com/Mr-soloDev/Halldyll-Memory-Model"
documentation = "https://docs.rs/halldyll_memory_model"
readme = "README.md"
keywords = ["memory", "ai", "distributed", "multimodal", "vector-store"]
categories = ["database", "network-programming"]
include = ["src/**/*", "examples/**/*", "migrations/**/*", "Cargo.toml", "README.md", "LICENSE", "CHANGELOG.md"]
[dependencies]
thiserror = "2.0"
anyhow = "1.0"
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio-native-tls", "uuid", "chrono", "json"] }
pgvector = { version = "0.4", features = ["sqlx"] }
redis = { version = "0.26", features = ["tokio-comp", "connection-manager"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ort = "2.0.0-rc.11"
ndarray = "0.16"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
dashmap = "6.0"
config = "0.14"
dotenvy = "0.15"
reqwest = { version = "0.12", features = ["json"] }
validator = { version = "0.18", features = ["derive"] }
derive_more = "0.99"
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.0"
mockall = "0.12"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.dev]
opt-level = 0
[profile.test]
opt-level = 1