mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 15:03:57 +00:00
27 lines
756 B
TOML
27 lines
756 B
TOML
[package]
|
|
name = "tauri-plugin-ptt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Push-to-talk plugin for Tauri v2 — iOS AVAudioEngine + Speech + TTS"
|
|
license = "MIT"
|
|
authors = ["OpenHuman"]
|
|
# Required by tauri_plugin::Builder::try_build — must match package.name.
|
|
links = "tauri-plugin-ptt"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { version = "2", features = ["build"] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
log = "0.4"
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
# No additional Rust-side iOS deps — the bridge to Swift runs through
|
|
# Tauri's ios_plugin_binding! / register_ios_plugin path.
|