[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-plugin-stt"
version = "0.1.1"
authors = ["Affex Team"]
build = "build.rs"
links = "tauri-plugin-stt"
exclude = [
"/examples",
"/dist-js",
"/guest-js",
"/node_modules",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Speech-to-text recognition plugin for Tauri with multi-language support"
homepage = "https://github.com/brenogonzaga/tauri-plugin-stt"
documentation = "https://docs.rs/tauri-plugin-stt"
readme = "README.md"
keywords = [
"tauri",
"speech",
"recognition",
"stt",
"vosk",
]
categories = [
"multimedia::audio",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/brenogonzaga/tauri-plugin-stt"
[lib]
name = "tauri_plugin_stt"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tauri]
version = "2.10.3"
[dependencies.thiserror]
version = "2"
[build-dependencies.tauri-plugin]
version = "2.5.4"
features = ["build"]
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.cpal]
version = "0.17"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.reqwest]
version = "0.12"
features = ["blocking"]
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.vosk]
version = "0.3"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.zip]
version = "6.0.0"