1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 03:09:06 +03:00

ssh: maybe fix build

This commit is contained in:
Wez Furlong 2021-10-20 07:53:55 -07:00
parent d74ffbfb75
commit a55ba2be35
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -2413,7 +2413,7 @@ dependencies = [
[[package]] [[package]]
name = "libssh-rs" name = "libssh-rs"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/wez/libssh-rs.git?rev=1f41e980510bd30900f8c8cc5708f074b1d75c88#1f41e980510bd30900f8c8cc5708f074b1d75c88" source = "git+https://github.com/wez/libssh-rs.git?rev=a2966c7e8261f94ca1144870546fc6ed620c962b#a2966c7e8261f94ca1144870546fc6ed620c962b"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"libssh-rs-sys", "libssh-rs-sys",
@ -2423,7 +2423,7 @@ dependencies = [
[[package]] [[package]]
name = "libssh-rs-sys" name = "libssh-rs-sys"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/wez/libssh-rs.git?rev=1f41e980510bd30900f8c8cc5708f074b1d75c88#1f41e980510bd30900f8c8cc5708f074b1d75c88" source = "git+https://github.com/wez/libssh-rs.git?rev=a2966c7e8261f94ca1144870546fc6ed620c962b#a2966c7e8261f94ca1144870546fc6ed620c962b"
dependencies = [ dependencies = [
"cc", "cc",
"libz-sys", "libz-sys",

View File

@ -27,7 +27,7 @@ portable-pty = { version="0.5", path = "../pty" }
regex = "1" regex = "1"
smol = "1.2" smol = "1.2"
ssh2 = {version="0.9.3", features=["openssl-on-win32"]} ssh2 = {version="0.9.3", features=["openssl-on-win32"]}
libssh-rs = {git="https://github.com/wez/libssh-rs.git", rev="1f41e980510bd30900f8c8cc5708f074b1d75c88", features=["vendored"]} libssh-rs = {git="https://github.com/wez/libssh-rs.git", rev="a2966c7e8261f94ca1144870546fc6ed620c962b", features=["vendored"]}
#libssh-rs = {path="../../libssh-rs/libssh-rs", features=["vendored", "vendored-openssl"]} #libssh-rs = {path="../../libssh-rs/libssh-rs", features=["vendored", "vendored-openssl"]}
thiserror = "1.0" thiserror = "1.0"