Skip to content

Commit 40bcb21

Browse files
committed
fix: align rust toolchain floors with workspace requirements
1 parent 4c20bc5 commit 40bcb21

File tree

12 files changed

+16
-10
lines changed

12 files changed

+16
-10
lines changed

.github/actions/setup-rust/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
rust-version:
66
description: Rust toolchain version
77
required: false
8-
default: "1.87.0"
8+
default: "1.88.0"
99
targets:
1010
description: Additional Rust targets to install (comma-separated)
1111
required: false

.github/actions/setup-tauri/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
rust-version:
66
description: Rust toolchain version
77
required: false
8-
default: "1.87.0"
8+
default: "1.93.1"
99
rust-targets:
1010
description: Rust targets to install (comma-separated)
1111
required: false

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ members = [
1111
[workspace.package]
1212
version = "2026.10330.118"
1313
edition = "2024"
14+
rust-version = "1.88"
1415
license = "AGPL-3.0-only"
1516
authors = ["TrueNine"]
1617
repository = "https://github.com/TrueNine/memory-sync"

cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "tnmsc"
33
description = "Cross-AI-tool prompt synchronisation CLI"
44
version.workspace = true
55
edition.workspace = true
6+
rust-version.workspace = true
67
license.workspace = true
78
authors.workspace = true
89
repository.workspace = true

doc/content/cli/install.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ keywords:
1818

1919
- 根工作区要求 `Node.js >= 22`
2020
- 根工作区开发引擎要求 `pnpm 10.30.1`
21-
- Rust workspace 目标基线为 `rust >= 1.87.0`
21+
- Rust workspace 目标基线为 `rust >= 1.88.0`
2222
- `gui/` 的开发引擎要求更高,当前声明为 `rust >= 1.93.1``node >= 25.2.1`
2323

2424
如果你只使用文档站与 CLI,先满足根工作区要求即可;如果你还要构建桌面 GUI,再对齐 `gui/` 的更高版本。

doc/content/technical-details/documentation-components.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ status: stable
136136
stack: 'Rust workspace',
137137
task: '执行测试',
138138
command: 'cargo test --workspace',
139-
runtime: 'Rust 1.87+',
139+
runtime: 'Rust 1.88+',
140140
notes: '适合核对 Rust-first 侧是否被改动影响。'
141141
}
142142
]}

gui/src-tauri/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "2026.10330.118"
44
description = "Memory Sync desktop GUI application"
55
authors.workspace = true
66
edition.workspace = true
7+
rust-version = "1.93.1"
78
license.workspace = true
89
repository.workspace = true
910

libraries/logger/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "tnmsc-logger"
33
description = "Structured JSON logger with ANSI color support for tnmsc"
44
version.workspace = true
55
edition.workspace = true
6+
rust-version.workspace = true
67
license.workspace = true
78
authors.workspace = true
89
repository.workspace = true

libraries/md-compiler/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "tnmsc-md-compiler"
33
description = "MDX to Markdown compiler with expression evaluation and JSX component processing"
44
version.workspace = true
55
edition.workspace = true
6+
rust-version.workspace = true
67
license.workspace = true
78
authors.workspace = true
89
repository.workspace = true

0 commit comments

Comments
 (0)