[package]
name = "nt-memory"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Hierarchical memory system for Neural Trader - ReasoningBank-compatible with L1/L2/L3 caching"
documentation = "https://docs.rs/nt-memory"
readme = "README.md"
keywords = ["trading", "memory", "cache", "agentdb", "reasoning"]
categories = ["caching", "database", "algorithms"]
[dependencies]
nt-core = { version = "1.0.0", path = "../core" }
nt-agentdb-client = { version = "1.0.0", path = "../agentdb-client" }
tokio.workspace = true
async-trait.workspace = true
serde.workspace = true
serde_json.workspace = true
chrono.workspace = true
uuid.workspace = true
thiserror.workspace = true
anyhow.workspace = true
tracing.workspace = true
dashmap = "5.5"
sled = "0.34"
bincode = "1.3"
lz4 = "1.24"
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
parking_lot = "0.12"
ndarray = "0.15"
[dev-dependencies]
tokio-test.workspace = true
mockall.workspace = true
criterion.workspace = true
proptest.workspace = true
tempfile = "3.8"
[[bench]]
name = "memory_benchmarks"
harness = false