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"
|
2021-03-25 19:34:00 +03:00
|
|
|
resolver = "2"
|
2020-10-03 09:35:18 +03:00
|
|
|
|
|
|
|
# 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" }
|
2022-10-04 18:51:01 +03:00
|
|
|
clap = {version="4.0", features=["derive"]}
|
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" }
|
2023-08-17 19:26:47 +03:00
|
|
|
mlua = "0.9"
|
2020-10-03 09:35:18 +03:00
|
|
|
openssl = "0.10"
|
|
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
|
|
|
promise = { path = "../promise" }
|
|
|
|
umask = { path = "../umask" }
|
2023-03-24 07:40:01 +03:00
|
|
|
wezterm-blob-leases = { path = "../wezterm-blob-leases", version="0.1", features=["simple_tempdir"] }
|
2020-12-30 02:21:46 +03:00
|
|
|
wezterm-mux-server-impl = { path = "../wezterm-mux-server-impl" }
|
2021-02-27 21:41:48 +03:00
|
|
|
wezterm-gui-subcommands = { path = "../wezterm-gui-subcommands" }
|
2022-06-16 04:54:51 +03:00
|
|
|
wezterm-term = { path = "../term" }
|
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" ]}
|
|
|
|
|
2023-03-29 05:18:48 +03:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
embed-resource = "1.7"
|
|
|
|
cc = "1.0"
|