deps(transcription): drop whisper-cpp features from transcribe-rs — whisper-rs is sole Whisper backend

This commit is contained in:
2026-04-19 20:23:31 +01:00
parent 381f236bf8
commit e5661b9111

View File

@@ -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"] }