Cargo.toml

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