Library for serializing the RSS web content syndication format.
Supported Versions
Reading from the following RSS versions is supported:
RSS 0.90
RSS 0.91
RSS 0.92
RSS 1.0
RSS 2.0
Writing support is limited to RSS 2.0.
Documentation
Released
Master
Usage
Add the dependency to your Cargo.toml.
[dependencies]
rss = "1.0"
The package includes a single crate named rss.
extern crate rss;
Library for serializing the Atom web content syndication format.
Documentation
Usage
Add the dependency to your Cargo.toml.
[dependencies]
atom_syndication = "0.6"
Or, if you want Serde include the feature like this:
[dependencies]
atom_syndication = { version = "0.6", features = ["with-serde"] }
The package includes a single crate named atom_syndication.
extern crate atom_syndication;