-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable native-tls in release #169
Comments
native-tls is enabled in the Windows and macOS builds. It's not enabled in the Linux builds because it would use dynamic linking, so you wouldn't be able to run the binary everywhere. The current binary is fully statically linked. You can get a binary with But maybe third-party packages should be built with it, they can make more assumptions. |
Hum, OK, unlucky. Maybe document this somewhere? |
Just for the record: The Arch package is built with |
BTW, if you like to provide statically linked binaries linked against OpenSSL 3, it can be easily done using GitHub Action jirutka/setup-alpine, see this example in the readme. That said I don’t think it’s a good idea to bundle OpenSSL. |
Currently, binaries are built with the default features, which doesn't include
native-tls
. It would be nice to have it enabled.The text was updated successfully, but these errors were encountered: