1//! Bramble handshake protocol, version 0 2#![warn(missing_docs)] 3 4mod error; 5mod protocol; 6 7pub use error::{Error, Result}; 8pub use protocol::perform_handshake; 9 10const CURRENT_VERSION: u8 = 0; 11const BETA_VERSION: u8 = 89;