reactive-messaging 0.4.1

Reactive client/server communications, focused on high performance
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]


pub(crate) mod types;
pub(crate) mod config;

pub mod socket_connection;

pub(crate) mod serde;
pub(crate) mod socket_services;
pub mod prelude;

#[cfg(any(test,doc))]
mod unit_test_utils;