de-mls 3.0.0

Decentralized MLS — end-to-end encrypted group messaging with consensus-based membership management over gossipsub-like networks
Documentation
//! Per-conversation core types: protocol state, MLS-bound aggregate,
//! state machine, and durable config.
//!
//! Layout:
//! - [`conversation`] — the [`Conversation`] struct + protocol queues +
//!   dedup caches.
//! - [`handle`] — [`ConversationHandle`] (data + protocol-function wrappers,
//!   owned by the orchestrator).
//! - [`state_machine`] — passive state enum + named transitions.
//! - [`config`] — durable timing/protocol config.

mod config;
#[allow(clippy::module_inception)]
mod conversation;
mod handle;
mod state_machine;
mod util;

pub use config::{
    ConversationConfig, DEFAULT_COMMIT_INACTIVITY_DURATION, DEFAULT_CONSENSUS_TIMEOUT,
    DEFAULT_ELECTION_VOTING_DELAY, DEFAULT_LIVENESS_CRITERIA_YES,
    DEFAULT_PENDING_UPDATE_MAX_EPOCHS, DEFAULT_PROPOSAL_EXPIRATION,
    DEFAULT_RECOVERY_INACTIVITY_DURATION, DEFAULT_VOTING_DELAY,
};
pub use conversation::{
    BufferedCommitCandidate, Conversation, FreezeBufferOutcome, PendingUpdate, ProposalId,
};
pub use handle::ConversationHandle;
pub use state_machine::{ConversationState, ConversationStateMachine, OperatingMode};
pub use util::{member_set, self_leave_proposal_id, target_identity_of};