Cargo.toml

 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" }
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" }
24smallvec = { workspace = true }
25smol = "1.2.5"
26mio-extras = "2.0.6"
27futures = "0.3"
28ordered-float = "2.1.1"
29itertools = "0.10"
30dirs = "4.0.0"
31shellexpand = "2.1.0"
32libc = "0.2"
33anyhow = "1"
34thiserror = "1.0"
35lazy_static = "1.4.0"
36serde = { workspace = true }
37serde_derive = { workspace = true }
38
39
40
41[dev-dependencies]
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 = "0.8.5"