feedparser-rs 0.2.0

High-performance RSS/Atom/JSON Feed parser
Documentation
[[bench]]
harness = false
name = "parsing"
path = "benches/parsing.rs"

[dependencies.ammonia]
version = "4.1"

[dependencies.chrono]
default-features = false
features = ["std", "clock"]
version = "0.4"

[dependencies.encoding_rs]
version = "0.8"

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

[dependencies.memchr]
version = "2.7"

[dependencies.quick-xml]
version = "0.38"

[dependencies.regex]
version = "1.11"

[dependencies.reqwest]
default-features = false
features = ["blocking", "gzip", "deflate", "brotli", "rustls-tls"]
optional = true
version = "0.12"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.url]
version = "2.5"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8"

[dev-dependencies.flate2]
version = "1.1"

[dev-dependencies.mockito]
version = "1.6"

[features]
default = ["http"]
http = ["dep:reqwest"]

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

[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
too_many_lines = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unsafe_code = "warn"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing", "web-programming"]
description = "High-performance RSS/Atom/JSON Feed parser"
edition = "2024"
keywords = ["rss", "atom", "feed", "parser", "feedparser"]
license = "MIT OR Apache-2.0"
name = "feedparser-rs"
readme = "README.md"
repository = "https://github.com/bug-ops/feedparser-rs"
resolver = "2"
rust-version = "1.88.0"
version = "0.2.0"

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

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

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

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