Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow to build cargo-pgrx either with rustls (default) or native-tls (#…
…1448) ureq defines `default = ["tls", "gzip"]`, so "tls" feature (rustls) is currently always enabled even when native-tls is preferred, i.e. both rustls and native-tls is built if openssl headers are available and the user cannot opt-out from using rustls. This also disallows building cargo-pgrx on platforms not supported by the ring crate (dependency of rustls). This should also solve #1430 if `cargo-pgrx` is built with `--no-default-features --features native-tls`.
- Loading branch information