net_stream/
lib.rs

1//! Server/client TCP+UDP networking abstraction library with framing and
2//! serialization built-in.
3
4#![deny(clippy::mod_module_files)]
5#![warn(missing_docs)]
6
7// Enable when the RFC is implemented, see <https://github.com/rust-lang/rust/issues/44663>
8// #![feature(public_private_dependencies)]
9
10pub mod client;
11pub mod server;
12
13pub use message_types::MessageTypes;
14
15mod actors;
16mod message_types;
17mod networking {
18    pub(crate) mod tcp;
19    pub(crate) mod udp;
20}
21mod stream_ext;