[package]
edition = "2021"
name = "qts_cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tools for Qwen3 TTS synthesis and WAV output."
readme = false
license = "Apache-2.0"
repository = "https://github.com/yet-another-ai/qts"
[features]
blas = ["qts/blas"]
coreml = ["qts/coreml"]
default = [
"metal",
"vulkan",
"coreml",
]
metal = ["qts/metal"]
native = ["qts/native"]
vulkan = ["qts/vulkan"]
[[bin]]
name = "qts_cli"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.cpal]
version = "0.17"
[dependencies.crossterm]
version = "0.29"
[dependencies.hound]
version = "3.5.1"
[dependencies.libc]
version = "0.2"
[dependencies.qts]
version = "0.1.0"
[dependencies.ratatui]
version = "0.30"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_System_Threading",
]