-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
43 lines (38 loc) · 952 Bytes
/
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
[package]
name = "visdom"
version = "1.0.2"
edition = "2018"
description = "A html document syntax and operation library, use APIs similar to jquery, easy to use for web scraping and confused html."
keywords = ["html", "scrape", "jquery", "query", "selector"]
authors = ["jxz_211 <[email protected]>"]
homepage = "https://github.com/fefit/visdom"
repository = "https://github.com/fefit/visdom"
documentation = "https://docs.rs/visdom/"
categories = ["web-programming"]
license = "MIT"
exclude = [
".vscode/*.*",
".github/*.*",
".editorconfig",
"src/main.rs",
"performance/*.*",
]
[dependencies]
rphtml = { version = "0.5.10" }
lazy_static = "1.4.0"
thiserror = "1.0.24"
regex = "1.7.0"
[dev-dependencies]
crossbeam = "0.8.0"
criterion = "0.4.0"
[features]
default = []
full = ["text", "insertion", "destroy"]
text = []
insertion = []
destroy = []
[package.metadata.docs.rs]
all-features = true
[[bench]]
name = "benchmark"
harness = false