[package]
name = "readabilityrs"
version = "0.1.4"
edition = "2021"
authors = ["readabilityrs contributors"]
description = "A Rust port of Mozilla's Readability library for extracting article content from web pages"
license = "Apache-2.0"
rust-version = "1.83"
repository = "https://github.com/theiskaa/readabilityrs"
keywords = ["readability", "parser", "article", "extraction", "html"]
categories = ["parser-implementations", "web-programming"]
readme = "README.md"
[dependencies]
scraper = "0.25"
ego-tree = "0.10"
regex = "1.10"
bitflags = "2.4"
thiserror = "2.0"
url = "2.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
v_htmlescape = "0.15"
[dev-dependencies]
criterion = "0.8.1"
[lib]
name = "readabilityrs"
path = "src/lib.rs"
[[bench]]
name = "readability"
harness = false