- Backend (update.rs): Forgejo-API Check, Download mit Progress-Events, AppImage-Replace + Restart - Frontend (UpdateDialog.svelte): Modal mit Version, Release-Notes, Fortschrittsbalken - Automatischer Update-Check 3s nach App-Start - reqwest mit stream-Feature für Download-Progress Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
957 B
TOML
34 lines
957 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"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|