gsp-protocol 1.8.0

Group Signaling Protocol — the signalling sub-protocol of the Group Protocol Stack. Carries membership, role and stream-state events on top of the GBP base layer.
Documentation
//! **Group Signaling Protocol** — signalling sub-protocol of the
//! Group Protocol Stack.
//!
//! Receive-side pipeline (GSP §7): decrypt (handled by GBP) → check sender
//! authorisation → validate `args` schema → apply atomically → ACK / NACK.
//!
//! This crate provides:
//!
//! * [`GspSignal`] — the CBOR-encoded signal envelope.
//! * [`GspClient`] — stateful client that maintains:
//!   * `request_id` deduplication;
//!   * a mute-list;
//!   * the current membership set (driven by `JOIN` / `LEAVE`);
//!   * `signal_type` → [`gbp_core::SignalType`] decoding.
//!
//! See [`gbp-protocol`] for the underlying frame format.
//!
//! [`gbp-protocol`]: https://crates.io/crates/gbp-protocol

#![deny(missing_docs)]

pub mod args;
pub mod capabilities;
pub mod client;
pub mod roles;
pub mod signal;

pub use capabilities::CapabilitiesNegotiator;
pub use client::{GspAccept, GspClient, GspError};
pub use roles::{Permissions, RoleError, RoleRegistry, RoleSpec};
pub use signal::GspSignal;