A simple command-line RSS feed reader written in Rust.
cargo build --release
cargo run -- add --url "https://news.ycombinator.com/rss"
cargo run -- fetch --url "https://news.ycombinator.com/rss"
cargo run -- fetch --url "https://blog.rust-lang.org/feed.xml" --limit 10
cargo run -- read --id 1
- Hacker News: https://news.ycombinator.com/rss
- Rust Blog: https://blog.rust-lang.org/feed.xml
- BBC News: http://feeds.bbci.co.uk/news/rss.xml
- TechCrunch: https://techcrunch.com/feed/
[dependencies] clap = { version = "4.0", features = ["derive"] } reqwest = { version = "0.11", features = ["json"] } tokio = { version = "1", features = ["full"] } rss = "2.0"