Tools like cargo-binstall want a valid name for the release binaries in the format <binary-name>-<arch>-<os> like
taplo-cli-x86_64-unknown-linux-gnu
taplo-cli-armv7-linux-androideabi
taplo-cli-aarch64-apple-darwnin
taplo-cli-x86_64-apple-darwnin
As the names used in the releases aren't valid, cargo binstall falls back to compiling from source, which is long, especially in CIs.
Could you use the official name of the platforms for your binaries in the releases?
Tools like
cargo-binstallwant a valid name for the release binaries in the format<binary-name>-<arch>-<os>liketaplo-cli-x86_64-unknown-linux-gnutaplo-cli-armv7-linux-androideabitaplo-cli-aarch64-apple-darwnintaplo-cli-x86_64-apple-darwninAs the names used in the releases aren't valid,
cargo binstallfalls back to compiling from source, which is long, especially in CIs.Could you use the official name of the platforms for your binaries in the releases?