1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00
wezterm/mux/Cargo.toml

60 lines
1.5 KiB
TOML
Raw Normal View History

2020-10-03 03:42:49 +03:00
[package]
name = "mux"
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-trait = "0.1"
2020-12-29 20:21:50 +03:00
base64 = "0.13"
2020-10-03 03:42:49 +03:00
bintree = { path = "../bintree" }
chrono = { version = "0.4", features = ["serde"] }
2020-10-03 03:42:49 +03:00
config = { path = "../config" }
2020-12-29 20:21:50 +03:00
crossbeam = "0.8"
2020-10-03 03:42:49 +03:00
downcast-rs = "1.0"
filedescriptor = { version="0.8", path = "../filedescriptor" }
hostname = "0.3"
lazy_static = "1.4"
2020-10-05 19:11:17 +03:00
libc = "0.2"
2020-10-03 03:42:49 +03:00
log = "0.4"
luahelper = { path = "../luahelper" }
metrics = { version="0.17", features=["std"]}
mlua = "0.8.0-beta.4"
names = { version = "0.12", default-features = false }
percent-encoding = "2"
2020-10-03 03:42:49 +03:00
portable-pty = { path = "../pty", features = ["serde_support"]}
2022-01-01 05:30:52 +03:00
procinfo = { path = "../procinfo" }
2020-10-03 03:42:49 +03:00
promise = { path = "../promise" }
rangeset = { path = "../rangeset" }
regex = "1"
serde = {version="1.0", features = ["rc", "derive"]}
2022-02-07 04:32:10 +03:00
shell-words = "1.1"
smol = "1.2"
terminfo = "0.7"
2020-10-03 03:42:49 +03:00
termwiz = { path = "../termwiz" }
termwiz-funcs = { path = "../lua-api-crates/termwiz-funcs" }
2022-02-28 16:59:10 +03:00
textwrap = "0.15"
2020-10-03 03:42:49 +03:00
thiserror = "1.0"
unicode-segmentation = "1.8"
2020-10-03 03:42:49 +03:00
url = "2"
wezterm-ssh = { path = "../wezterm-ssh" }
wezterm-dynamic = { path = "../wezterm-dynamic" }
2020-10-03 03:42:49 +03:00
wezterm-term = { path = "../term", features=["use_serde"] }
2021-08-23 15:44:49 +03:00
flume = "0.10"
2021-03-23 08:14:55 +03:00
[target."cfg(windows)".dependencies]
ntapi = "0.3"
winapi = { version = "0.3", features = [
"handleapi",
"memoryapi",
"psapi",
"processthreadsapi",
"tlhelp32",
]}
[dev-dependencies]
k9 = "0.11"