From 0652f77355a1db92392f65d2a8b6ec36483a770c Mon Sep 17 00:00:00 2001 From: Diavolo Date: Fri, 24 Nov 2023 14:44:40 +0100 Subject: [PATCH] fix: attempt fix on Linux by "vendoring" OpenSSL --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 464255d..2ef4fec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,6 +27,9 @@ futures-util = "0.3.29" indicatif = "0.17.7" tokio = {version="1.33.0", features = ["rt-multi-thread", "macros"]} +[target.'cfg(unix)'.dependencies] +openssl = { version = "0.10.58", default-features = false, features = ["vendored"] } + [target.'cfg(windows)'.dependencies] steamlocate = "2.0.0-alpha.0" mslnk = "0.1.8"