blob: a8e6bf8fc951a4692c3bf3e3c5840e8d9f86b3ce (
plain) (
blame)
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
|
[package]
name = "chan-downloader"
description = "CLI to download all images/webms of a 4chan thread"
version = "0.2.0"
authors = ["Mariot Tsitoara <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mariot/chan-downloader"
repository = "https://github.com/mariot/chan-downloader"
keywords = ["cli", "4chan", "download", "downloader", "crawler"]
categories = ["command-line-utilities"]
[lib]
name = "chan_downloader"
path = "src/lib.rs"
[[bin]]
name = "chan-downloader"
path = "src/bin.rs"
[dependencies]
clap = {version = "2.33.3", features = ["yaml"]}
env_logger = "0.8.2"
futures = "0.3"
indicatif = "0.15.0"
lazy_static = "1.4.0"
log = "0.4.11"
regex = "1.4.2"
reqwest = { version = "0.10", features = ["blocking"] }
tokio = { version = "0.2", features = ["full"] }
|