2020-10-02 21:50:50 +03:00
|
|
|
[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"
|
|
|
|
|
2020-10-07 08:04:48 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
pretty_env_logger = "0.4"
|
|
|
|
|
2020-10-02 21:50:50 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
2020-10-04 19:39:28 +03:00
|
|
|
bstr = "0.2"
|
2020-10-02 21:50:50 +03:00
|
|
|
dirs = "2.0"
|
2020-10-04 19:39:28 +03:00
|
|
|
filenamegen = "0.2"
|
|
|
|
hostname = "0.3"
|
2020-10-02 21:50:50 +03:00
|
|
|
lazy_static = "1.4"
|
2020-10-03 06:51:50 +03:00
|
|
|
libc = "0.2"
|
2020-10-02 21:50:50 +03:00
|
|
|
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"]}
|
2020-10-07 18:51:54 +03:00
|
|
|
smol = "1.2"
|
2020-10-08 04:19:14 +03:00
|
|
|
promise = { path = "../promise" }
|
2020-10-02 21:50:50 +03:00
|
|
|
termwiz = { path = "../termwiz" }
|
2020-10-05 10:06:01 +03:00
|
|
|
toml = "0.5"
|
2020-10-02 21:50:50 +03:00
|
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
2020-10-07 04:34:29 +03:00
|
|
|
mlua = {version="0.4", features=["vendored", "lua54", "async", "send"]}
|
2020-10-05 21:57:08 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["winuser"]}
|