Pārlūkot izejas kodu

fix(ci): use vendored openSSL on the CLI (#6191)

Lucas Fernandes Nogueira 2 gadi atpakaļ
vecāks
revīzija
84998532d6
2 mainītis faili ar 1 papildinājumiem un 5 dzēšanām
  1. 0 1
      tooling/cli/Cargo.lock
  2. 1 4
      tooling/cli/Cargo.toml

+ 0 - 1
tooling/cli/Cargo.lock

@@ -3796,7 +3796,6 @@ dependencies = [
  "notify",
  "notify-debouncer-mini",
  "once_cell",
- "openssl",
  "os_info",
  "os_pipe",
  "regex",

+ 1 - 4
tooling/cli/Cargo.toml

@@ -39,7 +39,7 @@ name = "cargo-tauri"
 path = "src/main.rs"
 
 [dependencies]
-tauri-mobile = { version = "0.2", default-features = false }
+tauri-mobile = { version = "0.2", default-features = false, features = ["openssl-vendored"] }
 textwrap = { version = "0.11.0", features = [ "term_size" ] }
 jsonrpsee = { version = "0.16", features = [ "client", "server" ] }
 thiserror = "1"
@@ -92,8 +92,5 @@ winapi = { version = "0.3", features = [ "handleapi", "processenv", "winbase", "
 [target."cfg(unix)".dependencies]
 libc = "0.2"
 
-[target."cfg(target_os = \"macos\")".dependencies]
-openssl = { version = "0.10", features = [ "vendored" ] }
-
 [profile.release]
 lto = true