mirror of
https://github.com/SerTimBerrners-Lee/talkis.git
synced 2026-07-09 17:29:15 +00:00
71 lines
2.6 KiB
TOML
71 lines
2.6 KiB
TOML
[package]
|
|
name = "talkis"
|
|
version = "0.3.7"
|
|
description = "Talkis - Voice to Text Desktop Widget"
|
|
authors = ["trixter"]
|
|
license = "AGPL-3.0-or-later"
|
|
edition = "2021"
|
|
default-run = "talkis"
|
|
|
|
[lib]
|
|
name = "talkis_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["macos-private-api", "tray-icon", "image-png"] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-store = "2"
|
|
tauri-plugin-clipboard-manager = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
enigo = "0.2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["json", "multipart", "blocking"] }
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
base64 = "0.22"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
cpal = "0.15.3"
|
|
window-vibrancy = "0.7.1"
|
|
dirs = "5"
|
|
include_dir = "0.7"
|
|
tauri-plugin-deep-link = "2"
|
|
url = "2.5.8"
|
|
tauri-plugin-updater = "2.10.1"
|
|
tauri-plugin-process = "2.3.1"
|
|
tauri-plugin-shell = "2.3.2"
|
|
transcribe-cpp = { version = "0.1.1", default-features = false }
|
|
hound = "3.5.1"
|
|
tauri-plugin-dialog = "2"
|
|
handy-keys = "0.2.4"
|
|
# Local LLM runtime engine (talkis-llm sidecar) — llama.cpp bindings, compiled
|
|
# and bundled with the app like transcribe-cpp. Metal acceleration added on macOS.
|
|
llama-cpp-2 = { version = "0.1.150", default-features = false, features = ["openmp", "sampler"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
# Adds Metal GPU acceleration to the bundled local LLM runtime on macOS.
|
|
llama-cpp-2 = { version = "0.1.150", default-features = false, features = ["metal"] }
|
|
transcribe-cpp = { version = "0.1.1", default-features = false, features = ["metal"] }
|
|
block2 = "0.6"
|
|
objc2 = "0.6"
|
|
objc2-app-kit = { version = "0.3", features = ["NSView", "NSWindow", "NSEvent", "block2"] }
|
|
objc2-core-audio = "0.3"
|
|
objc2-core-audio-types = "0.3"
|
|
objc2-core-foundation = { version = "0.3", default-features = false, features = ["std", "CFArray", "CFDictionary", "CFNumber", "CFString"] }
|
|
objc2-foundation = "0.3"
|
|
|
|
[target.'cfg(any(target_os = "macos", windows, target_os = "linux"))'.dependencies]
|
|
tauri-plugin-autostart = "2.5.1"
|
|
|
|
# macOS enforces a single app instance natively; Windows/Linux need this plugin
|
|
# so a second launch focuses the running app instead of spawning another widget.
|
|
[target.'cfg(any(windows, target_os = "linux"))'.dependencies]
|
|
tauri-plugin-single-instance = { version = "2", features = ["deep-link"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
pipewire = "0.10.0"
|
|
webkit2gtk = { version = "2.0.2", features = ["v2_8"] }
|
|
x11rb = { version = "0.13.2", features = ["xtest"] }
|