From f15408ccefe47d9a3b3bf0d8762bc9fc541bac6d Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Sat, 8 Aug 2020 01:33:37 +0800 Subject: [PATCH] crate: drop ffmpeg43 from default features Following the deprecation plan (now that master branch has been bumped to v4.4). --- Cargo.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7a1094a..1efb46e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,13 +15,12 @@ keywords = ["ffmpeg", "multimedia", "video", "audio"] categories = ["multimedia"] [features] -default = ["ffmpeg43", "codec", "device", "filter", "format", "software-resampling", "software-scaling"] +default = ["codec", "device", "filter", "format", "software-resampling", "software-scaling"] # ffmpeg are obsolete features kept for backward compatibility purposes and # don't do anything anymore (equivalents are automatically specified through -# compile-time detection in ffmpeg-sys-next). Deprecation plan: ffmpeg43 will be -# dropped from default features come 4.4, and all these features will be removed -# come 5.0. +# compile-time detection in ffmpeg-sys-next). Deprecation plan: all these +# features will be removed come 5.0. ffmpeg43 = [] ffmpeg42 = [] ffmpeg41 = []