aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMariot Tsitoara <[email protected]>2021-01-02 10:31:21 +0100
committerMariot Tsitoara <[email protected]>2021-01-02 10:31:21 +0100
commit3a3e59a26a8233908f5ab9887501cbe93836a437 (patch)
tree1882ecf827f2c842b6e9ff0cc35cbd51bd5a5842 /Cargo.toml
parentAdd lib examples to README (diff)
downloadchan-downloader-3a3e59a26a8233908f5ab9887501cbe93836a437.tar.xz
chan-downloader-3a3e59a26a8233908f5ab9887501cbe93836a437.zip
Use reqwest blocking client
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9b55de8..d0c9ea7 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.4"
+version = "0.1.5"
authors = ["Mariot Tsitoara <[email protected]>"]
edition = "2018"
license = "MIT"
@@ -24,4 +24,4 @@ clap = {version = "2.33.3", features = ["yaml"]}
indicatif = "0.15.0"
lazy_static = "1.4.0"
regex = "1.4.2"
-reqwest = "0.9.19"
+reqwest = { version = "0.10", features = ["blocking"] }