From 796a8bc2b37a619e257489a392a401f9c80d0efd Mon Sep 17 00:00:00 2001 From: Aleksandr Chebotov Date: Mon, 17 Oct 2022 12:59:46 +0200 Subject: [PATCH] replace bindgen to bindgen-cli --- images/win/scripts/Installers/Install-Rust.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/Installers/Install-Rust.ps1 b/images/win/scripts/Installers/Install-Rust.ps1 index d9b43311..9bd0c2b3 100644 --- a/images/win/scripts/Installers/Install-Rust.ps1 +++ b/images/win/scripts/Installers/Install-Rust.ps1 @@ -24,7 +24,7 @@ rustup target add i686-pc-windows-msvc # Install common tools rustup component add rustfmt clippy -cargo install --locked bindgen 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