-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 739 Bytes
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
[package]
name = "nipper"
version = "0.1.9"
description = "HTML manipulation with CSS seletors"
license = "MIT/Apache-2.0"
repository = "https://github.com/importcjj/nipper"
documentation = "https://docs.rs/nipper/latest"
keywords = ["html", "css", "selector", "scraping", "crawler"]
authors = ["importcjj <importcjj@gmail.com>"]
edition = "2018"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
html5ever = "0.25.1"
selectors = "0.22.0"
cssparser = "0.27.2"
tendril = "0.4.2"
markup5ever = "0.10.0"
[dev-dependencies]
reqwest = { version = "0.11.3", features = ["blocking"] }
regex = "1.4.5"
lazy_static = "1.4.0"
readability = "0.2.0"
url = "2.2.1"