Cargo.toml

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