durable_streams_server/protocol/mod.rs
1//! Durable Streams protocol parsing, validation, and wire-format helpers.
2//!
3//! Most integrations will use [`error`], [`offset`], and [`producer`].
4//! The remaining modules support the HTTP implementation and are kept crate-private
5//! to avoid exposing server internals as the primary public surface.
6
7pub(crate) mod cursor;
8pub mod error;
9pub(crate) mod headers;
10pub(crate) mod json_mode;
11pub mod offset;
12pub mod problem;
13pub mod producer;
14pub(crate) mod sse;
15pub(crate) mod stream_name;