2022-06-21 00:36:13 +00:00
|
|
|
[package]
|
|
|
|
name = "terminal"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-06-21 00:36:13 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/terminal.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2022-12-06 19:28:56 +00:00
|
|
|
|
2022-06-21 00:36:13 +00:00
|
|
|
[dependencies]
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
settings = { path = "../settings" }
|
2022-11-19 23:14:13 +00:00
|
|
|
db = { path = "../db" }
|
2022-12-06 19:28:56 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-12-08 18:48:28 +00:00
|
|
|
util = { path = "../util" }
|
2023-05-11 00:43:10 +00:00
|
|
|
|
2023-08-17 22:31:27 +00:00
|
|
|
alacritty_terminal = { git = "https://github.com/zed-industries/alacritty", rev = "33306142195b354ef3485ca2b1d8a85dfc6605ca" }
|
2022-10-15 22:08:21 +00:00
|
|
|
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
|
2023-04-25 00:41:55 +00:00
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2022-06-21 00:36:13 +00:00
|
|
|
mio-extras = "2.0.6"
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
|
|
|
ordered-float.workspace = true
|
2022-07-01 02:21:42 +00:00
|
|
|
itertools = "0.10"
|
2022-07-07 18:01:26 +00:00
|
|
|
dirs = "4.0.0"
|
2022-07-16 01:27:10 +00:00
|
|
|
shellexpand = "2.1.0"
|
2022-07-16 18:45:08 +00:00
|
|
|
libc = "0.2"
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2023-05-11 00:43:10 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
thiserror.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2022-12-08 18:48:28 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
rand.workspace = true
|