plasmite 0.6.1

Persistent JSON message queues backed by plain files for local and remote IPC
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Purpose: Shared library crate used by the `plasmite` CLI and bindings.
//! Exports: `api` (stable public surface), `notice` (structured stderr notices).
//! Role: Public API boundary with private internal storage modules.
//! Invariants: Additive-only changes to `api`; internal modules remain private.
//! Invariants: Core modules prefer explicit inputs/outputs over hidden state.
mod abi;
pub mod api;
mod core;
pub mod mcp;
pub mod notice;
mod pool_paths;