2020-10-02 21:50:50 +03:00
|
|
|
[package]
|
|
|
|
name = "config"
|
|
|
|
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
|
|
|
|
|
2020-10-07 08:04:48 +03:00
|
|
|
[dev-dependencies]
|
2022-11-28 07:37:25 +03:00
|
|
|
env_logger = "0.10"
|
2020-10-07 08:04:48 +03:00
|
|
|
|
2022-07-11 02:34:43 +03:00
|
|
|
[features]
|
|
|
|
distro-defaults = []
|
|
|
|
|
2020-10-02 21:50:50 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
2021-08-16 04:21:17 +03:00
|
|
|
bitflags = "1.3"
|
2022-06-13 06:17:48 +03:00
|
|
|
colorgrad = "0.6"
|
2020-12-10 21:08:49 +03:00
|
|
|
dirs-next = "2.0"
|
2021-04-09 01:41:07 +03:00
|
|
|
enum-display-derive = "0.1"
|
2020-10-04 19:39:28 +03:00
|
|
|
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
|
|
|
log = "0.4"
|
2020-12-10 00:00:23 +03:00
|
|
|
luahelper = { path = "../luahelper" }
|
2023-08-17 19:26:47 +03:00
|
|
|
mlua = {version="0.9", features=["vendored", "lua54", "async", "send"]}
|
2020-10-02 21:50:50 +03:00
|
|
|
# file change notification
|
2022-09-04 04:54:36 +03:00
|
|
|
notify = "5.0.0"
|
2023-04-09 02:51:31 +03:00
|
|
|
once_cell = "1.8"
|
2022-05-02 07:43:22 +03:00
|
|
|
ordered-float = { version = "3.0", features = ["serde"] }
|
2020-10-02 21:50:50 +03:00
|
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
2020-12-10 00:00:23 +03:00
|
|
|
promise = { path = "../promise" }
|
2020-10-02 21:50:50 +03:00
|
|
|
serde = {version="1.0", features = ["rc", "derive"]}
|
2023-07-10 07:20:48 +03:00
|
|
|
serde_json = "1.0"
|
2022-04-25 09:31:33 +03:00
|
|
|
shlex = "1.1"
|
2020-10-07 18:51:54 +03:00
|
|
|
smol = "1.2"
|
2022-02-06 01:13:19 +03:00
|
|
|
termwiz = { path = "../termwiz", features=["use_serde"] }
|
2023-01-30 07:08:25 +03:00
|
|
|
toml = "0.7"
|
2021-01-07 20:14:51 +03:00
|
|
|
umask = { path = "../umask" }
|
2022-09-22 03:42:43 +03:00
|
|
|
wezterm-config-derive = { version="0.1", path="derive" }
|
2022-05-14 18:00:03 +03:00
|
|
|
wezterm-dynamic = { path = "../wezterm-dynamic" }
|
2022-05-18 19:25:41 +03:00
|
|
|
wezterm-bidi = { path = "../bidi" }
|
2020-12-10 00:00:23 +03:00
|
|
|
wezterm-input-types = { path = "../wezterm-input-types" }
|
2023-03-29 21:51:59 +03:00
|
|
|
wezterm-ssh = { path = "../wezterm-ssh" }
|
2020-10-02 21:50:50 +03:00
|
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
2020-10-05 21:57:08 +03:00
|
|
|
|
2023-03-28 17:29:47 +03:00
|
|
|
[target."cfg(unix)".dependencies]
|
|
|
|
nix = "0.26"
|
|
|
|
|
2020-10-05 21:57:08 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["winuser"]}
|