373fbd95a0
Bump workspace, inter-crate, and npm package versions 0.8.38 -> 0.8.39. Roll CHANGELOG [Unreleased] into [0.8.39] with all fixes: - Revert v0.8.38 /model picker rework (back to instant curated picker) - Restore approval grouping (lossy v0.8.37 logic for approvals, exact key for denials) - Thinking-only turn surface fix (#1727) - ACP server JSON-RPC id stringification (#1696) - Chat client: reasoning_content for generic providers (#1673) - Compaction: user text query preservation (#1704) - Engine: system prompt override survival (#1688) - Pager: G/End overshoot fix (#1706), mouse scroll (#1716) - Composer: scroll with text (#1677), multiline arrows (#1721) - macOS system theme detection (#1670) - rlm_open blank source fields (#1712) - Terminal resize paging fix (#1724) - Docker first-run permission (#1684) - README Rust 1.88+ requirement note (#1718) Tests: 3149 passed, 0 failed (deepseek-tui crate) clippy: clean on --all-targets --all-features
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
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.39" }
|
|
deepseek-app-server = { path = "../app-server", version = "0.8.39" }
|
|
deepseek-config = { path = "../config", version = "0.8.39" }
|
|
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.39" }
|
|
deepseek-mcp = { path = "../mcp", version = "0.8.39" }
|
|
deepseek-secrets = { path = "../secrets", version = "0.8.39" }
|
|
deepseek-state = { path = "../state", version = "0.8.39" }
|
|
chrono.workspace = true
|
|
dirs.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
|
tokio.workspace = true
|
|
sha2.workspace = true
|
|
tempfile = "3.16"
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|