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.workspace = true
22mio-extras = "2.0.6"
23futures.workspace = true
24ordered-float.workspace = true
25itertools = "0.10"
26dirs = "4.0.0"
27shellexpand = "2.1.0"
28libc = "0.2"
29anyhow.workspace = true
30thiserror.workspace = true
31lazy_static.workspace = true
32serde.workspace = true
33serde_derive.workspace = true
34
35[dev-dependencies]
36rand.workspace = true