1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-27 08:09:45 +03:00
wezterm/wezterm-mux-server/Cargo.toml
2020-10-24 23:33:31 -07:00

41 lines
1.1 KiB
TOML

[package]
name = "wezterm-mux-server"
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" }
env-bootstrap = { path = "../env-bootstrap" }
filedescriptor = { version="0.7", path = "../filedescriptor" }
futures = "0.3"
hostname = "0.3"
libc = "0.2"
log = "0.4"
mux = { path = "../mux" }
openssl = "0.10"
portable-pty = { path = "../pty", features = ["serde_support"]}
pretty_env_logger = "0.4"
promise = { path = "../promise" }
rangeset = { path = "../rangeset" }
rcgen = "0.8"
smol = "1.2"
structopt = "0.3"
umask = { path = "../umask" }
url = "2"
wezterm-term = { path = "../term", features=["use_serde"] }
[features]
default = ["vendor_openssl"]
# FIXME: find a way to magically disable vendor_openssl only on linux!
vendor_openssl = ["openssl/vendored"]
[target."cfg(windows)".dependencies]
uds_windows = "0.1"
winapi = { version = "0.3", features = [ "winuser" ]}