mirror of
https://github.com/wez/wezterm.git
synced 2024-11-11 03:27:05 +03:00
38 lines
924 B
TOML
38 lines
924 B
TOML
[package]
|
|
name = "config"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
vergen = "3"
|
|
|
|
[dev-dependencies]
|
|
pretty_env_logger = "0.4"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bstr = "0.2"
|
|
dirs = "2.0"
|
|
filenamegen = "0.2"
|
|
hostname = "0.3"
|
|
lazy_static = "1.4"
|
|
libc = "0.2"
|
|
luahelper = { path = "../luahelper" }
|
|
log = "0.4"
|
|
# file change notification
|
|
notify = "4.0"
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
|
serde = {version="1.0", features = ["rc", "derive"]}
|
|
smol = "1.2"
|
|
termwiz = { path = "../termwiz" }
|
|
toml = "0.5"
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
|
mlua = {version="0.4", features=["vendored", "lua54", "async", "send"]}
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = { version = "0.3", features = ["winuser"]}
|