mempill-core 0.2.0

Core engine for mempill — a bi-temporal, append-only claim store with a deterministic adjudication gate and oracle resolution for temporally-correct AI-agent memory
Documentation
1
2
3
4
5
6
7
//! Concurrency primitives for mempill-core.
//!
//! Provides the per-agent_id write lock that enforces single-writer-per-agent_id
//! at the async task layer within a single process.
#![allow(dead_code)]

pub(crate) mod agent_lock;