feedparser-rs 0.5.3

High-performance RSS/Atom/JSON Feed parser
Documentation
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Test Feed with Issues</title>
    <link>https://example.com/bad-feed</link>
    <description>This feed has various malformations to test error handling</description>

    <item>
      <title>Post with unclosed tag</title>
      <link>https://example.com/post1
      <description>Missing closing link tag</description>
      <pubDate>Invalid date format here</pubDate>
    </item>

    <item>
      <title>Post with invalid entity: &#xFFFF;</title>
      <link>https://example.com/post2</link>
      <description>Contains invalid XML character</description>
    </item>

    <item>
      <title>Normal Post</title>
      <link>https://example.com/post3</link>
      <description>This one is fine</description>
      <pubDate>Sat, 28 Dec 2024 12:00:00 GMT</pubDate>
    </item>
  </channel>
</rss>