fix(tls): vendor native-tls

This commit is contained in:
Matthew Esposito 2024-11-19 11:18:20 -05:00
parent 0714d58efe
commit f7240208f1
2 changed files with 11 additions and 1 deletions

10
Cargo.lock generated
View File

@ -1112,6 +1112,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "300.4.1+3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.104"
@ -1120,6 +1129,7 @@ checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]

View File

@ -48,7 +48,7 @@ arc-swap = "1.7.1"
serde_json_path = "0.6.7"
async-recursion = "1.1.1"
common-words-all = { version = "0.0.2", default-features = false, features = ["english", "one"] }
hyper-tls = "=0.5.0"
hyper-tls = { version = "=0.5.0", features = ["vendored"] }
[dev-dependencies]