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