diff options
| author | Mariot Tsitoara <[email protected]> | 2021-01-02 10:31:21 +0100 |
|---|---|---|
| committer | Mariot Tsitoara <[email protected]> | 2021-01-02 10:31:21 +0100 |
| commit | 3a3e59a26a8233908f5ab9887501cbe93836a437 (patch) | |
| tree | 1882ecf827f2c842b6e9ff0cc35cbd51bd5a5842 /Cargo.toml | |
| parent | Add lib examples to README (diff) | |
| download | chan-downloader-3a3e59a26a8233908f5ab9887501cbe93836a437.tar.xz chan-downloader-3a3e59a26a8233908f5ab9887501cbe93836a437.zip | |
Use reqwest blocking client
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"] } |