-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 836 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 = "spider-crab"
version = "1.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-recursion = "1.0.5"
clap = "4.4.7"
futures = "0.3.29"
petgraph = "0.6.4"
reqwest = { version = "0.11.22", features = ["gzip", "deflate", "brotli"] }
scraper = "0.18.1"
stderrlog = "0.5.4"
log = "0.4.20"
tokio = { version = "1.34.0", features = ["macros"] }
url = "2.4.1"
derive_builder = "0.12.0"
enum-iterator = "1.4.1"
[target.lib.dependencies]
async-recursion = "1.0.5"
clap = "4.4.7"
futures = "0.3.29"
petgraph = "0.6.4"
reqwest = "0.11.22"
scraper = "0.18.1"
tokio = { version = "1.34.0", features = ["macros"] }
url = "2.4.1"
[lib]
path = "src/lib.rs"
[[bin]]
name = "spider-crab"
path = "src/main.rs"
[dev-dependencies]
mockito = "1.2.0"