Cargo.toml

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