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 = "4e1f0c6177975a040b37f942dfb0e723e46a9971"}
12editor = { path = "../editor" }
13util = { path = "../util" }
14gpui = { path = "../gpui" }
15theme = { path = "../theme" }
16settings = { path = "../settings" }
17workspace = { path = "../workspace" }
18project = { path = "../project" }
19context_menu = { path = "../context_menu" }
20smallvec = { version = "1.6", features = ["union"] }
21smol = "1.2.5"
22mio-extras = "2.0.6"
23futures = "0.3"
24ordered-float = "2.1.1"
25itertools = "0.10"
26dirs = "4.0.0"
27shellexpand = "2.1.0"
28libc = "0.2"
29anyhow = "1"
30thiserror = "1.0"
31
32
33[dev-dependencies]
34gpui = { path = "../gpui", features = ["test-support"] }
35client = { path = "../client", features = ["test-support"]}
36project = { path = "../project", features = ["test-support"]}
37workspace = { path = "../workspace", features = ["test-support"] }