m3u8-rs/src/lib.rs
Sebastian Dröge 5500166f74 Fix confusing #[path] usage and re-exports in lib.rs
This has effectively the same behaviour now with fewer lines, less
confusion and fewer compiler warnings about unused code.
2021-11-17 19:32:57 +02:00

8 lines
111 B
Rust

pub mod playlist;
#[cfg(feature = "parser")]
mod parser;
#[cfg(feature = "parser")]
pub use self::parser::*;