├── .github └── workflows │ ├── build.yml │ ├── clippy.yml │ └── coverage.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── read.rs ├── src └── lib.rs └── test-data ├── atom.xml └── rss.xml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/clippy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/.github/workflows/clippy.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/README.md -------------------------------------------------------------------------------- /examples/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/examples/read.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test-data/atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/test-data/atom.xml -------------------------------------------------------------------------------- /test-data/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-syndication/syndication/HEAD/test-data/rss.xml --------------------------------------------------------------------------------