syncular-ssp2 0.2.0

Syncular v2 SSP2 wire codec, implemented from SPEC.md alone (language-neutrality POC)
Documentation
//! # ssp2 — Syncular v2 wire codec (Rust POC)
//!
//! A fresh implementation of the SSP2 envelope, the SSG2 rows-segment format,
//! the §2.4 row codec, §8 realtime control messages, and the §11 canonical
//! JSON debug rendering — built **from `SPEC.md` alone** (no reference to
//! the v1 Rust tree or the v2 TypeScript implementations) to prove the
//! written protocol contract is language-neutral. Conformance is pinned by
//! the golden vectors in `spec/vectors/`.

pub mod blob_ref;
/// §5.11 client-side encryption primitives (envelope, value serializer,
/// AES-256-GCM). Gated on the `e2ee` feature.
#[cfg(feature = "e2ee")]
pub mod crypto;
pub mod decode;
pub mod encode;
pub mod error;
pub mod model;
pub mod primitives;
pub mod realtime;
pub mod render;
pub mod segment;
pub mod stream;
pub mod util;
/// §5.11 X25519 sealed-box key wrapping (async-encryption utilities). Gated on
/// the `e2ee` feature.
#[cfg(feature = "e2ee")]
pub mod wrap;

pub use decode::decode_message;
pub use encode::encode_message;
pub use error::{DecodeError, ErrorCode};
pub use model::{Frame, Message, MsgKind};
pub use realtime::{
    encode_presence_publish, parse_control, parse_control_value, render_control, ControlMessage,
    PresenceKind,
};
pub use render::{render_message, render_rows_segment};
pub use segment::{decode_rows_segment, encode_rows_segment, RowsSegment, SegmentRow};
pub use stream::{MessageStreamScanner, ScannedMessage};