Cargo.toml

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