ruststream 0.2.4

Async messaging framework for Rust: broker-agnostic traits, router, codecs, and a conformance harness for broker authors.
Documentation
1
2
3
4
5
6
7
8
9
//! Conformance harness for broker authors.
//!
//! Any broker implementation can run itself through [`harness`] in one line to prove it
//! satisfies the contract defined by the core traits. The harness runs against the
//! reference [`crate::memory::MemoryBroker`], which lives in the always-available `memory`
//! module so applications can use it without the conformance feature.

pub mod harness;
pub mod helpers;