From e34d2339ad4084b266b8b91dd653599edf3a9784 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Mon, 8 Aug 2022 00:14:32 -0400 Subject: [PATCH] Vendor OpenSSL via native-tls-vendored reqwest feature --- Cargo.lock | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 5bed38c0..82e9bb8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1338,6 +1338,15 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +[[package]] +name = "openssl-src" +version = "111.22.0+1.1.1q" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853" +dependencies = [ + "cc", +] + [[package]] name = "openssl-sys" version = "0.9.74" @@ -1347,6 +1356,7 @@ dependencies = [ "autocfg", "cc", "libc", + "openssl-src", "pkg-config", "vcpkg", ] diff --git a/Cargo.toml b/Cargo.toml index a5261e37..0aa671c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ log = "0.4.14" maplit = "1.0.2" notify = "4.0.17" opener = "0.5.0" -reqwest = { version = "0.11.10", features = ["blocking", "json"] } +reqwest = { version = "0.11.10", features = ["blocking", "json", "native-tls-vendored"] } ritz = "0.1.0" roblox_install = "1.0.0" serde = { version = "1.0.130", features = ["derive", "rc"] }