2022-06-17 17:46:25 +03:00
|
|
|
[package]
|
|
|
|
name = "mux-lua"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
config = { path = "../../config" }
|
|
|
|
wezterm-dynamic = { path = "../../wezterm-dynamic" }
|
2022-06-17 19:27:28 +03:00
|
|
|
wezterm-term = { path = "../../term" }
|
2022-07-16 18:22:10 +03:00
|
|
|
libc = "0.2"
|
2022-06-17 17:46:25 +03:00
|
|
|
log = "0.4"
|
|
|
|
luahelper = { path = "../../luahelper" }
|
2022-06-17 19:27:28 +03:00
|
|
|
portable-pty = { path = "../../pty" }
|
2022-06-17 17:46:25 +03:00
|
|
|
smol = "1.2"
|
|
|
|
mux = { path = "../../mux" }
|