claude-desktop/src-tauri/Cargo.toml
Eddy 87ba8f7bdf
All checks were successful
Build AppImage / build (push) Successful in 8m53s
feat: Global Hotkey (Super+C) + Clipboard-Watch + Desktop-Integration [appimage]
- Global Hotkey: Super+C öffnet Claude-Fenster und fokussiert Input von überall
- Clipboard-Watch: Erkennt Code/URLs/Fehler/Pfade in Zwischenablage, zeigt Vorschlag
- tauri-plugin-global-shortcut + tauri-plugin-dialog integriert
- focus-chat-input Event für Hotkey → Input-Fokus
- clipboard-changed Event für Watch → Chat-Vorschlag

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-21 11:50:56 +02:00

40 lines
1.1 KiB
TOML

[package]
name = "claude-desktop"
version = "0.1.0"
description = "Native Desktop-App für Claude Code"
authors = ["Eddy <eddy@alles-watt-laeuft.de>"]
edition = "2021"
[lib]
name = "claude_desktop_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["tray-icon"] }
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
rusqlite = { version = "0.31", features = ["bundled"] }
mysql_async = { version = "0.34", features = ["chrono"] }
reqwest = { version = "0.12", features = ["json", "multipart", "stream"] }
base64 = "0.22"
tokio-tungstenite = "0.23"
futures-util = "0.3"
sha2 = "0.10"
tauri-plugin-dialog = "2.7.0"
tauri-plugin-global-shortcut = "2.3.1"
[target.'cfg(target_os = "linux")'.dependencies]
webkit2gtk = "2.0"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
strip = true