Cargo.toml

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