wyoming-whisper-rs/Cargo.toml
2023-05-14 13:59:49 -06:00

32 lines
709 B
TOML

[workspace]
members = ["sys"]
exclude = ["examples/full_usage"]
[package]
name = "whisper-rs"
version = "0.7.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.5" }
[dev-dependencies]
hound = "3.5.0"
[features]
default = []
simd = []
coreml = ["whisper-rs-sys/coreml"]
cuda = ["whisper-rs-sys/cuda"]
opencl = ["whisper-rs-sys/opencl"]
test-with-tiny-model = []
[package.metadata.docs.rs]
features = ["simd"]