distant_net/lib.rs
1#![doc = include_str!("../README.md")]
2
3#[doc = include_str!("../README.md")]
4#[cfg(doctest)]
5pub struct ReadmeDoctests;
6
7mod authentication;
8pub mod client;
9pub mod common;
10pub mod manager;
11pub mod server;
12
13pub use client::{Client, ReconnectStrategy};
14/// Authentication functionality tied to network operations.
15pub use distant_auth as auth;
16pub use server::Server;
17pub use {log, paste};