Skip to content

Commit

Permalink
fix(cli): openssl is no longer a required macOS dep (#9237)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Mar 20, 2024
1 parent ee028c4 commit b525dda
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 19 deletions.
6 changes: 6 additions & 0 deletions .changes/cli-openssl-cargo-mobile2-removal.md
@@ -0,0 +1,6 @@
---
"@tauri-apps/cli": patch:enhance
"tauri-cli": patch:enhance
---

`openssl` is no longer a required dependency on macOS.
90 changes: 77 additions & 13 deletions tooling/cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions tooling/cli/Cargo.toml
Expand Up @@ -39,7 +39,7 @@ name = "cargo-tauri"
path = "src/main.rs"

[dependencies]
cargo-mobile2 = { version = "0.10.3", default-features = false }
cargo-mobile2 = { version = "0.11", default-features = false }
jsonrpsee = { version = "0.22", features = [ "server" ] }
jsonrpsee-core = "0.22"
jsonrpsee-client-transport = { version = "0.22", features = [ "ws" ] }
Expand Down Expand Up @@ -113,11 +113,7 @@ native-tls = [
"cargo-mobile2/native-tls",
"ureq/native-tls"
]
native-tls-vendored = [
"native-tls",
"tauri-bundler/native-tls-vendored",
"cargo-mobile2/openssl-vendored"
]
native-tls-vendored = [ "native-tls", "tauri-bundler/native-tls-vendored" ]
rustls = [ "tauri-bundler/rustls", "cargo-mobile2/rustls", "ureq/tls" ]

[profile.release-size-optimized]
Expand Down

0 comments on commit b525dda

Please sign in to comment.