Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.88.0
toolchain: 1.91.0
targets: ${{ matrix.rust_target }}

- name: Rust cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.88.0
toolchain: 1.91.0

- name: Install protoc (macOS)
if: matrix.platform == 'macos-latest'
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.88.0
toolchain: 1.91.0
targets: aarch64-apple-darwin
- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ Download fork builds from [Releases](https://github.com/simonislee/llm_wiki/rele
### Build from Source

```bash
# Prerequisites: Node.js 20+, Rust 1.88+, protoc
# Prerequisites: Node.js 20+, Rust 1.91+, protoc
# macOS: brew install protobuf
# Linux: sudo apt install protobuf-compiler
# Windows: choco install protoc
Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ LLM Wiki 是一个跨平台桌面应用,能将你的文档自动转化为有
### 从源码构建

```bash
# 前置条件:Node.js 20+, Rust 1.88+, protoc
# 前置条件:Node.js 20+, Rust 1.91+, protoc
# macOS: brew install protobuf
# Linux: sudo apt install protobuf-compiler
# Windows:choco install protoc
Expand Down
2 changes: 1 addition & 1 deletion README_JA.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ LLM Wiki は、手元の文書を整理された相互リンク付きの知識
### ソースからビルド

```bash
# 前提条件: Node.js 20+, Rust 1.88+, protoc
# 前提条件: Node.js 20+, Rust 1.91+, protoc
# macOS: brew install protobuf
# Linux: sudo apt install protobuf-compiler
# Windows: choco install protoc
Expand Down
2 changes: 1 addition & 1 deletion README_KO.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ LLM Wiki는 문서를 자동으로 정리되고 서로 연결된 지식 베이
### 소스에서 빌드

```bash
# 사전 요구 사항: Node.js 20+, Rust 1.88+, protoc
# 사전 요구 사항: Node.js 20+, Rust 1.91+, protoc
# macOS: brew install protobuf
# Linux: sudo apt install protobuf-compiler
# Windows: choco install protoc
Expand Down
2 changes: 1 addition & 1 deletion docs/BUILD_AND_RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- macOS 13 or newer on Apple Silicon
- Node.js `20.19.4` and npm 10 (`.nvmrc` and `package-lock.json`)
- Rust `1.88.0` (`rust-toolchain.toml` and `Cargo.lock`)
- Rust `1.91.0` (`rust-toolchain.toml` and `Cargo.lock`); this is the minimum required by the locked LanceDB/Lance 4 dependency graph
- Xcode Command Line Tools and Homebrew `protobuf`

Install the prerequisites:
Expand Down
2 changes: 1 addition & 1 deletion mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start": "node dist/src/index.js",
"test": "npm run build && node --test dist/test/*.test.js"
"test": "npm run build && cd dist && node --test"
},
"engines": {
"node": ">=20"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.88.0"
channel = "1.91.0"
profile = "minimal"
components = ["clippy", "rustfmt"]
8 changes: 4 additions & 4 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.6.11"
description = "LLM Wiki - A personal knowledge base for LLM concepts"
authors = []
edition = "2021"
# AnyDoc and its archive/spreadsheet dependencies require Rust 1.88. Declaring
# the floor here gives contributors an immediate toolchain error instead of a
# late, platform-dependent dependency compilation failure.
rust-version = "1.88"
# The locked LanceDB/Lance 4 dependency graph requires Rust 1.91. Declaring the
# floor here gives contributors an immediate toolchain error instead of a late,
# platform-dependent dependency compilation failure.
rust-version = "1.91"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
Loading