From a310cf8842682e81dbc119ba0c55a7df2ff26dbf Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Sat, 10 Apr 2021 16:51:50 +0200 Subject: [PATCH] examples: Remove `features` from `[[bin]]` Solves the following warning: gstreamer-rs/examples/Cargo.toml: unused manifest key: bin.31.features Enabling features when a single bin is built is not supported, and users would have to manually select desired features anyway: -wayland cannot be used in conjunction with -egl thanks to the cfg_if. --- examples/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index a52bd3830..ddd34b717 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -162,7 +162,6 @@ required-features = ["ges"] [[bin]] name = "glupload" required-features = ["gl"] -features = ["gst-gl-egl", "gst-gl-wayland", "gst-gl-x11"] [[bin]] name = "subclass"