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-06-26 14:21:44 +0300
commitbbb88da9e031701a45489b668fcf27caa3285d23 (patch)
treef8808e9c44e155fc0e671935f12bc209ed2b5909 /video
parentf481bb74c4ab3e111103581e84a2314fb26757a9 (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/1260>
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 e50b801b4..0f2ef92ad 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 }