Files
codewhale/crates/core/Cargo.toml
T
Hunter Bown c0b9bada27 chore(release): bump to 0.8.32
Workspace, all 9 path-pinned crate deps, and the npm wrapper's
package.json all advance from 0.8.31 → 0.8.32. `scripts/release/
check-versions.sh` passes (workspace ↔ npm ↔ Cargo.lock all in
sync).

Auto-tag only fires on push-to-main, so this bump on `work/v0.8.32`
doesn't accidentally cut a release; it just makes the
in-development binary identify itself correctly. When this branch
merges to main, the existing release pipeline takes over from
here.

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

22 lines
812 B
TOML

[package]
name = "deepseek-core"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Core runtime boundaries for DeepSeek workspace architecture"
[dependencies]
anyhow.workspace = true
chrono.workspace = true
deepseek-agent = { path = "../agent", version = "0.8.32" }
deepseek-config = { path = "../config", version = "0.8.32" }
deepseek-execpolicy = { path = "../execpolicy", version = "0.8.32" }
deepseek-hooks = { path = "../hooks", version = "0.8.32" }
deepseek-mcp = { path = "../mcp", version = "0.8.32" }
deepseek-protocol = { path = "../protocol", version = "0.8.32" }
deepseek-state = { path = "../state", version = "0.8.32" }
deepseek-tools = { path = "../tools", version = "0.8.32" }
serde_json.workspace = true
uuid.workspace = true