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