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