[package]
edition = "2021"
name = "opencode-voice"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cli utility to control opencode using voice via the HTTP API"
readme = "README.md"
license = "Apache-2.0"
[lib]
name = "opencode_voice"
path = "src/lib.rs"
[[bin]]
name = "opencode-voice"
path = "src/main.rs"
[[test]]
name = "bridge_test"
path = "tests/bridge_test.rs"
[[test]]
name = "sse_test"
path = "tests/sse_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.cpal]
version = "0.15"
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.hound]
version = "3.5"
[dependencies.indicatif]
version = "0.17"
[dependencies.reqwest]
version = "0.12"
features = [
"stream",
"json",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.whisper-rs]
version = "0.13"
features = ["raw-api"]
[target.'cfg(target_os = "linux")'.dependencies.evdev]
version = "0.12"
[target.'cfg(target_os = "macos")'.dependencies.rdev]
version = "0.5"