syndication icon indicating copy to clipboard operation
syndication copied to clipboard

Library for serializing Atom and RSS web feeds

Results 5 syndication issues
Sort by recently updated
recently updated
newest added

This is a first attempt at defining a common structure for both Atom and RSS feeds. It's not complete yet, and it doesn't provide the best round trip guarantees right...

This is on your TODO list—I've started doing some work on it for my own use, so I want to put this here to officially note my interest, the PR...

Currently, `cargo check` command prints following warning: ``` warning: the following packages contain code that will be rejected by a future version of Rust: quick-xml v0.12.4, quick-xml v0.20.0 note: to...

style: fix all `clippy` lints Suggestions were found by running cargo clippy --all-targets --all-features -- -D warnings using clippy 0.1.69 (84c898d 2023-04-16) --- build(deps): update `atom_syndication` to v0.12

The current example code has the following compile error. ``` error[E0616]: field `entries` of struct `atom_syndication::feed::Feed` is private --> src/main.rs:20:63 | 20 | println!("Atom feed first entry: {:?}", atom_feed.entries[0].title) |...