bf6d82e4ba
Bumps workspace, all internal path-deps, and npm wrapper (version + deepseekBinaryVersion) from 0.8.1 → 0.8.2. Lockfile re-locked offline to keep the registry index untouched. Triggers auto-tag.yml on push, which creates v0.8.2 and fires release.yml to build cross-platform binaries and draft the GitHub Release. npm publish remains manual per CLAUDE.md release runbook. Note: npm registry already has 0.8.2 published (with binaryVersion 0.8.1 from an earlier checkpoint). That release keeps working unchanged because v0.8.1 binaries stay on GitHub. Repo state aligns to 0.8.2 so the version-drift gate passes; next npm publish (which will need to be 0.8.3 since 0.8.2 is taken) will pick up binaryVersion=0.8.2 and pull the new binaries. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
33 lines
966 B
TOML
33 lines
966 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.2" }
|
|
deepseek-app-server = { path = "../app-server", version = "0.8.2" }
|
|
deepseek-config = { path = "../config", version = "0.8.2" }
|
|
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.2" }
|
|
deepseek-mcp = { path = "../mcp", version = "0.8.2" }
|
|
deepseek-secrets = { path = "../secrets", version = "0.8.2" }
|
|
deepseek-state = { path = "../state", version = "0.8.2" }
|
|
chrono.workspace = true
|
|
dirs.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.16"
|