mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-16 13:03:31 +08:00
This release marks the desktop app's shift from a thin CLI wrapper toward a fuller local Coding Agent workspace. It carries the reviewed v0.2.0 release notes, bumps desktop package metadata, and refreshes Cargo.lock from the pinned Tauri stack before publishing the tag-driven GitHub Actions release. Constraint: GitHub Release body is sourced from release-notes/v0.2.0.md in the tagged commit Constraint: Desktop releases are built remotely from the pushed v0.2.0 tag Rejected: Publish as v0.1.10 | the release consolidates several desktop workflow and quality-gate milestones, so v0.2.0 better communicates the scope Confidence: high Scope-risk: narrow Directive: Keep the v0.2.0 tag on this commit unless the release notes or version metadata are changed together Tested: bun run scripts/release.ts 0.2.0 --dry Tested: bun run quality:gate --mode release --allow-live --provider-model codingplan:main:codingplan-main --provider-model minimax:main:minimax-main (18 passed, 0 failed, 0 skipped)
25 lines
576 B
TOML
25 lines
576 B
TOML
[package]
|
|
name = "claude-code-desktop"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "claude_code_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "=2.5.6", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "=2.10.3", features = ["tray-icon"] }
|
|
tauri-runtime = "=2.10.1"
|
|
tauri-runtime-wry = "=2.10.1"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-updater = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1.0.102"
|
|
portable-pty = "0.9.0"
|