From 6f3339352bd3d69e665d65257c239d37c8937817 Mon Sep 17 00:00:00 2001 From: Arhan Chaudhary Date: Sat, 24 Aug 2024 16:15:16 -0400 Subject: [PATCH] chore: Note to update docs wasm-opt version --- src/install/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install/mod.rs b/src/install/mod.rs index f771b2e..bbc9a64 100644 --- a/src/install/mod.rs +++ b/src/install/mod.rs @@ -203,7 +203,7 @@ pub fn prebuilt_url_for(tool: &Tool, version: &str, arch: &Arch, os: &Os) -> Res Tool::WasmOpt => { Ok(format!( "https://github.com/WebAssembly/binaryen/releases/download/{vers}/binaryen-{vers}-{target}.tar.gz", - vers = "version_117", + vers = "version_117", // Make sure to update the version in docs/src/cargo-toml-configuration.md as well target = target, )) }