| # 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 = "2018" |
| name = "html_parser" |
| version = "0.7.0" |
| authors = ["Mathias Iversen <[email protected]>"] |
| description = "A simple and general purpose html/xhtml parser" |
| readme = "README.md" |
| keywords = [ |
| "html", |
| "parser", |
| "json", |
| "pest", |
| "dom", |
| ] |
| categories = [ |
| "parsing", |
| "web-programming", |
| ] |
| license = "MIT" |
| repository = "https://github.com/mathiversen/html-parser" |
| |
| [[example]] |
| name = "get_all_href" |
| path = "examples/get_all_href/main.rs" |
| |
| [[example]] |
| name = "simple_parser" |
| path = "examples/simple_parser/main.rs" |
| |
| [[bench]] |
| name = "bench_wikipedia" |
| harness = false |
| |
| [dependencies.doc-comment] |
| version = "0.3.3" |
| |
| [dependencies.pest] |
| version = "2.5.7" |
| |
| [dependencies.pest_derive] |
| version = "2.5.7" |
| |
| [dependencies.serde] |
| version = "1.0.159" |
| features = ["derive"] |
| |
| [dependencies.serde_derive] |
| version = "1.0.159" |
| |
| [dependencies.serde_json] |
| version = "1.0.95" |
| |
| [dependencies.thiserror] |
| version = "1.0.40" |
| |
| [dev-dependencies.clap] |
| version = "4.2.1" |
| features = ["derive"] |
| |
| [dev-dependencies.criterion] |
| version = "0.4.0" |
| |
| [dev-dependencies.indoc] |
| version = "2.0.1" |
| |
| [dev-dependencies.insta] |
| version = "1.29.0" |
| features = ["json"] |
| |
| [dev-dependencies.reqwest] |
| version = "0.11.16" |
| features = [ |
| "blocking", |
| "rustls-tls", |
| ] |
| |
| [dev-dependencies.tempfile] |
| version = "3.5.0" |