mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2024-12-22 14:36:28 +00:00
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.
This commit is contained in:
parent
4e6ac58d0c
commit
5500166f74
2 changed files with 0 additions and 4 deletions
|
@ -1,7 +1,5 @@
|
|||
#[path = "playlist.rs"]
|
||||
pub mod playlist;
|
||||
|
||||
#[path = "parser.rs"]
|
||||
#[cfg(feature = "parser")]
|
||||
mod parser;
|
||||
|
||||
|
|
|
@ -74,8 +74,6 @@
|
|||
//!
|
||||
//! ```
|
||||
|
||||
pub mod playlist;
|
||||
|
||||
use nom::branch::alt;
|
||||
use nom::bytes::complete::{is_a, is_not, tag, take, take_until, take_while1};
|
||||
use nom::character::complete::{
|
||||
|
|
Loading…
Reference in a new issue