[package]
edition = "2024"
name = "voice-typing"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "voice-typing"
description = "Fast local voice typing for any focused window or browser input"
homepage = "https://github.com/maceip/voice-typing"
documentation = "https://docs.rs/voice-typing"
readme = "README.md"
license = "MIT"
repository = "https://github.com/maceip/voice-typing"
resolver = "2"
[features]
default = []
extensions = ["dep:voice-typing-ext"]
[[bin]]
name = "voice-typing"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bzip2]
version = "0.4"
[dependencies.futures-util]
version = "0.3"
[dependencies.iced]
version = "0.14.0"
features = [
"tokio",
"svg",
"canvas",
]
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
]
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.tar]
version = "0.4"
[dependencies.tokio]
version = "1.48.0"
features = [
"rt",
"rt-multi-thread",
"sync",
"net",
"macros",
]
[dependencies.tokio-tungstenite]
version = "0.26"
[dependencies.voice-typing-asr]
version = "0.1.0"
[dependencies.voice-typing-core]
version = "0.1.0"
[dependencies.voice-typing-ext]
version = "0.1.0"
optional = true
[dependencies.voice-typing-platform-windows]
version = "0.1.0"