Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-06-26 14:21:44 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-07-05 14:41:21 +0300
commit8fc469b8e0fdb01fbd94c617a46cf28728c87685 (patch)
tree86e521253c8868ba1830b6c5ab24bc60f2cd1271 /video
parentc74def0b12c4414dcd6da85dd14fba9f637110e6 (diff)
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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1267>
Diffstat (limited to 'video')
-rw-r--r--video/videofx/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/videofx/Cargo.toml b/video/videofx/Cargo.toml
index ba2debd3d..43ef232e4 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 }