zed/crates/terminal/Cargo.toml
Marshall Bowers e338f34097
Sort dependencies in Cargo.toml files (#7126)
This PR sorts the dependency lists in our `Cargo.toml` files so that
they are in alphabetical order.

This should make them easier to visually scan when looking for a
dependency.

Apologies in advance for any merge conflicts 🙈 

Release Notes:

- N/A
2024-01-30 21:41:29 -05:00

40 lines
911 B
TOML

[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]
alacritty_terminal = "0.21"
anyhow.workspace = true
db = { path = "../db" }
dirs = "4.0.0"
futures.workspace = true
gpui = { path = "../gpui" }
itertools = "0.10"
lazy_static.workspace = true
libc = "0.2"
mio-extras = "2.0.6"
ordered-float.workspace = true
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
schemars.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
settings = { path = "../settings" }
shellexpand = "2.1.0"
smallvec.workspace = true
smol.workspace = true
theme = { path = "../theme" }
thiserror.workspace = true
util = { path = "../util" }
[dev-dependencies]
rand.workspace = true