mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
e103653923
There are a few notable changes as a result: * A number of `.ssh/config` options are now respected; host matching and aliasing and identity file are the main things * The authentication prompt is inline in the window, rather than popping up a separate authentication window Refs: https://github.com/wez/wezterm/issues/457
26 lines
597 B
TOML
26 lines
597 B
TOML
[package]
|
|
name = "wezterm-ssh"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
base64 = "0.13"
|
|
dirs-next = "2.0"
|
|
filedescriptor = { version="0.7", path = "../filedescriptor" }
|
|
log = "0.4"
|
|
portable-pty = { path = "../pty" }
|
|
regex = "1"
|
|
smol = "1.2"
|
|
ssh2 = {version="0.9", features=["openssl-on-win32"]}
|
|
|
|
[dev-dependencies]
|
|
k9 = "0.11.0"
|
|
pretty_env_logger = "0.4"
|
|
shell-words = "1.0"
|
|
structopt = "0.3"
|
|
termwiz = { path = "../termwiz" }
|