Files
codewhale/crates/app-server/Cargo.toml
T
Hunter Bown ee0ce460ee chore(release): v0.8.17
A community-driven reliability release. Plan-mode safety, paste-Enter
auto-submit, slash-menu skills coverage, the deepseek-cn endpoint
preset, and a handful of platform / streaming / gateway-compat fixes,
plus a small PTY-driven QA harness.

See CHANGELOG.md for the full annotated change list with credits.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-07 12:52:53 -05:00

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.17" }
deepseek-config = { path = "../config", version = "0.8.17" }
deepseek-core = { path = "../core", version = "0.8.17" }
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.17" }
deepseek-hooks = { path = "../hooks", version = "0.8.17" }
deepseek-mcp = { path = "../mcp", version = "0.8.17" }
deepseek-protocol = { path = "../protocol", version = "0.8.17" }
deepseek-state = { path = "../state", version = "0.8.17" }
deepseek-tools = { path = "../tools", version = "0.8.17" }
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tower-http.workspace = true