1 #![warn(rust_2018_idioms)] 2 #![allow(dead_code)] 3 4 #[macro_use] 5 extern crate lazy_static; 6 7 pub mod alert; 8 pub mod application_data; 9 pub mod change_cipher_spec; 10 pub mod cipher_suite; 11 pub mod client_certificate_type; 12 pub mod compression_methods; 13 pub mod config; 14 pub mod content; 15 pub mod crypto; 16 pub mod curve; 17 pub mod errors; 18 pub mod extension; 19 pub mod fragment_buffer; 20 pub mod handshake; 21 pub mod prf; 22 pub mod record_layer; 23 pub mod signature_hash_algorithm; 24