2020-12-30 02:21:46 +03:00
|
|
|
[package]
|
|
|
|
name = "wezterm-mux-server-impl"
|
|
|
|
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_ossl = { path = "../async_ossl" }
|
|
|
|
codec = { path = "../codec" }
|
|
|
|
config = { path = "../config" }
|
|
|
|
futures = "0.3"
|
|
|
|
hostname = "0.3"
|
|
|
|
lazy_static = "1.4"
|
|
|
|
log = "0.4"
|
|
|
|
mux = { path = "../mux" }
|
2021-05-15 23:05:10 +03:00
|
|
|
percent-encoding = "2"
|
2020-12-30 02:21:46 +03:00
|
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
|
|
|
promise = { path = "../promise" }
|
|
|
|
rangeset = { path = "../rangeset" }
|
2021-08-23 17:45:35 +03:00
|
|
|
rcgen = "=0.8.11"
|
2020-12-30 02:21:46 +03:00
|
|
|
smol = "1.2"
|
|
|
|
url = "2"
|
|
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
2021-08-08 22:45:08 +03:00
|
|
|
termwiz = { path = "../termwiz", features=["use_serde"] }
|
2020-12-30 02:21:46 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
uds_windows = "0.1"
|
|
|
|
winapi = { version = "0.3", features = [ "winuser" ]}
|