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

This commit is contained in:
Lucas Fernandes Nogueira 2023-02-03 08:19:49 -08:00 committed by GitHub
parent 7500a0e23a
commit 84998532d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

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

View File

@ -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