xspf 0.4.2

straightforward pure rust implementation of the Xml Sharable Playlist Format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use proptest::prelude::*;
use xspf::Playlist;
proptest! {
    #![proptest_config(ProptestConfig::with_cases(50))]
    #[test]
    fn parse_no_panic(src: Vec<u8>) {
        let _ = Playlist::read_from(&mut &src[..]);
    }

    #[test]
    #[cfg(feature = "proptest")]
    fn print_no_panic(playlist: Playlist) {
        let _ = playlist.to_string();
    }
}