You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While executing cargo metadata, and perhaps elsewhere, cbindgen invokes the binary specified CARGO environment variable, else an unadorned cargo.
Our build system does not permit reliance on environment variables, and that prevents us from using cbindgen. I'd like to be able to specify --cargo-bin as an argument to cbindgen, and use the following priorities for selecting cargo.
--cargo-bin, if specified.
CARGO environment variable, if set.
cargo, otherwise.
The text was updated successfully, but these errors were encountered:
While executing
cargo metadata
, and perhaps elsewhere,cbindgen
invokes the binary specifiedCARGO
environment variable, else an unadornedcargo
.Our build system does not permit reliance on environment variables, and that prevents us from using
cbindgen
. I'd like to be able to specify--cargo-bin
as an argument tocbindgen
, and use the following priorities for selectingcargo
.--cargo-bin
, if specified.CARGO
environment variable, if set.cargo
, otherwise.The text was updated successfully, but these errors were encountered: