docs: align Rust MSRV references with workspace (#739)

This commit is contained in:
zxyasfas
2026-05-06 11:39:50 +08:00
committed by GitHub
parent ece6b88e79
commit 0fded51824
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
"dockerFile": "../Dockerfile",
"build": {
"args": {
"RUST_VERSION": "1.85"
"RUST_VERSION": "1.88"
}
},
"customizations": {
+1 -1
View File
@@ -6,7 +6,7 @@ Thank you for your interest in contributing to DeepSeek TUI! This document provi
### Prerequisites
- Rust 1.85 or later (edition 2024)
- Rust 1.88 or later (edition 2024)
- Cargo package manager
- Git
+1 -1
View File
@@ -8,7 +8,7 @@
# in a minimal runtime layer. No MCP servers or heavy toolchains are included
# — keep it slim.
ARG RUST_VERSION=1.85
ARG RUST_VERSION=1.88
# ── Stage 1: Build ────────────────────────────────────────────────────
FROM --platform=$BUILDPLATFORM rust:${RUST_VERSION}-slim-bookworm AS builder
+1 -1
View File
@@ -749,7 +749,7 @@ mod tests {
#[test]
fn table_separator_row_is_dropped() {
// "|---|---|" must not appear in output
let src = "| 项目属性 | 详情 |\n|----------|------|\n| **语言** | Rust 1.85+ |\n";
let src = "| 项目属性 | 详情 |\n|----------|------|\n| **语言** | Rust 1.88+ |\n";
let parsed = parse(src);
let blocks: Vec<_> = parsed.blocks.iter().collect();
// Should have 2 TableRow blocks (header + data), no separator
+3 -3
View File
@@ -79,7 +79,7 @@ install from crates.io directly. Both crates are required — the dispatcher
delegates to the TUI runtime at runtime.
```bash
# Requires Rust 1.85+ (https://rustup.rs)
# Requires Rust 1.88+ (https://rustup.rs)
cargo install deepseek-tui-cli --locked # provides `deepseek`
cargo install deepseek-tui --locked # provides `deepseek-tui`
deepseek --version
@@ -165,7 +165,7 @@ LoongArch, FreeBSD, and pre-2024 ARM64 distros.
### Prerequisites
- **Rust** 1.85 or later — install with [rustup](https://rustup.rs).
- **Rust** 1.88 or later — install with [rustup](https://rustup.rs).
- **Linux build-time deps** (Debian/Ubuntu/openEuler/Kylin):
```bash
sudo apt-get install -y build-essential pkg-config libdbus-1-dev
@@ -240,7 +240,7 @@ Building on Windows requires the **MSVC C toolchain** from
1. Install Visual Studio 2022 Build Tools — select the **"Desktop development
with C++"** workload.
2. Install [Rust](https://rustup.rs) 1.85+ (see the
2. Install [Rust](https://rustup.rs) 1.88+ (see the
[China mirror instructions](#china--mirror-friendly-install) above if
downloading from mainland China).
3. Install [Git for Windows](https://git-scm.com/download/win) (provides `git`
+1 -1
View File
@@ -50,7 +50,7 @@ function unsupportedBuildHint() {
"No prebuilt binary is available for this platform/architecture combo.",
"You can still run DeepSeek TUI by building from source with Cargo:",
"",
" # Requires Rust 1.85+ (https://rustup.rs)",
" # Requires Rust 1.88+ (https://rustup.rs)",
" cargo install deepseek-tui-cli --locked # provides `deepseek`",
" cargo install deepseek-tui --locked # provides `deepseek-tui`",
"",
+1 -1
View File
@@ -68,7 +68,7 @@ function buildFromSourceHint() {
return [
"You can still run DeepSeek TUI by building from source with Cargo:",
"",
" # Requires Rust 1.85+ (https://rustup.rs)",
" # Requires Rust 1.88+ (https://rustup.rs)",
" cargo install deepseek-tui-cli --locked # provides `deepseek`",
" cargo install deepseek-tui --locked # provides `deepseek-tui`",
"",