about summary refs log tree commit diff
path: root/crawler/Cargo.toml
blob: cd828ad9240c77693f9f7a1b11e7c808c8635b5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[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]
blockingqueue = "0.1.1"
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"] }

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