Add non-default vendored-openssl feature flag.

This commit is contained in:
jcamiel 2023-07-18 14:20:29 +02:00 committed by hurl-bot
parent 71f72f9c11
commit 73ba56c735
No known key found for this signature in database
GPG Key ID: 1283A2B4A0DCAF8D
2 changed files with 11 additions and 0 deletions

10
Cargo.lock generated
View File

@ -781,6 +781,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.26.0+1.1.1u"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efc62c9f12b22b8f5208c23a7200a442b2e5999f8bdf80233852122b5a4f6f37"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.90"
@ -789,6 +798,7 @@ checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]

View File

@ -16,6 +16,7 @@ name = "hurl"
[features]
# Treat warnings as a build error.
strict = []
vendored-openssl = ["curl/static-ssl", "curl-sys/static-ssl"]
[dependencies]
base64 = "0.21.2"