volans 0.1.0

Volans networking framework
Documentation
pub use volans_core as core;

pub use core::Transport;

#[cfg(feature = "swarm")]
pub use volans_swarm as swarm;

// transports
#[cfg(feature = "tcp")]
pub use volans_tcp as tcp;

#[cfg(feature = "ws")]
pub use volans_ws as ws;

#[cfg(feature = "plaintext")]
pub use volans_plaintext as plaintext;

// protocols
#[cfg(feature = "ping")]
pub use volans_ping as ping;

// multiplexing
#[cfg(feature = "muxing")]
pub use volans_muxing as muxing;