I would like a better way of requesting release builds of Rust code directly within Python. I know I can import rustimport.settings, then set compile_release_binaries to True, and import rustimport.import_hook, but that's annoying. Could a new submodule be added so that I can simply run import rustimport.release.import_hook and it would set compile_release_binaries for me? I can write the PR and change add it to the README if you agree, but I realise this may be somewhat unorthodox.
I would like a better way of requesting release builds of Rust code directly within Python. I know I can
import rustimport.settings, then setcompile_release_binariestoTrue, andimport rustimport.import_hook, but that's annoying. Could a new submodule be added so that I can simply runimport rustimport.release.import_hookand it would setcompile_release_binariesfor me? I can write the PR and change add it to the README if you agree, but I realise this may be somewhat unorthodox.