-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "dom_finder"
version = "0.4.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "HTML parsing with CSS seletors"
repository = "https://github.com/niklak/dom_finder"
documentation = "https://docs.rs/dom_finder/latest"
keywords = ["html", "css", "selectors", "scraping", "parser"]
authors = ["Mykola Humanov <[email protected]>"]
readme = "README.md"
rust-version = "1.65"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "2.0.7"
serde_yaml = "0.9.33"
serde = {version = "1.0", features = ["derive"]}
regex = "1.11.1"
dom_query = {version = "0.12.0", features = ["hashbrown"]}
tendril = "0.4.3"
gjson = "0.8.1"
html-escape = "0.2.13"
once_cell = "1.20.2"
hashbrown = {version = "0.15.2", default-features = false, features = ["allocator-api2", "inline-more", "serde", "default-hasher"]}
# optional dependencies
serde_json = {version = "1.0.133", optional = true}
[features]
json_cfg = ["dep:serde_json"]
[dev-dependencies]
crossbeam-channel = "0.5.14"