a92c449de5
Picks up the v0.8.10 patch release contents: * Daemon API quartet for whalescale-desktop integration (#561-#564, PR #567). * Bug cluster: macOS seatbelt cargo registry (#558), MCP SIGTERM shutdown (#420), Linux PR_SET_PDEATHSIG (#421). * npm install on older glibc fix (#555/#560 via #556 + #565). * Shell cwd workspace-boundary validation (#524). * Memory help/docs polish (#497 via #569). * Onboarding language picker (#566). * Whale nicknames interleaved with Simplified Chinese. First-time contributors credited in CHANGELOG: @staryxchen, @shentoumengxin, @Vishnu1837, @20bytes. Workspace `Cargo.toml`, all 9 internal path-dep version pins, and `npm/deepseek-tui/package.json` all bumped to 0.8.10. `Cargo.lock` regenerated and committed alongside. Verified locally: * cargo fmt --all -- --check * cargo clippy --workspace --all-targets --all-features --locked -- -D warnings * cargo test --workspace --all-features --locked * bash scripts/release/check-versions.sh Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
995 B
TOML
34 lines
995 B
TOML
[package]
|
|
name = "deepseek-tui-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Codex-style CLI facade for DeepSeek workspace architecture"
|
|
|
|
[[bin]]
|
|
name = "deepseek"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
clap_complete.workspace = true
|
|
deepseek-agent = { path = "../agent", version = "0.8.10" }
|
|
deepseek-app-server = { path = "../app-server", version = "0.8.10" }
|
|
deepseek-config = { path = "../config", version = "0.8.10" }
|
|
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.10" }
|
|
deepseek-mcp = { path = "../mcp", version = "0.8.10" }
|
|
deepseek-secrets = { path = "../secrets", version = "0.8.10" }
|
|
deepseek-state = { path = "../state", version = "0.8.10" }
|
|
chrono.workspace = true
|
|
dirs.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
sha2.workspace = true
|
|
tempfile = "3.16"
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|