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