From 8328a2e8009bd920728258b909e5d125615015c7 Mon Sep 17 00:00:00 2001 From: Brandon Kauffman Date: Thu, 20 Jun 2024 16:40:32 -0400 Subject: [PATCH] use vendored openssl --- Cargo.lock | 11 +++++++++++ Cargo.toml | 1 + 2 files changed, 12 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 19ee1c0..4160e14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,6 +301,7 @@ dependencies = [ "console", "dialoguer", "dirs", + "openssl", "regex", "reqwest", "serde", @@ -823,6 +824,15 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +[[package]] +name = "openssl-src" +version = "300.3.1+3.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91" +dependencies = [ + "cc", +] + [[package]] name = "openssl-sys" version = "0.9.102" @@ -831,6 +841,7 @@ checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" dependencies = [ "cc", "libc", + "openssl-src", "pkg-config", "vcpkg", ] diff --git a/Cargo.toml b/Cargo.toml index efe6b90..85aa90a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,3 +21,4 @@ toml = "0.8.14" tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } urlencoding = "2.1.3" +openssl = { version = "0.10", features = ["vendored"] }