From 0a3ffdafe62303aac6e882c029cf1dea29f60c35 Mon Sep 17 00:00:00 2001 From: Josh Holmer Date: Mon, 13 Mar 2023 04:00:17 -0400 Subject: [PATCH] Add ffmpeg 6 support (#729) Closes #728 --- Cargo.lock | 8 ++++---- av1an-core/Cargo.toml | 2 +- av1an/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a7b969..76c1465 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -597,9 +597,9 @@ dependencies = [ [[package]] name = "ffmpeg-sys-the-third" -version = "1.0.2+ffmpeg-5.1.2" +version = "1.1.1+ffmpeg-6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aba6e39e3bb60cc687e4be01ad5eefa1e42505f0b220c267e0e2c3d83280f642" +checksum = "94a4b2e9c02074c0ee85661b23b3ac849bad6afc554b503c183975f5e2e0d3de" dependencies = [ "bindgen", "cc", @@ -611,9 +611,9 @@ dependencies = [ [[package]] name = "ffmpeg-the-third" -version = "1.1.2+ffmpeg-5.1.2" +version = "1.2.2+ffmpeg-6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad99f870dcc508647be4efc47e8d96b8dd0b92060442afff37a9a2ff7e59160a" +checksum = "301c55f432cce71d0cc5266e8e70e69cc7a865f8aa8785c44cb56c3935a13715" dependencies = [ "bitflags", "ffmpeg-sys-the-third", diff --git a/av1an-core/Cargo.toml b/av1an-core/Cargo.toml index f187219..798f7a0 100644 --- a/av1an-core/Cargo.toml +++ b/av1an-core/Cargo.toml @@ -63,7 +63,7 @@ features = ["const_generics", "const_new", "union"] [dependencies.ffmpeg] package = "ffmpeg-the-third" -version = "1.1.2" +version = "1.2.0" features = ["serialize"] [dependencies.plotters] diff --git a/av1an/Cargo.toml b/av1an/Cargo.toml index bc4ba70..ffa3c1e 100644 --- a/av1an/Cargo.toml +++ b/av1an/Cargo.toml @@ -40,7 +40,7 @@ features = ["git", "build", "rustc", "cargo"] [dependencies.ffmpeg] package = "ffmpeg-the-third" -version = "1.1.2" +version = "1.2.0" features = ["serialize"] [features]