We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdbbd8a commit 3146c70Copy full SHA for 3146c70
images/linux/scripts/installers/rust.sh
@@ -20,9 +20,11 @@ source $CARGO_HOME/env
20
rustup component add rustfmt clippy
21
22
if isUbuntu22; then
23
- cargo install bindgen-cli cbindgen cargo-audit cargo-outdated
+ cargo install bindgen-cli --version 0.68.1 # Temp fix for https://github.com/rust-lang/rust-bindgen/issues/2677
24
+ cargo install cbindgen cargo-audit cargo-outdated
25
else
- cargo install --locked bindgen-cli cbindgen cargo-audit cargo-outdated
26
+ cargo install --locked bindgen-cli --version 0.68.1 # Temp fix for https://github.com/rust-lang/rust-bindgen/issues/2677
27
+ cargo install --locked cbindgen cargo-audit cargo-outdated
28
fi
29
30
# Cleanup Cargo cache
0 commit comments