1[package]
2name = "terminal_view2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/terminal_view.rs"
9doctest = false
10
11[dependencies]
12editor = { package = "editor2", path = "../editor2" }
13language = { package = "language2", path = "../language2" }
14gpui = { package = "gpui2", path = "../gpui2" }
15project = { package = "project2", path = "../project2" }
16# search = { package = "search2", path = "../search2" }
17settings = { package = "settings2", path = "../settings2" }
18theme = { package = "theme2", path = "../theme2" }
19util = { path = "../util" }
20workspace = { package = "workspace2", path = "../workspace2" }
21db = { package = "db2", path = "../db2" }
22procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
23terminal = { package = "terminal2", path = "../terminal2" }
24ui = { package = "ui2", path = "../ui2" }
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 = { package = "editor2", path = "../editor2", features = ["test-support"] }
42gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
43client = { package = "client2", path = "../client2", features = ["test-support"]}
44project = { package = "project2", path = "../project2", features = ["test-support"]}
45workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
46rand.workspace = true