mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
fix(ci): use vendored openSSL on the CLI (#6191)
This commit is contained in:
parent
7500a0e23a
commit
84998532d6
1
tooling/cli/Cargo.lock
generated
1
tooling/cli/Cargo.lock
generated
@ -3796,7 +3796,6 @@ dependencies = [
|
||||
"notify",
|
||||
"notify-debouncer-mini",
|
||||
"once_cell",
|
||||
"openssl",
|
||||
"os_info",
|
||||
"os_pipe",
|
||||
"regex",
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user