All checks were successful
Build AppImage / build (push) Successful in 7m52s
- update.rs: Umstellung auf Package-Registry-Manifest mit SHA256-Verify, Basic-Auth, dev/APPIMAGE/Nix-Wrapper-Modus. Liest binary_filename im Nix-Modus (AppImage laeuft auf NixOS nicht) - Nix-Wrapper-Paket (nix/default.nix): LD_LIBRARY_PATH-korrekter Launcher + Installer-Script, User-Home-Binary (writable fuer Auto-Update) - CI laedt jetzt AppImage UND natives Binary + update.json v2 (binary_filename/binary_sha256) in die Package Registry - Svelte: Store-basierter Update-Trigger, manueller Check im Settings-Panel, "Kein Update"-Dialog-Variante, expectedSha256-Param - install.sh: One-Click-Installer fuer NixOS (curl | bash) - sha2-Dep fuer Integritaets-Check des Downloads Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
35 lines
971 B
TOML
35 lines
971 B
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"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|