feed-rs

Build Status Crates.io Status

Library for parsing Atom and RSS.

Documentation

Usage

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"] }

Reading

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();

License

Licensed under either of

at your option.

Contribution

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.