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