1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-08-05 10:39:07 +00:00

Add vendored_openssl feature.

This feature enables the `vendored` feature from the `openssl` crate and build a statically linked version of openssl.
This commit is contained in:
Eduardo Sánchez Muñoz 2020-09-25 23:23:13 +02:00
commit 2f7fbde789
2 changed files with 12 additions and 0 deletions

10
Cargo.lock generated
View file

@ -1552,6 +1552,15 @@ version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
[[package]]
name = "openssl-src"
version = "111.11.0+1.1.1h"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "380fe324132bea01f45239fadfec9343adb044615f29930d039bec1ae7b9fa5b"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.58"
@ -1561,6 +1570,7 @@ dependencies = [
"autocfg 1.0.1",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]