//! Core types, traits, and CMP protocol definitions for Cerememory.
//!
//! This crate defines the foundational data structures and interfaces
//! that all other Cerememory crates depend on. It contains:
//!
//! - Memory record types ([`MemoryRecord`], [`MemoryContent`], [`ContentBlock`])
//! - Fidelity and decay types ([`FidelityState`])
//! - Emotion representation ([`EmotionVector`])
//! - Association types ([`Association`], [`AssociationType`])
//! - Store type enumeration ([`StoreType`])
//! - CMP protocol request/response types
//! - Core traits ([`Store`], [`DecayEngine`], [`AssociationEngine`])
pub use CerememoryError;
pub use *;
pub use *;
pub use *;