[package]
name = "aether-memory"
version = "0.1.0"
edition = "2021"
description = "AetherMemory: hot-cold hierarchical memory architecture for embodied AI with LRU hot layer, K-Means cold partitioning, two-phase atomic migration and reinforcement-learning importance updates"
license = "MIT"
authors = ["Waterspring21"]
homepage = "https://doi.org/10.21227/s8zq-9971"
keywords = ["ai", "memory", "embodied", "cache", "robotics"]
categories = ["science", "data-structures"]
readme = "README.md"
[dependencies]
serde = { version = "1", features = ["derive"] }
anyhow = "1"
thiserror = "1"
log = "0.4"
tokio = { version = "1", features = ["full"] }
parking_lot = "0.12"
lru = "0.12"
fastrand = "2"
byteorder = "1"
bytes = "1"
uuid = { version = "1", features = ["v4", "serde"] }
rusqlite = { version = "0.31", features = ["bundled"] }
serde_json = "1.0.150"
zstd = "0.13.3"
async-trait = "0.1.89"
env_logger = "0.11.10"