2020-10-03 09:35:18 +03:00
|
|
|
[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"
|
2020-10-05 07:07:40 +03:00
|
|
|
async_ossl = { path = "../async_ossl" }
|
2020-10-03 09:35:18 +03:00
|
|
|
config = { path = "../config" }
|
2020-10-25 09:29:52 +03:00
|
|
|
env-bootstrap = { path = "../env-bootstrap" }
|
2020-10-04 19:39:28 +03:00
|
|
|
libc = "0.2"
|
2020-10-03 09:35:18 +03:00
|
|
|
log = "0.4"
|
|
|
|
mux = { path = "../mux" }
|
|
|
|
openssl = "0.10"
|
|
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
|
|
|
promise = { path = "../promise" }
|
|
|
|
structopt = "0.3"
|
|
|
|
umask = { path = "../umask" }
|
2020-12-30 02:21:46 +03:00
|
|
|
wezterm-mux-server-impl = { path = "../wezterm-mux-server-impl" }
|
2020-10-03 09:35:18 +03:00
|
|
|
|
2020-12-30 03:59:59 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winapi = { version = "0.3", features = [ "winuser" ]}
|
|
|
|
|
2020-10-03 09:35:18 +03:00
|
|
|
[features]
|
|
|
|
default = ["vendor_openssl"]
|
|
|
|
# FIXME: find a way to magically disable vendor_openssl only on linux!
|
|
|
|
vendor_openssl = ["openssl/vendored"]
|