a4f7a61e创建于 2月6日历史提交
[package]
name = "rwhisper"
version = "0.4.1"
edition = "2021"
description = "A simple interface for Whisper transcription models in Rust"
license = "MIT/Apache-2.0"
repository = "https://github.com/floneum/floneum"
authors = ["Evan Almloff <evanalmloff@gmail.com>"]
keywords = ["ai", "whisper", "transcription"]

[dependencies]
cpal = "0.15.1"
rand.workspace = true
fusor.workspace = true
fusor-gguf.workspace = true
byteorder = "1.4.3"
hf-hub = { version = "0.4.0", default-features = false }
tokenizers = { workspace = true, features = ["fancy-regex"] }
serde_json = "1.0.107"
hound = "3.5"
rodio = "0.20.1"
futures-channel = "0.3.31"
tracing = "0.1.37"
futures-util = "0.3.28"
thiserror.workspace = true

accelerate-src = { version = "0.3.2", optional = true }
intel-mkl-src = { version = "0.8.1", features = ["mkl-static-lp64-iomp"], optional = true }
cudarc = { version = "0.9.14", features = ["f16"], optional = true }
half = { version = "2.3.1", features = ["num-traits", "use-intrinsics", "rand_distr"] }
kalosm-common = { workspace = true }
kalosm-model-types.workspace = true
serde = { version = "1.0.209" }
flate2 = "1.0.35"
rayon = "1.10.0"
pollster = "0.4"
rustfft = "6.4.1"

[features]
tokio = ["kalosm-common/tokio"]

[dev-dependencies]
kalosm = { workspace = true, features = ["sound", "sound-source"], default-features = true }
anyhow.workspace = true
tracing-subscriber = "0.3.19"
tokio = { version = "1.32.0", features = ["full"] }
reqwest = "0.12.15"