From 50a979d7720532947b2d83e3fdf8a0f89ae18439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 26 Jun 2023 14:21:44 +0300 Subject: [PATCH] videofx: Minimize dependencies of the image crate Only the basic infrastructure is needed and none of the decoders/encoders for various image formats. Part-of: --- video/videofx/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/videofx/Cargo.toml b/video/videofx/Cargo.toml index e7ad119a..be3317a8 100644 --- a/video/videofx/Cargo.toml +++ b/video/videofx/Cargo.toml @@ -14,7 +14,7 @@ atomic_refcell = "0.1" once_cell = "1.0" color-thief = "0.2.2" color-name = "1.0.0" -image = "0.24.2" +image = { version = "0.24.2", default-features = false } image_hasher = "1.0.0" dssim-core = { version = "3.2.3", optional = true } rgb = { version = "0.8", optional = true }