Library for serializing Atom and RSS web feeds. Wraps around rust-atomrust-rss.
Usage
Reading
```rust
use syndication::Feed;
let atom_str = r#"
urn:uuid:b3420f84-6bdf-4f46-a225-f1b9a14703b6TechCrunch2019-04-01T07:30:00Zurn:uuid:4ae8550b-2987-49fa-9f8c-54c180c418acFord hires Elon Musk as CEO2019-04-01T07:30:00Z
"#;
let Feed::Atom(atomfeed) = atomstr.parse::().unwrap();
let rss_str = r#"
TechCrunch
http://techcrunch.com
The latest technology news and information on startupsFord hires Elon Musk as CEO01 Apr 2019 07:30:00 GMTIn an unprecedented move, Ford hires Elon Musk.
"#;
let Feed::RSS(rssfeed) = rssstr.parse::().unwrap();
```