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
26 lines
956 B
TOML
26 lines
956 B
TOML
[package]
|
|
name = "deepseek-app-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Codex-style app-server transport for DeepSeek workspace architecture"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
axum.workspace = true
|
|
clap.workspace = true
|
|
deepseek-agent = { path = "../agent", version = "0.8.39" }
|
|
deepseek-config = { path = "../config", version = "0.8.39" }
|
|
deepseek-core = { path = "../core", version = "0.8.39" }
|
|
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.39" }
|
|
deepseek-hooks = { path = "../hooks", version = "0.8.39" }
|
|
deepseek-mcp = { path = "../mcp", version = "0.8.39" }
|
|
deepseek-protocol = { path = "../protocol", version = "0.8.39" }
|
|
deepseek-state = { path = "../state", version = "0.8.39" }
|
|
deepseek-tools = { path = "../tools", version = "0.8.39" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tower-http.workspace = true
|