# 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 = "2021" name = "soupy" version = "0.8.3" description = "A library for querying tree-based formats, similar to BeautifulSoup." readme = "README.md" keywords = [ "beautifulsoup", "bs4", "soup", "html", "xml", ] categories = [ "parsing", "web-programming", "text-processing", ] license = "MIT OR Apache-2.0" repository = "https://github.com/hankjordan/soupy" [dependencies.ego-tree] version = "0.6" optional = true [dependencies.nom] version = "7.1" optional = true [dependencies.regex] version = "1.9" optional = true [dependencies.scraper] version = "0.19" optional = true [dependencies.xmltree] version = "0.10" optional = true [features] default = [ "regex", "html", "xml", ] html = [ "html-lenient", "html-strict", ] html-lenient = [ "dep:scraper", "dep:ego-tree", ] html-strict = ["dep:nom"] regex = ["dep:regex"] xml = ["dep:xmltree"]