From 9aff6667d41a41c6221a55a58563a211053da24b Mon Sep 17 00:00:00 2001 From: Tanaka Zakku <71482215+YamatoSecurity@users.noreply.github.com> Date: Wed, 8 Jun 2022 15:52:44 +0900 Subject: [PATCH] add back openssl dependency --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0753036d..29f01160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,6 +42,9 @@ crossbeam-utils = "0.8.8" is_elevated = "0.1.2" static_vcruntime = "2.0" +[target.'cfg(unix)'.dependencies] #Mac and Linux +openssl = { version = "*", features = ["vendored"] } #vendored is needed to compile statically. + [profile.release] lto = true strip = "symbols" \ No newline at end of file