about summary refs log tree commit diff
path: root/crawler/Cargo.toml
blob: 16d7b4146d6b78a09a4d537d6899ded67eae98b9 (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.11", features = ["blocking", "json"]}
scraper = "0.12.0"
itertools = "0.10.5"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2.22", features = ["full"] }
async-channel = "1.7.1"
url = "2.3.1"
rand = "0.7.3"

[[bin]]
name = "crawler"
path = "src/main.rs"