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