forked from spider-rs/spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (45 loc) · 1022 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
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "spider_examples"
version = "1.32.3"
authors = ["madeindjs <[email protected]>", "j-mendez <[email protected]>"]
description = "Multithreaded web crawler written in Rust."
repository = "https://github.com/spider-rs/spider"
readme = "README.md"
keywords = ["crawler", "spider"]
categories = ["web-programming"]
license = "MIT"
documentation = "https://docs.rs/spider"
publish = false
edition = "2018"
[badges]
maintenance = { status = "as-is" }
[dev-dependencies]
convert_case = "0.5.0"
env_logger = "0.9.0"
htr = "0.5.27"
flexbuffers = "2.0.0"
[dependencies.spider]
version = "1.32.3"
path = "../spider"
features = ["serde"]
[[example]]
name = "example"
path = "example.rs"
[[example]]
name = "scrape"
path = "scrape.rs"
[[example]]
name = "debug"
path = "debug.rs"
[[example]]
name = "download"
path = "download.rs"
[[example]]
name = "download_to_react"
path = "download_to_react.rs"
[[example]]
name = "callback"
path = "callback.rs"
[[example]]
name = "serde"
path = "serde.rs"