1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

pub mod config;
pub mod packet;
pub mod starter;

pub extern crate bytes;
pub extern crate variable_len_reader;
#[cfg(feature = "encrypt")]
pub extern crate aes_gcm;