From b23133e43c25fe2dec2fc4fcf6c1e19de3110942 Mon Sep 17 00:00:00 2001 From: Josh Holmer Date: Mon, 23 Jan 2023 10:16:46 -0500 Subject: [PATCH] Update bindgen as far as we can without it breaking which they didn't document whatever caused enums to break in 0.62 --- ffmpeg-sys-the-third/Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ffmpeg-sys-the-third/Cargo.toml b/ffmpeg-sys-the-third/Cargo.toml index a068849..6f0dce3 100644 --- a/ffmpeg-sys-the-third/Cargo.toml +++ b/ffmpeg-sys-the-third/Cargo.toml @@ -4,7 +4,11 @@ version = "1.0.0+ffmpeg-5.1.2" build = "build.rs" links = "ffmpeg" -authors = ["meh. ", "Zhiming Wang "] +authors = [ + "meh. ", + "Zhiming Wang ", + "Josh Holmer ", +] license = "WTFPL" description = "FFI bindings to FFmpeg" @@ -22,7 +26,7 @@ libc = "0.2" num_cpus = "1.11" cc = "1.0" pkg-config = "0.3" -bindgen = { version = "0.59", default-features = false, features = ["runtime"] } +bindgen = { version = "0.61", default-features = false, features = ["runtime"] } [target.'cfg(target_env = "msvc")'.build-dependencies] vcpkg = "0.2"