de-mls 3.0.0

Decentralized MLS — end-to-end encrypted group messaging with consensus-based membership management over gossipsub-like networks
Documentation
//! [`User`] — multi-conversation facade over core. One node owns one `User`,
//! which holds the per-conversation registry, the identity-bound key-package
//! provider, the consensus context, and the outbound transport. Per-conv
//! protocol work lives on each [`crate::app::SessionRunner`]; callers reach
//! a session via [`User::lookup_entry`].
//!
//! Submodules:
//! - [`state`] — `User` struct, constructor, accessors, and consensus-
//!   scope cleanup. Construct via `User::new_with_plugins(&identity,
//!   plugins, transport)` — the library is identity-agnostic, so the
//!   wallet glue lives outside.
//! - [`lifecycle`] — `start_conversation`, `leave_conversation` (registry CUD).
//! - [`registry`] — `lookup_entry`, `list_conversations`,
//!   `subscribe_conversations`.
//! - [`inbound`] — `process_inbound_packet`, welcome-subtopic handler,
//!   `finalize_self_leave` (registry-side completion of `LeaveConversation`).
//! - [`plugins`] — `UserPlugins<P, CP>` bundle + `ConsensusContext<P>`.
//!   Reference per-conversation plug-in impls live in [`crate::defaults`].

mod inbound;
mod lifecycle;
mod plugins;
mod registry;
mod state;

pub use plugins::{ConsensusContext, UserPlugins};
pub use state::{SessionEntry, User};