2022-06-21 03:36:13 +03:00
|
|
|
[package]
|
|
|
|
name = "terminal"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/terminal.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-16 01:08:21 +03:00
|
|
|
context_menu = { path = "../context_menu" }
|
2022-06-21 03:36:13 +03:00
|
|
|
editor = { path = "../editor" }
|
2022-10-16 01:08:21 +03:00
|
|
|
language = { path = "../language" }
|
2022-06-21 03:36:13 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2022-10-16 01:08:21 +03:00
|
|
|
project = { path = "../project" }
|
2022-06-21 03:36:13 +03:00
|
|
|
settings = { path = "../settings" }
|
2022-10-16 01:08:21 +03:00
|
|
|
theme = { path = "../theme" }
|
|
|
|
util = { path = "../util" }
|
2022-06-21 03:36:13 +03:00
|
|
|
workspace = { path = "../workspace" }
|
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 }
|
2022-06-21 03:36:13 +03:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2022-08-03 20:29:03 +03:00
|
|
|
smol = "1.2.5"
|
2022-06-21 03:36:13 +03:00
|
|
|
mio-extras = "2.0.6"
|
|
|
|
futures = "0.3"
|
2022-06-25 01:02:54 +03:00
|
|
|
ordered-float = "2.1.1"
|
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"
|
2022-07-19 00:50:33 +03:00
|
|
|
anyhow = "1"
|
2022-07-20 22:41:04 +03:00
|
|
|
thiserror = "1.0"
|
2022-09-23 08:40:22 +03:00
|
|
|
lazy_static = "1.4.0"
|
2022-09-27 06:01:05 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
2022-09-23 08:40:22 +03:00
|
|
|
|
2022-07-16 21:45:08 +03:00
|
|
|
|
2022-06-29 23:07:44 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-07-07 21:01:26 +03:00
|
|
|
client = { path = "../client", features = ["test-support"]}
|
|
|
|
project = { path = "../project", features = ["test-support"]}
|
2022-07-15 10:26:04 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2022-09-15 01:41:55 +03:00
|
|
|
rand = "0.8.5"
|