aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMariot Tsitoara <[email protected]>2021-01-06 17:32:23 +0100
committerMariot Tsitoara <[email protected]>2021-01-06 17:32:23 +0100
commit0a42f67b3ac10ac27ec7ee1bcf62bc8628c232e0 (patch)
treef83a0f39469cf890be8d42582d5421cded762a43 /Cargo.toml
parentLimit runtime for reloading (diff)
downloadchan-downloader-0a42f67b3ac10ac27ec7ee1bcf62bc8628c232e0.tar.xz
chan-downloader-0a42f67b3ac10ac27ec7ee1bcf62bc8628c232e0.zip
Use concurrent downloadsv0.2.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5472e4d..a8e6bf8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "chan-downloader"
description = "CLI to download all images/webms of a 4chan thread"
-version = "0.1.8"
+version = "0.2.0"
authors = ["Mariot Tsitoara <[email protected]>"]
edition = "2018"
license = "MIT"
@@ -22,8 +22,10 @@ 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"] }