2020-10-25 02:40:15 +03:00
|
|
|
[package]
|
|
|
|
name = "wezterm-client"
|
|
|
|
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"
|
|
|
|
async-trait = "0.1"
|
|
|
|
async_ossl = { path = "../async_ossl" }
|
|
|
|
codec = { path = "../codec" }
|
|
|
|
config = { path = "../config" }
|
2021-05-24 00:24:01 +03:00
|
|
|
filedescriptor = { version="0.8", path = "../filedescriptor" }
|
2021-03-28 07:13:50 +03:00
|
|
|
futures = "0.3"
|
2022-03-29 06:21:37 +03:00
|
|
|
lazy_static = "1.4"
|
2020-10-25 02:40:15 +03:00
|
|
|
log = "0.4"
|
2022-02-11 20:00:09 +03:00
|
|
|
libc = "0.2"
|
2021-10-11 05:29:42 +03:00
|
|
|
lru = "0.7"
|
2021-07-19 05:10:46 +03:00
|
|
|
metrics = { version="0.17", features=["std"]}
|
2020-10-25 02:40:15 +03:00
|
|
|
mux = { path = "../mux" }
|
2022-05-09 06:50:47 +03:00
|
|
|
# Constrained to the last version of openssl that builds together with
|
|
|
|
# `openssl-sys = "=0.9.71"` which we are constrained to in libssh-rs
|
|
|
|
# until it switches back to openssl 3.x.
|
|
|
|
# https://github.com/sfackler/rust-openssl/issues/1630
|
|
|
|
# https://github.com/sfackler/rust-openssl/pull/1578
|
|
|
|
# https://github.com/wez/libssh-rs/blob/main/libssh-rs-sys/Cargo.toml
|
|
|
|
openssl = "=0.10.38"
|
2022-11-23 19:05:30 +03:00
|
|
|
parking_lot = "0.12"
|
2021-03-28 17:11:14 +03:00
|
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
2020-10-25 02:40:15 +03:00
|
|
|
promise = { path = "../promise" }
|
|
|
|
rangeset = { path = "../rangeset" }
|
|
|
|
ratelim= { path = "../ratelim" }
|
|
|
|
smol = "1.2"
|
2021-03-28 07:13:50 +03:00
|
|
|
termwiz = { path = "../termwiz" }
|
2022-10-24 06:50:47 +03:00
|
|
|
textwrap = "0.16"
|
2020-10-25 02:40:15 +03:00
|
|
|
thiserror = "1.0"
|
2022-02-11 20:00:09 +03:00
|
|
|
umask = { path = "../umask" }
|
2020-10-25 02:40:15 +03:00
|
|
|
url = "2"
|
2022-09-02 07:27:49 +03:00
|
|
|
wezterm-dynamic = { path = "../wezterm-dynamic" }
|
2021-03-28 17:11:14 +03:00
|
|
|
wezterm-ssh = { path = "../wezterm-ssh" }
|
2020-10-25 02:40:15 +03:00
|
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
2020-10-25 03:00:07 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
2021-12-20 18:15:56 +03:00
|
|
|
uds_windows = "1.0"
|
2022-01-07 06:07:46 +03:00
|
|
|
winapi = { version = "0.3", features = [
|
|
|
|
"winuser",
|
|
|
|
]}
|