[package] name = "fast_scraper" version = "0.14.5" edition = "2021" description = "HTML parsing and querying with CSS selectors" keywords = ["html", "css", "selector", "scraping"] authors = [ "June McEnroe ", ] license = "ISC" repository = "https://github.com/causal-agent/scraper" readme = "README.md" [dependencies] cssparser = "0.29.6" ego-tree = "0.6.2" html5ever = "0.26" matches = "0.1.10" selectors = "0.24.0" smallvec = "1.10.0" tendril = "0.4.3" indexmap = { version = "1.9.2", optional = true } ahash = "0.8.3" [dependencies.getopts] version = "0.2.21" optional = true [features] default = ["main"] deterministic = ["indexmap"] main = ["getopts"] [[bin]] name = "scraper" path = "src/main.rs" required-features = ["main"]