ruststream 0.4.0

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
use ruststream::app;

// The app builder takes no arguments; it just constructs and returns the application.
#[app]
fn build(flag: u8) -> u8 {
    flag
}

fn main() {}