Disable unnecessary image crate features

TIFF file format and parallel processing of JPEGs are not necessary to
recode avatars.
This commit is contained in:
Alexander Krotov
2020-01-17 19:49:56 +03:00
parent f7b23fb0e2
commit 75b8cfa92e
2 changed files with 4 additions and 80 deletions

View File

@@ -61,7 +61,7 @@ stop-token = { version = "0.1.1", features = ["unstable"] }
mailparse = "0.10.2"
encoded-words = { git = "https://github.com/async-email/encoded-words", branch="master" }
native-tls = "0.2.3"
image = "0.22.3"
image = { version = "0.22.4", default-features=false, features = ["gif_codec", "jpeg", "ico", "png_codec", "pnm", "webp", "bmp"] }
[dev-dependencies]
tempfile = "3.0"