mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
cannot build with OpenSSL 1.1.1a #188
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tycho on GitHub (Jan 13, 2019).
Building from latest tree, commit
f571df7367. Ran into this:I have OpenSSL 1.1.1a installed. This is apparently a known issue with rust-openssl 0.9.24: https://github.com/sfackler/rust-openssl/issues/994
And there are subsequent releases of rust-openssl which (theoretically) work with the OpenSSL 1.1.1a host libraries.
Any way to fix this dependency chain to pull in the newer version? It looks like 0.9.24 is being pulled in by native-tls 0.1.5 (which also has newer versions available).
@dani-garcia commented on GitHub (Jan 13, 2019):
This comes from the yubico crate, which is using reqwest version 0.8, and that is using native-tls 0.1.5.
For now, you can add this at the bottom of the Cargo.toml (after the patch section).
I'll open a PR upstream to update the dependencies.
@tycho commented on GitHub (Jan 13, 2019):
Thanks for the fast response! Your suggestion worked perfectly.
@dani-garcia commented on GitHub (Jan 13, 2019):
The PR has been merged, so this should be fixed with
60f6a350be