pjson-rs 0.5.2

Priority JSON Streaming Protocol - high-performance priority-based JSON streaming (requires nightly Rust)
Documentation
//! Infrastructure layer - External concerns and adapters
//!
//! Implements infrastructure adapters for databases, HTTP servers,
//! message queues, WebSocket transport, and other external systems.

pub mod adapters;
#[cfg(feature = "http-server")]
pub mod http;
pub mod integration;
pub mod repositories;
pub mod schema_repository;
pub mod services;
#[cfg(feature = "http-server")]
pub mod websocket;

pub use adapters::*;
#[cfg(feature = "http-server")]
pub use http::*;
pub use integration::*;
pub use schema_repository::SchemaRepository;
pub use services::*;
#[cfg(feature = "http-server")]
pub use websocket::*;