forked from rust-scraper/scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (36 loc) · 886 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 = "scraper"
version = "0.16.0"
edition = "2021"
description = "HTML parsing and querying with CSS selectors"
keywords = ["html", "css", "selector", "scraping"]
authors = [
"June McEnroe <[email protected]>",
]
license = "ISC"
repository = "https://github.com/causal-agent/scraper"
readme = "README.md"
[dependencies]
cssparser = "0.29.6"
ego-tree = "0.6.2"
html5ever = "0.26"
selectors = "0.24.0"
smallvec = "1.10.0"
tendril = "0.4.3"
ahash = "0.8"
indexmap = { version = "1.9.3", optional = true }
once_cell = "1.0"
tealr = {version="0.9.0-alpha1", features=["mlua", "mlua_lua54", "mlua_vendored", "mlua_async"]}
[dependencies.getopts]
version = "0.2.21"
optional = true
[features]
default = ["main", "errors"]
deterministic = ["indexmap"]
main = ["getopts"]
atomic = []
errors = []
[[bin]]
name = "scraper"
path = "src/main.rs"
required-features = ["main"]