rss-gen 0.0.6

A Rust library for generating, serializing, and deserializing RSS feeds for various RSS versions.
Documentation
# Codecov config for rss-gen
#
# Both the patch and project gates are informational ("informational:
# true"). They surface in the PR summary so reviewers see the number,
# but they do NOT block merges. The CI gates that DO block (clippy,
# fmt, tests, Miri, MSRV, cross-OS matrix, audit, cargo-deny, CodeQL)
# live in .github/workflows/ci.yml.
#
# Coverage exclusions match the cargo-llvm-cov invocation in
# .github/workflows/ci.yml so the two views agree.

coverage:
  status:
    project:
      default:
        target: auto
        threshold: 2%
        informational: true
    patch:
      default:
        target: auto
        threshold: 5%
        informational: true

ignore:
  - "tests/**"
  - "examples/**"
  - "benches/**"
  - "fuzz/**"

comment:
  layout: "reach, diff, flags, files"
  behavior: default
  require_changes: false