Cargo.toml

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