xref: /webrtc/srtp/src/lib.rs (revision ffe74184)
1 #![warn(rust_2018_idioms)]
2 #![allow(dead_code)]
3 
4 mod cipher;
5 pub mod config;
6 pub mod context;
7 mod error;
8 mod key_derivation;
9 pub mod option;
10 pub mod protection_profile;
11 pub mod session;
12 pub mod stream;
13 
14 pub use error::Error;
15