taiki-e / upload-rust-binary-action

GitHub Action for building and uploading Rust binary to GitHub Releases.
Apache License 2.0
246 stars 22 forks source link

Please add support for building with --locked #88

Open crazyscot opened 3 weeks ago

crazyscot commented 3 weeks ago

I would like to build my crate with cross build --locked.

Would it be possible to add a locked input to the action, or perhaps a passthrough input for adding arbitrary options to build_options ?

taiki-e commented 3 weeks ago

I would accept a PR to implement locked input option. It should be easy since it can be implemented in almost the same way as the existing no-default-features input option.