Skip to content

Commit

Permalink
error: migrate bindgen install hint to bindgen-cli since 0.61.0
Browse files Browse the repository at this point in the history
Since [bindgen 0.61.0][changelog], the `bindgen`
CLI binary must be installed via the `bindgen-cli`
crate.

[changelog]: https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md#0610

PR #39
  • Loading branch information
LeoniePhiline authored Mar 24, 2024
1 parent ea672ec commit 2a6f6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcre2-sys/generate-bindings
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

if ! command -V bindgen > /dev/null 2>&1; then
echo "bindgen must be installed" >&2
echo "to install: cargo install bindgen" >&2
echo "to install: cargo install bindgen-cli" >&2
exit 1
fi
if ! [ -f "$PCRE2SYS_HEADER" ]; then
Expand Down

0 comments on commit 2a6f6ec

Please sign in to comment.