2022-12-06 22:28:56 +03:00
|
|
|
[package]
|
|
|
|
name = "terminal_view"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-12-06 22:28:56 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-12-09 03:10:22 +03:00
|
|
|
path = "src/terminal_view.rs"
|
2022-12-06 22:28:56 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 21:52:40 +03:00
|
|
|
language = { package = "language2", path = "../language2" }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
project = { package = "project2", path = "../project2" }
|
|
|
|
# search = { path = "../search" }
|
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2022-12-06 22:28:56 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 21:52:40 +03:00
|
|
|
db = { package = "db2", path = "../db2" }
|
2022-12-06 22:28:56 +03:00
|
|
|
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
|
2024-01-03 21:52:40 +03:00
|
|
|
terminal = { package = "terminal2", path = "../terminal2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2023-04-25 03:41:55 +03:00
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2022-12-06 22:28:56 +03:00
|
|
|
mio-extras = "2.0.6"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
|
|
|
ordered-float.workspace = true
|
2022-12-06 22:28:56 +03:00
|
|
|
itertools = "0.10"
|
|
|
|
dirs = "4.0.0"
|
|
|
|
shellexpand = "2.1.0"
|
|
|
|
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-06 22:28:56 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 21:52:40 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
|
|
client = { package = "client2", path = "../client2", features = ["test-support"]}
|
|
|
|
project = { package = "project2", path = "../project2", features = ["test-support"]}
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|