1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-25 14:22:37 +03:00
wezterm/wezterm-mux-server/Cargo.toml
Wez Furlong e8be716cb3 clean up mux server startup
kindof a lot going on in this commit, unintentionally:

* Need the lua context set to be moved into the config crate
  otherwise configs cannot be parsed by the server and we end
  up with the default configs
* Make the server use smol for async io
* Drop the use of the daemonize crate, which I had forked anyway.
  Just inline our own tighter daemonize module
* Improve daemon spawning synchronization, however, it still needs
  work for windows to avoid blocking forever where we don't do
  daemonizing.
2020-10-04 09:39:28 -07:00

38 lines
1.0 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"
codec = { path = "../codec" }
config = { path = "../config" }
filedescriptor = { version="0.7", path = "../filedescriptor" }
foreign-types-shared = "0.1.1" # to peek into SslStream's SSL
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.7"
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"