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