1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00

weird dependency hack for mac+windows

Adding an edge from wezterm-ssh -> async_ossl causes the
openssl vendoring feature selection logic to trigger, which
in turn allows `cargo build -p window --examples` to succeed
again on macos.
This commit is contained in:
Wez Furlong 2021-07-09 20:34:42 -07:00
parent 70ec166076
commit 91d6344180
2 changed files with 4 additions and 0 deletions

1
Cargo.lock generated
View File

@ -5024,6 +5024,7 @@ name = "wezterm-ssh"
version = "0.1.1"
dependencies = [
"anyhow",
"async_ossl",
"base64",
"dirs-next",
"filedescriptor",

View File

@ -23,6 +23,9 @@ smol = "1.2"
ssh2 = {version="0.9", features=["openssl-on-win32"]}
#ssh2 = {version="0.9"}
# Not used directly, but is used to centralize the openssl vendor feature selection
async_ossl = { path = "../async_ossl" }
[dev-dependencies]
k9 = "0.11.0"
pretty_env_logger = "0.4"