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]
14gpui = { path = "../gpui" }
15settings = { path = "../settings" }
16db = { path = "../db" }
17theme = { path = "../theme" }
18util = { path = "../util" }
19
20alacritty_terminal = "0.21"
21procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
22smallvec.workspace = true
23smol.workspace = true
24mio-extras = "2.0.6"
25futures.workspace = true
26ordered-float.workspace = true
27itertools = "0.10"
28dirs = "4.0.0"
29shellexpand = "2.1.0"
30libc = "0.2"
31anyhow.workspace = true
32schemars.workspace = true
33thiserror.workspace = true
34lazy_static.workspace = true
35serde.workspace = true
36serde_derive.workspace = true
37serde_json.workspace = true
38
39[dev-dependencies]
40rand.workspace = true