Library for parsing Atom and RSS.
Add the dependency to your Cargo.toml
.
toml
[dependencies]
feed-rs = "0.2.0"
Or, if you want Serde include the feature like this:
toml
[dependencies]
feed-rs = { version = "0.2.0", features = ["serde"] }
A feed can be parsed from any object that implements the Read
trait.
rust
use feed_rs::parser;
let xml = r#"
<feed>
<title type="text">sample feed</title>
<updated>2005-07-31T12:29:29Z</updated>
<id>feed1</id>
<entry>
<title>sample entry</title>
<id>entry1</id>
</entry>
</feed>
"#;
let feed = parser::parse(xml.as_bytes()).unwrap();
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.