0407451150
- workspace.package.version: 0.8.30 → 0.8.31 - per-crate path-dependency version pins: 0.8.30 → 0.8.31 (31 entries) - npm/deepseek-tui: version + deepseekBinaryVersion → 0.8.31 - Cargo.lock refreshed via `cargo update --workspace --offline` - CHANGELOG: [Unreleased] → [0.8.31] - 2026-05-12 with theme paragraph - new [Unreleased] anchor + [0.8.31] compare link Verified with `./scripts/release/check-versions.sh`: Version state OK: workspace=0.8.31, npm=0.8.31, lockfile in sync. Verified parity gates green pre-bump (see prior commits) and post-bump (cargo fmt --all --check, cargo clippy --workspace --all-targets --all-features --locked -- -D warnings).
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.31" }
|
|
deepseek-config = { path = "../config", version = "0.8.31" }
|
|
deepseek-core = { path = "../core", version = "0.8.31" }
|
|
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.31" }
|
|
deepseek-hooks = { path = "../hooks", version = "0.8.31" }
|
|
deepseek-mcp = { path = "../mcp", version = "0.8.31" }
|
|
deepseek-protocol = { path = "../protocol", version = "0.8.31" }
|
|
deepseek-state = { path = "../state", version = "0.8.31" }
|
|
deepseek-tools = { path = "../tools", version = "0.8.31" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tower-http.workspace = true
|