rust-syndication

Library for serializing Atom and RSS web feeds. Wraps around rust-atom rust-rss.

Usage

Reading

```rust use syndication::Feed;

let atom_str = r#" urn:uuid:b3420f84-6bdf-4f46-a225-f1b9a14703b6 TechCrunch 2019-04-01T07:30:00Z urn:uuid:4ae8550b-2987-49fa-9f8c-54c180c418ac Ford hires Elon Musk as CEO 2019-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 startups Ford hires Elon Musk as CEO 01 Apr 2019 07:30:00 GMT In an unprecedented move, Ford hires Elon Musk. "#;

let Feed::RSS(rssfeed) = rssstr.parse::().unwrap(); ```

Writing

Currently not supported.

Todo