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