1[package]
2name = "terminal"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lints]
9workspace = true
10
11[lib]
12path = "src/terminal.rs"
13doctest = false
14
15
16[dependencies]
17alacritty_terminal = "0.22.0"
18anyhow.workspace = true
19collections.workspace = true
20dirs = "4.0.0"
21futures.workspace = true
22gpui.workspace = true
23libc = "0.2"
24procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "0c13436f4fa8b126f46dd4a20106419b41666897", default-features = false }
25task.workspace = true
26schemars.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30settings.workspace = true
31smol.workspace = true
32theme.workspace = true
33thiserror.workspace = true
34util.workspace = true
35
36[target.'cfg(windows)'.dependencies]
37windows.workspace = true
38
39[dev-dependencies]
40rand.workspace = true