From 85ca732e8c78aadd8ac8575d650db50f6e2c900a Mon Sep 17 00:00:00 2001 From: BonesGit Date: Wed, 9 Sep 2026 20:45:58 -0700 Subject: [PATCH] fix(deps): re-pin whisper-rs-sys to the bindgen 0.72.1 fix cargo kept whisper-rs-sys at eb61d3d8 even after VectorPrivacy/whisper-rs master moved; that commit pins bindgen 0.71, which emits 1-byte stub structs under libclang 22 and breaks the build with E0080. Re-pinned to af034af9 (bindgen 0.72.1, whisper-rs#2). Verified on Arch with clang 22.1.8: bindings regenerate live with full field lists. Fixes #88 --- src-tauri/Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d3c8c620..fb866f0f 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -685,9 +685,9 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.71.1" +version = "0.72.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3" +checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" dependencies = [ "bitflags 2.11.1", "cexpr", @@ -11952,7 +11952,7 @@ dependencies = [ [[package]] name = "whisper-rs-sys" version = "0.14.1" -source = "git+https://github.com/VectorPrivacy/whisper-rs.git?branch=master#eb61d3d8d4127619aedbca7ae35864ad5079d465" +source = "git+https://github.com/VectorPrivacy/whisper-rs.git?branch=master#af034af965be1ed46540b9c4158aa5040cdbafe9" dependencies = [ "bindgen", "cfg-if",