-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
40 lines (35 loc) · 923 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
[package]
name = "voyager"
version = "0.2.1"
authors = ["Matthias Seitz <matthias.seitz@outlook.de>"]
edition = "2021"
description = "Web crawler and scraper"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/mattsse/voyager"
repository = "https://github.com/mattsse/voyager"
keywords = ["scraping", "crawling", "html"]
categories = ["web-programming"]
[dependencies]
html5ever = "0.25"
scraper = "0.12"
reqwest = { version = "0.11", default-features = false }
futures = "0.3"
rand = "0.8"
anyhow = "1.0"
tokio = { version = "1.15", features = ["full"], optional = true }
futures-timer = "3.0"
thiserror = "1.0"
robotstxt = "0.3"
[[example]]
name = "reddit"
required-features = ["tokio"]
[[example]]
name = "hackernews"
required-features = ["tokio"]
[[example]]
name = "explore"
required-features = ["tokio"]
[features]
default = ["reqwest/default"]
rustls-tls = ["reqwest/rustls-tls"]