feed-parser 2.0.0

A simple RSS 1.0 / RSS 2.0 / Atom feed parser
Documentation
[tasks.test]
args = [
    "nextest",
    "run",
    "--workspace",
    "--status-level",
    "all",
    "--test-threads=1",
]
command = "cargo"
install_crate = { crate_name = "cargo-nextest", binary = "cargo", test_arg = [
    "nextest",
    "--help",
] }

[tasks.fmt]
args = ["fmt", "--all"]
command = "cargo"

[tasks.fmt-check]
args = ["fmt", "--all", "--check"]
command = "cargo"

[tasks.lint]
args = ["clippy", "--all-targets", "--all-features", "--", "-D", "warnings"]
command = "cargo"

# Doctests are not run by nextest, so run them separately.
[tasks.doctest]
args = ["test", "--doc", "--all-features"]
command = "cargo"

# Mirrors the checks that CI runs.
[tasks.ci]
dependencies = ["fmt-check", "lint", "test", "doctest"]