rtc_shared/lib.rs
1#![warn(rust_2018_idioms)]
2#![allow(dead_code)]
3
4#[cfg(feature = "crypto")]
5pub mod crypto;
6
7#[cfg(feature = "marshal")]
8pub mod marshal;
9
10#[cfg(feature = "replay")]
11pub mod replay_detector;
12
13pub mod error;
14pub mod time;
15pub(crate) mod transport;
16pub mod util;
17
18pub use transport::{
19 EcnCodepoint, FiveTuple, FourTuple, TaggedBytesMut, TransportContext, TransportMessage,
20 TransportProtocol,
21};