From 010fb0e48e4ad92a42b09f967d8fca4ae6f99d6d Mon Sep 17 00:00:00 2001 From: mark kusper Date: Sun, 21 Jul 2024 18:13:29 -0500 Subject: [PATCH] patch rusty_ffmpeg to allow vcpkg on linux --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3d2c1db..412c20e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,10 +12,11 @@ log = "0.4.22" # TODO: upgrade to ffmpeg7 once in vcpkg # see: https://github.com/microsoft/vcpkg/pull/38011 rsmpeg = { version = "0.15.1", default-features = false, features = ["ffmpeg6"] } +rusty_ffmpeg = { version = "0.14.1", features = ["link_vcpkg_ffmpeg"] } syslog = "6.1.1" [patch.crates-io] -rusty_ffmpeg = { git = "https://github.com/ns-mkusper/rusty_ffmpeg.git", branch = "enable-non-windows-vcpkg" } +rusty_ffmpeg = { git = "https://github.com/ns-mkusper/rusty_ffmpeg.git", branch = "enable-non-windows-vcpkg" } [package.metadata.vcpkg] dependencies = ["ffmpeg[x264,vpx]", "x264[asm,core,default-features]"]