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

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