feed-parser 2.0.0

A simple RSS 1.0 / RSS 2.0 / Atom feed parser
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "feed-parser"
version = "2.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple RSS 1.0 / RSS 2.0 / Atom feed parser"
homepage = "https://github.com/akitenkrad/rs-feed-parser"
documentation = "https://docs.rs/feed-parser"
readme = "README.md"
keywords = [
    "rss",
    "atom",
    "feed",
    "parser",
    "xml",
]
categories = [
    "parser-implementations",
    "web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/akitenkrad/rs-feed-parser"

[lib]
name = "feed_parser"
path = "src/lib.rs"

[[test]]
name = "error_handling"
path = "tests/error_handling.rs"

[[test]]
name = "text_content"
path = "tests/text_content.rs"

[dependencies.html-escape]
version = "0.2.15"

[dependencies.quick-xml]
version = "0.41.0"
features = ["serialize"]

[dependencies.regex]
version = "1.13.1"

[dependencies.serde]
version = "1.0.229"
features = ["derive"]

[dependencies.thiserror]
version = "2.0.20"