durable-streams-server 0.2.0-beta.1

Durable Streams protocol server in Rust, built with axum and tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Durable Streams protocol parsing, validation, and wire-format helpers.
//!
//! Most integrations will use [`error`], [`offset`], and [`producer`].
//! The remaining modules support the HTTP implementation and are kept crate-private
//! to avoid exposing server internals as the primary public surface.

pub(crate) mod cursor;
pub mod error;
pub(crate) mod headers;
pub(crate) mod json_mode;
pub mod offset;
pub mod problem;
pub mod producer;
pub(crate) mod sse;
pub(crate) mod stream_name;