When a tool is not available in https://crates.io, cargo-binstall requires you to specify where the git repository should be sourced from with --git:
-
--git <URL> — Override how to fetch Cargo.toml package manifest.
This skip searching crates.io and instead clone the repository specified and runs as if --manifest-path $cloned_repo is passed to binstall.
But we currently can't use this option with taiki-e/install-action, because the action does not allow you to control the flags passed to cargo-binstall.
When a tool is not available in https://crates.io,
cargo-binstallrequires you to specify where the git repository should be sourced from with--git:But we currently can't use this option with
taiki-e/install-action, because the action does not allow you to control the flags passed tocargo-binstall.