From 838a01abedd027827ebd1083469a0237bfccdebc Mon Sep 17 00:00:00 2001 From: Bart van der Braak <bartvdbraak@gmail.com> Date: Tue, 7 Nov 2023 13:40:40 +0100 Subject: [PATCH] fix: vendored openssl linux musl, arm or aarch64 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 63cb659..fe44a93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,5 +10,5 @@ clap = { version = "4.4.7", features = ["derive"] } futures = "0.3.29" tokio = {version = "1.33.0", features = ["full"]} -[target.'cfg(unix)'.dependencies] +[target.'cfg(all(target_os = "linux", any(target_env = "musl", target_arch = "arm", target_arch = "aarch64")))'.dependencies] openssl = { version = "0.10", features = ["vendored"] } \ No newline at end of file