Registry / utility / rss
library2.0.13rscratesunverified

Library for serializing and deserializing the RSS web content syndication format.

# Cargo.toml [dependencies] rss = "2.0.13"
INSTALL
IMPORT
SIG · RSS
R
rss
utilityrustv2.0.13
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Channel
use rss::Channel;

Fetches and parses an RSS feed, printing item titles.

use rss::Channel; fn main() -> Result<(), Box<dyn std::error::Error>> { let channel = Channel::from_url("https://example.com/feed.xml")?; for item in channel.items() { println!("Title: {:?}", item.title()); } Ok(())
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.0.13latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources
rss — cargo add rss · libregistry