2021-03-16 19:43:33 +03:00
|
|
|
[package]
|
|
|
|
name = "wezterm-ssh"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
|
|
edition = "2018"
|
2021-04-30 20:27:39 +03:00
|
|
|
repository = "https://github.com/wez/wezterm"
|
|
|
|
description = "More convenient higher level wrapper around libssh2"
|
|
|
|
license = "MIT"
|
|
|
|
documentation = "https://docs.rs/wezterm-ssh"
|
2021-03-16 19:43:33 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-19 18:07:44 +03:00
|
|
|
anyhow = "1.0"
|
|
|
|
base64 = "0.13"
|
2021-03-16 19:43:33 +03:00
|
|
|
dirs-next = "2.0"
|
2021-03-19 18:07:44 +03:00
|
|
|
filedescriptor = { version="0.7", path = "../filedescriptor" }
|
|
|
|
log = "0.4"
|
2021-04-30 20:17:25 +03:00
|
|
|
portable-pty = { version="0.4", path = "../pty" }
|
2021-03-16 19:43:33 +03:00
|
|
|
regex = "1"
|
2021-03-19 18:07:44 +03:00
|
|
|
smol = "1.2"
|
2021-04-30 20:27:39 +03:00
|
|
|
#ssh2 = {version="0.9", features=["openssl-on-win32"]}
|
|
|
|
ssh2 = {version="0.9"}
|
2021-03-16 19:43:33 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-25 20:32:31 +03:00
|
|
|
k9 = "0.11.0"
|
2021-03-27 09:54:57 +03:00
|
|
|
pretty_env_logger = "0.4"
|
2021-03-19 18:07:44 +03:00
|
|
|
shell-words = "1.0"
|
|
|
|
structopt = "0.3"
|
|
|
|
termwiz = { path = "../termwiz" }
|