Merge pull request #20191 from branchvincent/maturin

extend/ENV/super: set `MATURIN_NO_INSTALL_RUST`
This commit is contained in:
Branch Vincent 2025-06-28 20:09:44 +00:00 committed by GitHub
commit 52d66f206a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,6 +93,8 @@ module Superenv
# Prevent Go from automatically downloading a newer toolchain than the one that we have.
# https://tip.golang.org/doc/toolchain
self["GOTOOLCHAIN"] = "local"
# Prevent maturin from automatically downloading its own rust
self["MATURIN_NO_INSTALL_RUST"] = "1"
# Prevent Python packages from using bundled libraries by default.
# Currently for hidapi, pyzmq and pynacl
self["HIDAPI_SYSTEM_HIDAPI"] = "1"