mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
39 lines
954 B
TOML
39 lines
954 B
TOML
[package]
|
|
name = "terminal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[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 = { git = "https://github.com/zed-industries/alacritty", rev = "33306142195b354ef3485ca2b1d8a85dfc6605ca" }
|
|
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
|
|
itertools = "0.10"
|
|
dirs = "4.0.0"
|
|
shellexpand = "2.1.0"
|
|
libc = "0.2"
|
|
anyhow.workspace = true
|
|
schemars.workspace = true
|
|
thiserror.workspace = true
|
|
lazy_static.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
|
|
[dev-dependencies]
|
|
rand.workspace = true
|