[package] name = "wezterm-client" version = "0.1.0" authors = ["Wez Furlong "] edition = "2018" publish = false # 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" } async-io = "2.3" codec = { path = "../codec" } config = { path = "../config" } filedescriptor = { version="0.8", path = "../filedescriptor" } futures = "0.3" lazy_static = "1.4" log = "0.4" libc = "0.2" lru = "0.12" metrics = "0.22" mux = { path = "../mux" } openssl = "0.10.57" parking_lot = "0.12" portable-pty = { path = "../pty", features = ["serde_support"]} promise = { path = "../promise" } rangeset = { path = "../rangeset" } ratelim= { path = "../ratelim" } smol = "2.0" termwiz = { path = "../termwiz" } textwrap = "0.16" thiserror = "1.0" umask = { path = "../umask" } url = "2" wezterm-dynamic = { path = "../wezterm-dynamic" } wezterm-ssh = { path = "../wezterm-ssh" } wezterm-term = { path = "../term", features=["use_serde"] } [target."cfg(windows)".dependencies] uds_windows = "1.0" winapi = { version = "0.3", features = [ "winuser", ]}