kyutai/stt-rs/Cargo.toml
jeanjerome 66c900fdcd fix: update hf-hub dependency to 0.4.3 to resolve URL parsing error
- Fixes RelativeUrlWithoutBase error when downloading models from fresh cache
- Resolves issue with kyutai/stt-1b-en_fr-candle model download
- Ensures proper URL handling in Hugging Face Hub interactions
2025-06-27 13:06:29 +02:00

31 lines
632 B
TOML

[package]
name = "kyutai-stt-rs"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0"
candle = { version = "0.9.1", package = "candle-core" }
candle-nn = "0.9.1"
clap = { version = "4.4.12", features = ["derive"] }
hf-hub = "0.4.3"
kaudio = "0.2.1"
moshi = "0.6.1"
sentencepiece = "0.11.3"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.115"
[features]
default = []
cuda = ["candle/cuda", "candle-nn/cuda"]
cudnn = ["candle/cudnn", "candle-nn/cudnn"]
metal = ["candle/metal", "candle-nn/metal"]
[profile.release]
debug = true
[profile.release-no-debug]
inherits = "release"
debug = false