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]
12context_menu = { path = "../context_menu" }
13editor = { path = "../editor" }
14language = { path = "../language" }
15gpui = { path = "../gpui" }
16project = { path = "../project" }
17search = { path = "../search" }
18settings = { path = "../settings" }
19theme = { path = "../theme" }
20util = { path = "../util" }
21workspace = { path = "../workspace" }
22db = { path = "../db" }
23procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
24terminal = { path = "../terminal" }
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
39
40[dev-dependencies]
41editor = { path = "../editor", features = ["test-support"] }
42gpui = { path = "../gpui", features = ["test-support"] }
43client = { path = "../client", features = ["test-support"]}
44project = { path = "../project", features = ["test-support"]}
45workspace = { path = "../workspace", features = ["test-support"] }
46rand.workspace = true