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]
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" }
25ui = { path = "../ui" }
26smallvec.workspace = true
27smol.workspace = true
28mio-extras = "2.0.6"
29futures.workspace = true
30ordered-float.workspace = true
31itertools = "0.10"
32dirs = "4.0.0"
33shellexpand = "2.1.0"
34libc = "0.2"
35anyhow.workspace = true
36thiserror.workspace = true
37lazy_static.workspace = true
38serde.workspace = true
39serde_derive.workspace = true
40serde_json.workspace = true
41
42[dev-dependencies]
43editor = { path = "../editor", features = ["test-support"] }
44gpui = { path = "../gpui", features = ["test-support"] }
45client = { path = "../client", features = ["test-support"]}
46project = { path = "../project", features = ["test-support"]}
47workspace = { path = "../workspace", features = ["test-support"] }
48rand.workspace = true