From 65807b665db97c1a62b4ceb8cc1d26b1ac56aa9f Mon Sep 17 00:00:00 2001 From: Dhruv Dhamani Date: Wed, 24 Jan 2024 15:52:36 -0500 Subject: [PATCH] use target_os to configure openssl instead of musl env --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f748778c9..8d4eee100 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ zip = "0.6.6" zip-extensions = "0.6.2" chrono = "0.4.31" -[target.'cfg(target_env = "musl")'.dependencies] +[target.'cfg(target_os = "linux")'.dependencies] openssl = { version = "0.10.63", features = ["vendored"] } reqwest = { version = "0.11.23", features = ["json"] }