blob: 1f515d84b08793a610dc55d7cb686d30ada077a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "crawler"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = {version = "0.10.9", features = ["blocking", "json"]}
scraper = "0.12.0"
itertools = "0.10.5"
tokio = { version = "0.2.22", features = ["full"] }
async-channel = "1.7.1"
url = "2.3.1"
rand = "0.7.3"
lib = { path = "../lib" }
[[bin]]
name = "crawler"
path = "src/main.rs"
|