Merge remote-tracking branch 'origin/master'

This commit is contained in:
Niko 2025-07-29 17:22:13 -07:00
commit 2cdb117101
No known key found for this signature in database
4 changed files with 33 additions and 7 deletions

View file

@ -17,6 +17,7 @@ repository = "https://codeberg.org/tazz4843/whisper-rs"
whisper-rs-sys = { path = "sys", version = "0.13" }
log = { version = "0.4", optional = true }
tracing = { version = "0.1", optional = true }
libc = { version = "0.2", optional = true }
[dev-dependencies]
hound = "3.5.0"
@ -31,8 +32,9 @@ cuda = ["whisper-rs-sys/cuda", "_gpu"]
hipblas = ["whisper-rs-sys/hipblas", "_gpu"]
openblas = ["whisper-rs-sys/openblas"]
metal = ["whisper-rs-sys/metal", "_gpu"]
vulkan = ["whisper-rs-sys/vulkan", "_gpu"]
vulkan = ["whisper-rs-sys/vulkan", "_gpu", "dep:libc"]
openmp = ["whisper-rs-sys/openmp"]
intel-sycl = ["whisper-rs-sys/intel-sycl", "_gpu"]
_gpu = []
test-with-tiny-model = []