-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
44 lines (38 loc) · 1.17 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
37
38
39
40
41
42
43
44
[package]
name = "dom_query"
version = "0.15.1"
description = "HTML querying and manipulation with CSS selectors"
license = "MIT"
repository = "https://github.com/niklak/dom_query"
documentation = "https://docs.rs/dom_query/latest"
keywords = ["html", "css", "selectors", "scraping", "parser"]
authors = ["niklak <[email protected]>","importcjj <[email protected]>"]
edition = "2021"
readme = "README.md"
rust-version = "1.65"
exclude = [".*", "test-pages"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
html5ever = "0.29.1"
selectors = "0.26.0"
cssparser = "0.34.0"
tendril = "0.4.3"
foldhash = "0.1.4"
hashbrown = {version = "0.15.2", default-features = false, features = ["allocator-api2", "inline-more", "default-hasher"], optional = true}
precomputed-hash = "0.1.1"
bit-set = "0.8.0"
nom = {version = "8.0.0", optional = true}
[dev-dependencies]
wasm-bindgen-test = "0.3"
alloc_cat = "1.0.0"
[features]
hashbrown = ["dep:hashbrown"]
atomic = []
markdown = []
mini_selector = ["dep:nom"]
[[example]]
name = "send_document"
required-features = ["atomic"]
[[example]]
name = "markdown"
required-features = ["markdown"]