yt-feed-xml 0.2.2

A crate used to parse data from Youtube's XML feeds. WIP USE AT YOUR OWN RISK.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod channel;
mod playlist;
mod user;
mod video;
mod xml_feed;

pub use channel::Channel;
pub use playlist::Playlist;
pub use user::User;
pub use video::Video;

#[cfg(test)]
mod tests {
    #[test]
    fn test_setup() {
        color_eyre::install().expect("color_eyre::install can only be called once");
    }
}