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

36 lines
951 B
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"
base64 = "0.10"
2020-10-03 03:42:49 +03:00
bintree = { path = "../bintree" }
config = { path = "../config" }
crossbeam = "0.7"
2020-10-03 03:42:49 +03:00
downcast-rs = "1.0"
filedescriptor = { version="0.7", path = "../filedescriptor" }
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" }
2020-10-03 03:42:49 +03:00
portable-pty = { path = "../pty", features = ["serde_support"]}
promise = { path = "../promise" }
rangeset = { path = "../rangeset" }
ratelim= { path = "../ratelim" }
regex = "1"
serde = {version="1.0", features = ["rc", "derive"]}
ssh2 = "0.8"
2020-10-03 03:42:49 +03:00
termwiz = { path = "../termwiz" }
thiserror = "1.0"
url = "2"
wezterm-term = { path = "../term", features=["use_serde"] }
terminfo = "0.7"
unicode-segmentation = "1.6"
textwrap = "0.12"