From 5a47f57d1f49515999c1371638e556f23ead43b6 Mon Sep 17 00:00:00 2001 From: Muhammad Ayyan Khan Date: Sun, 6 Sep 2026 18:26:42 +0500 Subject: [PATCH] deps: bump whisper-rs from 0.13 to 0.16 whisper-rs 0.13's FFI bindings no longer match whisper.cpp's whisper_full_params struct, causing 71 compilation errors on current Rust stable toolchains. Bumps to 0.16 (latest) which has updated bindings. Fixes #4 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0ff4663..6d678c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ clap = { version = "4", features = ["derive"] } crossterm = "0.28" cpal = "0.15" hound = "3.5" -whisper-rs = { version = "0.13", features = ["raw-api"] } +whisper-rs = { version = "0.16", features = ["raw-api"] } anyhow = "1" base64 = "0.22" uuid = { version = "1", features = ["v4"] }