netapp/src/lib.rs
Alex f87dbe73dc
Some checks failed
continuous-integration/drone/push Build is failing
WIP v0.3.0 with changed API
2021-10-12 17:59:46 +02:00

31 lines
849 B
Rust

//! Netapp is a Rust library that takes care of a few common tasks in distributed software:
//!
//! - establishing secure connections
//! - managing connection lifetime, reconnecting on failure
//! - checking peer's state
//! - peer discovery
//! - query/response message passing model for communications
//! - multiplexing transfers over a connection
//! - overlay networks: full mesh, and soon other methods
//!
//! Of particular interest, read the documentation for the `netapp::NetApp` type,
//! the `message::Message` trait, and `proto::RequestPriority` to learn more
//! about message priorization.
//! Also check out the examples to learn how to use this crate.
#![feature(map_first_last)]
pub mod error;
pub mod util;
pub mod endpoint;
pub mod proto;
mod conn;
pub mod netapp;
pub mod peering;
pub use netapp::*;
pub use util::NodeID;