8e9957da5c
- Bump workspace version 0.8.22 → 0.8.23 across Cargo.toml, every per-crate path-dependency pin, npm/deepseek-tui/package.json (both `version` and `deepseekBinaryVersion`), and Cargo.lock. - Add a 0.8.23 CHANGELOG entry covering the security hardening stack (sanitized child env, plan-mode tool surface, sub-agent approvals, symlink walks, runtime API auth, shell safety classification, MCP config path traversal), the macOS Keychain prompt fix, the #1244 MCP spawn error visibility + env passthrough work, the compact-thinking UX change, and a Known issues callout for mid-run MCP stderr. - Backfill missing CHANGELOG entries for v0.8.21 (community-heavy release, contributors credited) and v0.8.22 (fetch_url redirect validation). The gap was unintentional, so contributor work is being reflected in-repo now. - Add docs/RELEASE_CHECKLIST.md so future releases gate on the CHANGELOG/version/preflight steps explicitly.
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.23" }
|
|
deepseek-config = { path = "../config", version = "0.8.23" }
|
|
deepseek-core = { path = "../core", version = "0.8.23" }
|
|
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.23" }
|
|
deepseek-hooks = { path = "../hooks", version = "0.8.23" }
|
|
deepseek-mcp = { path = "../mcp", version = "0.8.23" }
|
|
deepseek-protocol = { path = "../protocol", version = "0.8.23" }
|
|
deepseek-state = { path = "../state", version = "0.8.23" }
|
|
deepseek-tools = { path = "../tools", version = "0.8.23" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tower-http.workspace = true
|