-
Notifications
You must be signed in to change notification settings - Fork 100
Add feature isahc-static-ssl #469
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
Add feature isahc-static-ssl #469
Conversation
Cargo.toml
Outdated
@@ -38,8 +38,9 @@ wasm-bindgen = "0.2" | |||
wasm-bindgen-futures = "0.4" | |||
|
|||
[features] | |||
default = ["isahc-static-curl"] | |||
default = ["isahc-static-curl", "isahc-static-ssl"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What would be the point of using both by default?
default = ["isahc-static-curl", "isahc-static-ssl"] | |
default = ["isahc-static-curl"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guessed you aim for a more static-friendly lib. Anyways, fixed.
05eaa3a
to
23950e9
Compare
With isahc-static-curl feature compiling a static build was still not achievable since it still needed system-wide installed OpenSSL libraries. With the isahc-static-ssl feature was added, now its possible to compile the library without OpenSSL libraries installed. The src/task_info.rs file had a failing doc test due not using environmental variables like other tests do. This issue was fixed.
23950e9
to
10a6354
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks ✨
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bors merge
Build succeeded: |
Pull Request
Related issue
Fixes #468
What does this PR do?
With isahc-static-curl feature compiling a static build was still not achievable since it still needed system-wide installed OpenSSL libraries. With the isahc-static-ssl feature was added, now its possible to compile the library without OpenSSL libraries installed.
The src/task_info.rs file had a failing doc test due not using environmental variables like other tests do. This issue was fixed.
PR checklist
Please check if your PR fulfills the following requirements:
Thank you so much for contributing to Meilisearch!