aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2020-02-19 12:27:22 +0100
committerDaniel Schadt <kingdread@gmx.de>2020-02-19 12:27:22 +0100
commite8ce405349f2473e1353632bd455261b8ef9d479 (patch)
tree352831bea489dc0be4e40a9edc0320df6932f0c9 /src/api
parente3591f9f2ba4202ae570bda457e0a9e43e91b9e7 (diff)
downloadkondou-e8ce405349f2473e1353632bd455261b8ef9d479.tar.gz
kondou-e8ce405349f2473e1353632bd455261b8ef9d479.tar.bz2
kondou-e8ce405349f2473e1353632bd455261b8ef9d479.zip
update dependencies
image should also be updated to 0.23, but imageproc currently still uses 0.22, so we need to match it.
Diffstat (limited to 'src/api')
-rw-r--r--src/api/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/mod.rs b/src/api/mod.rs
index c4aa1f7..1d069cd 100644
--- a/src/api/mod.rs
+++ b/src/api/mod.rs
@@ -16,7 +16,7 @@ pub use self::{
use image::DynamicImage;
use itertools::Itertools;
-use reqwest::{Client, StatusCode, Url};
+use reqwest::{blocking::Client, StatusCode, Url};
use serde::{de::DeserializeOwned, Serialize};
use std::{error::Error, fmt, path::Path};
@@ -72,7 +72,7 @@ where
fn ensure_found(self) -> Result<Self, ApiError>;
}
-impl ApiResponse for reqwest::Response {
+impl ApiResponse for reqwest::blocking::Response {
fn ensure_found(self) -> Result<Self, ApiError> {
if self.status() == StatusCode::PARTIAL_CONTENT || self.status() == StatusCode::NOT_FOUND {
Err(ApiError::ItemNotFound)