From 318ec94985378f2142952576677ea174e5f57d88 Mon Sep 17 00:00:00 2001 From: Erik Bershel <110455084+erik-bershel@users.noreply.github.com> Date: Thu, 2 Nov 2023 21:46:42 +0100 Subject: [PATCH] Revert "[Windows] Pin bindgen cli version to avoid bug (#8713)" (#8719) This reverts commit 1dac9b9f6bc5607f6a672b9b366afbb89d1f7ec0. --- images/win/scripts/Installers/Install-Rust.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/images/win/scripts/Installers/Install-Rust.ps1 b/images/win/scripts/Installers/Install-Rust.ps1 index 55eb40289..5778fd37a 100644 --- a/images/win/scripts/Installers/Install-Rust.ps1 +++ b/images/win/scripts/Installers/Install-Rust.ps1 @@ -35,8 +35,7 @@ rustup target add x86_64-pc-windows-gnu # Install common tools rustup component add rustfmt clippy -cargo install --locked bindgen-cli --version 0.68.1 # Temp fix for https://github.com/rust-lang/rust-bindgen/issues/2677 -cargo install --locked cbindgen cargo-audit cargo-outdated +cargo install --locked bindgen-cli cbindgen cargo-audit cargo-outdated # Cleanup Cargo crates cache Remove-Item "${env:CARGO_HOME}\registry\*" -Recurse -Force