mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
64 lines
1.6 KiB
TOML
64 lines
1.6 KiB
TOML
[package]
|
|
name = "mux"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
# 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.21"
|
|
bintree = { path = "../bintree" }
|
|
bitflags = "1.3"
|
|
chrono = { version = "0.4", default-features=false, features = ["serde"] }
|
|
config = { path = "../config" }
|
|
crossbeam = "0.8"
|
|
downcast-rs = "1.0"
|
|
fancy-regex = "0.11"
|
|
filedescriptor = { version="0.8", path = "../filedescriptor" }
|
|
finl_unicode = "1.2"
|
|
hostname = "0.4"
|
|
lazy_static = "1.4"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
luahelper = { path = "../luahelper" }
|
|
metrics = "0.23"
|
|
mlua = "0.9"
|
|
names = { version = "0.12", default-features = false }
|
|
nix = {version="0.28", features=["term"]}
|
|
parking_lot = "0.12"
|
|
percent-encoding = "2"
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
|
procinfo = { path = "../procinfo" }
|
|
promise = { path = "../promise" }
|
|
rangeset = { path = "../rangeset" }
|
|
serde = {version="1.0", features = ["rc", "derive"]}
|
|
serial = "0.4"
|
|
shell-words = "1.1"
|
|
smol = "2.0"
|
|
terminfo = "0.9"
|
|
termwiz = { path = "../termwiz" }
|
|
termwiz-funcs = { path = "../lua-api-crates/termwiz-funcs" }
|
|
textwrap = "0.16"
|
|
thiserror = "1.0"
|
|
url = "2"
|
|
wezterm-ssh = { path = "../wezterm-ssh" }
|
|
wezterm-dynamic = { path = "../wezterm-dynamic" }
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
ntapi = "0.4"
|
|
winapi = { version = "0.3", features = [
|
|
"handleapi",
|
|
"memoryapi",
|
|
"psapi",
|
|
"processthreadsapi",
|
|
"tlhelp32",
|
|
]}
|
|
|
|
[dev-dependencies]
|
|
k9 = "0.12"
|