5 个不稳定版本
使用旧的 Rust 2015
0.3.2 | 2016年9月4日 |
---|---|
0.3.1 | 2016年8月28日 |
0.3.0 | 2016年8月28日 |
0.2.0 | 2016年8月24日 |
0.1.0 | 2016年8月21日 |
97 在 #feed
50KB
1K SLoC
rss-rs
该项目已迁移到 rust-syndication/rss
.
lib.rs
:
快速 RSS 喂送解析器。
阅读
可以使用实现 BufRead
特性的任何对象进行阅读。
示例
use std::fs::File;
use std::io::BufReader;
use rss::Channel;
let file = File::open("example.xml").unwrap();
let reader = BufReader::new(file);
let channel = Channel::read_from(reader).unwrap();
依赖项
~1MB
~21K SLoC