pjson-rs 0.7.0

Priority JSON Streaming Protocol - high-performance priority-based JSON streaming (requires nightly Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Route handler groups for the Axum HTTP adapter, split by domain concept.
//!
//! Shared state ([`PjsAppState`](super::axum_adapter::PjsAppState)), router
//! assembly, and error mapping live in [`super::axum_adapter`]; this module
//! only holds the individual `async fn` handlers grouped by the resource they
//! serve.

#[cfg(all(feature = "compression", not(target_arch = "wasm32")))]
pub mod dictionary;
pub(crate) mod health;
pub(crate) mod sessions;
pub(crate) mod streams;