1
0
Jonathan Kelley 1 жил өмнө
parent
commit
fd64d1a419
2 өөрчлөгдсөн 5 нэмэгдсэн , 0 устгасан
  1. 1 0
      Cargo.lock
  2. 4 0
      packages/cli/Cargo.toml

+ 1 - 0
Cargo.lock

@@ -2043,6 +2043,7 @@ dependencies = [
  "mlua",
  "notify",
  "open",
+ "openssl",
  "prettyplease",
  "rayon",
  "reqwest",

+ 4 - 0
packages/cli/Cargo.toml

@@ -98,6 +98,10 @@ env_logger = "0.11.3"
 tracing-subscriber = "0.3.18"
 tracing = { workspace = true }
 
+# on maco, we need to specify the vendored feature on ssl when cross compiling
+[target.'cfg(target_os = "macos")'.dependencies]
+openssl = { version = "0.10", features = ["vendored"], optional = true }
+
 [features]
 default = []
 plugin = ["mlua"]