zed/crates/terminal/Cargo.toml

38 lines
1019 B
TOML
Raw Normal View History

[package]
name = "terminal"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/terminal.rs"
doctest = false
[dependencies]
2022-08-04 01:04:48 +03:00
alacritty_terminal = { git = "https://github.com/zed-industries/alacritty", rev = "4e1f0c6177975a040b37f942dfb0e723e46a9971"}
editor = { path = "../editor" }
util = { path = "../util" }
gpui = { path = "../gpui" }
theme = { path = "../theme" }
settings = { path = "../settings" }
workspace = { path = "../workspace" }
project = { path = "../project" }
2022-08-04 20:16:26 +03:00
context_menu = { path = "../context_menu" }
smallvec = { version = "1.6", features = ["union"] }
2022-08-03 20:29:03 +03:00
smol = "1.2.5"
mio-extras = "2.0.6"
futures = "0.3"
ordered-float = "2.1.1"
2022-07-01 05:21:42 +03:00
itertools = "0.10"
dirs = "4.0.0"
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"
thiserror = "1.0"
2022-07-16 21:45:08 +03:00
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
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"] }