From 77f326511914744eda19e8286b98fb6da22f4be4 Mon Sep 17 00:00:00 2001 From: J-ZhengLi Date: Tue, 15 Oct 2024 19:03:32 +0800 Subject: [PATCH] fix faulty manifest --- resources/toolset_manifest_noweb.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/toolset_manifest_noweb.toml b/resources/toolset_manifest_noweb.toml index 8eeb2ea..989494c 100644 --- a/resources/toolset_manifest_noweb.toml +++ b/resources/toolset_manifest_noweb.toml @@ -26,14 +26,14 @@ cargo-nextest = "新一代 Rust 项目测试运行程序,相比传统 cargo te [tools.target.x86_64-pc-windows-gnu] mingw64 = { required = true, path = "packages/x86_64-pc-windows-gnu/x86_64-14.2.0-release-posix-seh-ucrt-rt_v12-rev0.7z", version = "14.2.0-rt_v12-rev0" } # `-msvc` can also be used here as long as these are built. -cargo-nextest = { optional = true, version = "0.9.81", url = "packages/x86_64-pc-windows/cargo-nextest-0.9.81-x86_64-pc-windows-msvc.zip" } -typos = { optional = true, version = "1.26.0", url = "packages/x86_64-pc-windows/typos-v1.26.0-x86_64-pc-windows-msvc.zip" } +cargo-nextest = { optional = true, version = "0.9.81", path = "packages/x86_64-pc-windows/cargo-nextest-0.9.81-x86_64-pc-windows-msvc.zip" } +typos = { optional = true, version = "1.26.0", path = "packages/x86_64-pc-windows/typos-v1.26.0-x86_64-pc-windows-msvc.zip" } [tools.target.x86_64-pc-windows-msvc] -cargo-nextest = { optional = true, version = "0.9.81", url = "packages/x86_64-pc-windows/cargo-nextest-0.9.81-x86_64-pc-windows-msvc.zip" } -typos = { optional = true, version = "1.26.0", url = "packages/x86_64-pc-windows/typos-v1.26.0-x86_64-pc-windows-msvc.zip" } +cargo-nextest = { optional = true, version = "0.9.81", path = "packages/x86_64-pc-windows/cargo-nextest-0.9.81-x86_64-pc-windows-msvc.zip" } +typos = { optional = true, version = "1.26.0", path = "packages/x86_64-pc-windows/typos-v1.26.0-x86_64-pc-windows-msvc.zip" } [tools.target.x86_64-unknown-linux-gnu] -cargo-nextest = { optional = true, version = "0.9.81", url = "packages/x86_64-unknown-linux/typos-v1.26.0-x86_64-unknown-linux-musl.tar.gz" } +cargo-nextest = { optional = true, version = "0.9.81", path = "packages/x86_64-unknown-linux/typos-v1.26.0-x86_64-unknown-linux-musl.tar.gz" } # `-musl` target built binary still works here -typos = { optional = true, version = "1.26.0", url = "packages/x86_64-unknown-linux-gnu/cargo-nextest-0.9.81-x86_64-unknown-linux-gnu.tar.gz" } +typos = { optional = true, version = "1.26.0", path = "packages/x86_64-unknown-linux-gnu/cargo-nextest-0.9.81-x86_64-unknown-linux-gnu.tar.gz" }