1[package]
2name = "terminal"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/terminal.rs"
10doctest = false
11
12
13[dependencies]
14alacritty_terminal = "0.21"
15anyhow.workspace = true
16db = { path = "../db" }
17dirs = "4.0.0"
18futures.workspace = true
19gpui = { path = "../gpui" }
20itertools = "0.10"
21lazy_static.workspace = true
22libc = "0.2"
23mio-extras = "2.0.6"
24ordered-float.workspace = true
25procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
26schemars.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30settings = { path = "../settings" }
31shellexpand = "2.1.0"
32smallvec.workspace = true
33smol.workspace = true
34theme = { path = "../theme" }
35thiserror.workspace = true
36util = { path = "../util" }
37
38[dev-dependencies]
39rand.workspace = true