mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 12:13:04 +00:00
use vendored ssl on mac
This commit is contained in:
parent
0826367e4f
commit
fd64d1a419
2 changed files with 5 additions and 0 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -2043,6 +2043,7 @@ dependencies = [
|
|||
"mlua",
|
||||
"notify",
|
||||
"open",
|
||||
"openssl",
|
||||
"prettyplease",
|
||||
"rayon",
|
||||
"reqwest",
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue