a92c449de5
Picks up the v0.8.10 patch release contents: * Daemon API quartet for whalescale-desktop integration (#561-#564, PR #567). * Bug cluster: macOS seatbelt cargo registry (#558), MCP SIGTERM shutdown (#420), Linux PR_SET_PDEATHSIG (#421). * npm install on older glibc fix (#555/#560 via #556 + #565). * Shell cwd workspace-boundary validation (#524). * Memory help/docs polish (#497 via #569). * Onboarding language picker (#566). * Whale nicknames interleaved with Simplified Chinese. First-time contributors credited in CHANGELOG: @staryxchen, @shentoumengxin, @Vishnu1837, @20bytes. Workspace `Cargo.toml`, all 9 internal path-dep version pins, and `npm/deepseek-tui/package.json` all bumped to 0.8.10. `Cargo.lock` regenerated and committed alongside. Verified locally: * cargo fmt --all -- --check * cargo clippy --workspace --all-targets --all-features --locked -- -D warnings * cargo test --workspace --all-features --locked * bash scripts/release/check-versions.sh Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
84 lines
2.3 KiB
TOML
84 lines
2.3 KiB
TOML
[package]
|
|
name = "deepseek-tui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Terminal UI for DeepSeek"
|
|
default-run = "deepseek-tui"
|
|
|
|
[features]
|
|
default = ["tui", "json", "toml"]
|
|
tui = ["dep:schemaui", "schemaui/tui", "json", "toml"]
|
|
web = ["dep:schemaui", "schemaui/web", "json", "toml"]
|
|
json = ["schemaui/json"]
|
|
toml = ["schemaui/toml"]
|
|
|
|
[[bin]]
|
|
name = "deepseek-tui"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
arboard = "3.4"
|
|
deepseek-secrets = { path = "../secrets", version = "0.8.10" }
|
|
deepseek-tools = { path = "../tools", version = "0.8.10" }
|
|
schemaui = { version = "0.12.0", default-features = false, optional = true }
|
|
async-stream = "0.3.6"
|
|
async-trait = "0.1"
|
|
base64 = "0.22.1"
|
|
axum = { version = "0.8.4", features = ["json"] }
|
|
clap = { version = "4.5.54", features = ["derive"] }
|
|
clap_complete = "4.5"
|
|
colored = "3.0.0"
|
|
crossterm = "0.28"
|
|
dotenvy = "0.15.7"
|
|
dirs = "6.0.0"
|
|
futures-util = "0.3.31"
|
|
ratatui = "0.29"
|
|
regex = "1.11"
|
|
reqwest = { version = "0.13.1", default-features = false, features = ["blocking", "json", "stream", "multipart", "native-tls", "http2"] }
|
|
similar = "2"
|
|
rustyline = "15.0.0"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = { version = "1.0.149", features = ["preserve_order"] }
|
|
schemars = { version = "1.2.1", features = ["derive", "preserve_order"] }
|
|
shellexpand = "3"
|
|
toml = "0.9.7"
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
|
tokio-util = { version = "0.7.16", features = ["io"] }
|
|
unicode-width = "0.2"
|
|
unicode-segmentation = "1.12"
|
|
uuid = { version = "1.11", features = ["v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tempfile = "3.16"
|
|
thiserror = "2.0"
|
|
tracing = "0.1"
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
wait-timeout = "0.2"
|
|
multimap = "0.10.0"
|
|
shlex = "1.3.0"
|
|
starlark = "0.13.0"
|
|
tiny_http = "0.12"
|
|
portable-pty = "0.8"
|
|
zeroize = "1.8.2"
|
|
ignore = "0.4"
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
|
pdf-extract = "0.7"
|
|
tar = "0.4"
|
|
flate2 = "1.1"
|
|
sha2 = "0.10"
|
|
|
|
[dev-dependencies]
|
|
wiremock = "0.6"
|
|
pretty_assertions = "1.4"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows = { version = "0.60", features = ["Win32_Foundation"] }
|