the-fourth-server 0.3.4

A lightweight tcp server/client pair for network programming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod util;
pub mod structures;
#[cfg(not(target_arch = "wasm32"))]
pub mod server;
pub mod client;
pub mod codec;
pub(crate) mod log_macros;

pub use bincode;
pub use sha2;
pub use async_trait;
pub use tokio;
pub use tokio_util;
pub use futures_util;
pub use rand;
#[cfg(not(target_arch = "wasm32"))]
pub use tokio_rustls;