1[package]
2name = "terminal"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/terminal.rs"
8doctest = false
9
10[dependencies]
11alacritty_terminal = "0.16.1"
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"
25
26[dev-dependencies]
27gpui = { path = "../gpui", features = ["test-support"] }
28client = { path = "../client", features = ["test-support"]}
29project = { path = "../project", features = ["test-support"]}
30workspace = { path = "../workspace", features = ["test-support"] }
31
32