feat: accelerate RSS parsing with Rust

This commit is contained in:
jxxghp
2026-05-22 21:31:18 +08:00
parent 052e1ca8e4
commit 4de4044a3e
15 changed files with 467 additions and 102 deletions

View File

@@ -544,10 +544,17 @@ ensure_prereqs() {
exit 1
fi
if ! ensure_base_tools || ! ensure_build_tools || ! ensure_python || ! ensure_uv || ! ensure_rust_toolchain; then
if ! ensure_base_tools || ! ensure_python || ! ensure_uv; then
python_install_hint
exit 1
fi
if ! rust_accel_should_skip; then
if ! ensure_build_tools || ! ensure_rust_toolchain; then
export MOVIEPILOT_SKIP_RUST_ACCEL=1
echo "==> Rust 加速扩展准备失败,已跳过;应用将继续使用 Python 实现"
fi
fi
}
prompt_text() {