whisper.cpp from 73e33a182c3e608ac5947375b4ca3f8ee0ad4253 and patched to support

This commit is contained in:
Bel LaPointe
2023-11-26 16:59:22 -07:00
commit dd62f2b9f6
158 changed files with 75910 additions and 0 deletions

34
Cargo.toml Normal file
View File

@@ -0,0 +1,34 @@
[workspace]
members = ["sys"]
exclude = ["examples/full_usage"]
[package]
name = "whisper-rs"
version = "0.8.0"
edition = "2021"
description = "Rust bindings for whisper.cpp"
license = "Unlicense"
documentation = "https://docs.rs/whisper-rs"
repository = "https://github.com/tazz4843/whisper-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
whisper-rs-sys = { path = "sys", version = "0.7" }
[dev-dependencies]
hound = "3.5.0"
[features]
default = []
simd = []
coreml = ["whisper-rs-sys/coreml"]
cuda = ["whisper-rs-sys/cuda"]
opencl = ["whisper-rs-sys/opencl"]
openblas = ["whisper-rs-sys/openblas"]
metal = ["whisper-rs-sys/metal"]
test-with-tiny-model = []
[package.metadata.docs.rs]
features = ["simd"]