rust-syndication / rss

Library for serializing the RSS web content syndication format
https://crates.io/crates/rss
Apache License 2.0
419 stars 52 forks source link

update `quick_xml` dependency #142

Closed benozol closed 1 year ago

benozol commented 1 year ago

rss is currently using quick_xml in version 0.22 released on Feb 23, 2021. but quick_xml is now available in version 0.26, which brings, among other things, support for many more HTML entities, which otherwise cause errors in rss (e.g., try a feed that contains •).

andy128k commented 1 year ago

API of quick_xml changed a lot and upgrade is not that trivial. Here is a branch for atom crate https://github.com/rust-syndication/atom/pull/67 (rss will be next).

benozol commented 1 year ago

yeah I noticed that, too. great to hear that there's progress in the upgrade (planned). thanks!