nexo-memory-snapshot 0.1.5

Atomic point-in-time snapshot/restore for agent memory: git memdir + SQLite (long_term, vector, concepts, compactions) + extract cursor + dream_run row, packaged as a verifiable tar.zst bundle with optional redaction and age encryption.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Bundle codec primitives: SHA-256 streaming, tar+zstd packing,
//! optional age encryption.
//!
//! These modules stay decoupled from the snapshot orchestration so they
//! can be tested in isolation and reused by future bundle formats.

pub mod sha256_stream;
pub mod tar_zst;

#[cfg(feature = "snapshot-encryption")]
#[cfg_attr(docsrs, doc(cfg(feature = "snapshot-encryption")))]
pub mod age_codec;