1//! Bramble transport protocol, version 4 2#![warn(missing_docs)] 3 4mod clock; 5mod connection; 6mod crypto; 7mod error; 8 9pub use connection::Connection; 10pub use error::{Error, Result}; 11 12const CURRENT_VERSION: u16 = 4;