[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-plugin-stt"
version = "0.2.2"
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",
"whisper",
]
categories = [
"multimedia::audio",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/brenogonzaga/tauri-plugin-stt"
[features]
cuda = ["whisper-rs/cuda"]
default = []
metal = ["whisper-rs/metal"]
vulkan = ["whisper-rs/vulkan"]
[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.base64]
version = "0.22"
[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.hound]
version = "3"
[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.sysinfo]
version = "0.39"
features = ["system"]
default-features = false
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.whisper-rs]
version = "0.16"
default-features = false