New comment by ericonr on void-packages repository https://github.com/void-linux/void-packages/pull/28396#issuecomment-772957386 Comment: To remove rustls: ``` diff --git a/srcpkgs/maturin/template b/srcpkgs/maturin/template index fefdd2b175..9043a551c3 100644 --- a/srcpkgs/maturin/template +++ b/srcpkgs/maturin/template @@ -3,7 +3,11 @@ pkgname=maturin version=0.9.0 revision=1 build_style=cargo +# take a look at Cargo.toml ever so often to check for new features +# we do this to disable the 'rustls' feature, which leads to bad platform compatibility +configure_args="--no-default-features --features auditwheel,log,upload,human-panic" hostmakedepends="python3-setuptools python3-toml" +makedepends="libressl-devel" depends="python3-toml" short_desc="Build and publish crates as python packages" maintainer="Andrew J. Hesford " ```