zed/crates/terminal/Cargo.toml

41 lines
912 B
TOML
Raw Normal View History

[package]
name = "terminal"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
path = "src/terminal.rs"
doctest = false
[dependencies]
gpui = { path = "../gpui" }
settings = { path = "../settings" }
db = { path = "../db" }
theme = { path = "../theme" }
util = { path = "../util" }
alacritty_terminal = "0.21"
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
smallvec.workspace = true
smol.workspace = true
mio-extras = "2.0.6"
futures.workspace = true
ordered-float.workspace = true
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"
anyhow.workspace = true
schemars.workspace = true
thiserror.workspace = true
lazy_static.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
[dev-dependencies]
rand.workspace = true