Files
codewhale/crates/core/Cargo.toml
T
Hunter B 1574dd488a chore(release): bump v0.8.60
Prepare the local v0.8.60 build by updating the workspace version, internal path dependency pins, npm wrapper version, changelog, README tag examples, Cargo.lock, TUI changelog slice, and generated web facts.

Verification: cargo fmt --all --check; git diff --check; ./scripts/release/check-versions.sh; cargo build -p codewhale-cli -p codewhale-tui --locked; target/debug/codewhale --version; target/debug/codewhale-tui --version.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-13 11:59:34 -07:00

23 lines
846 B
TOML

[package]
name = "codewhale-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
codewhale-agent = { path = "../agent", version = "0.8.60" }
codewhale-config = { path = "../config", version = "0.8.60" }
codewhale-execpolicy = { path = "../execpolicy", version = "0.8.60" }
codewhale-hooks = { path = "../hooks", version = "0.8.60" }
codewhale-mcp = { path = "../mcp", version = "0.8.60" }
codewhale-protocol = { path = "../protocol", version = "0.8.60" }
codewhale-state = { path = "../state", version = "0.8.60" }
codewhale-tools = { path = "../tools", version = "0.8.60" }
serde_json.workspace = true
tracing.workspace = true
uuid.workspace = true