wireframe 0.3.0

Simplify building servers and clients for custom binary protocols.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Application builder configuring routes and middleware.
//! [`WireframeApp`] is an Actix-inspired builder for managing connection
//! state, routing, and middleware in a `WireframeServer`. It exposes
//! convenience methods to register handlers and lifecycle hooks, and
//! serializes messages using a configurable serializer.

mod codec;
mod config;
mod core;
mod lifecycle;
mod protocol;
mod routing;
mod state;

pub use core::WireframeApp;