From e5661b9111548e49b8f677924710a3f93cd44484 Mon Sep 17 00:00:00 2001 From: Jake Date: Sun, 19 Apr 2026 20:23:31 +0100 Subject: [PATCH] =?UTF-8?q?deps(transcription):=20drop=20whisper-cpp=20fea?= =?UTF-8?q?tures=20from=20transcribe-rs=20=E2=80=94=20whisper-rs=20is=20so?= =?UTF-8?q?le=20Whisper=20backend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/transcription/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/transcription/Cargo.toml b/crates/transcription/Cargo.toml index 24d94af..be094d7 100644 --- a/crates/transcription/Cargo.toml +++ b/crates/transcription/Cargo.toml @@ -7,8 +7,8 @@ description = "Speech-to-text engine wrappers, model management, and inference c [dependencies] kon-core = { path = "../core" } -# Unified STT engine (Parakeet via ONNX, Whisper via whisper.cpp) -transcribe-rs = { version = "0.3", features = ["onnx", "whisper-cpp", "whisper-vulkan"] } +# Parakeet via ONNX. Whisper is handled directly via whisper-rs below. +transcribe-rs = { version = "0.3", default-features = false, features = ["onnx"] } # Async runtime for spawn_blocking tokio = { version = "1", features = ["rt", "sync"] }