zed/crates/terminal/Cargo.toml
Conrad Irwin 583273b6ee
Bump alacritty to fix some panics (#7313)
Release Notes:

- Fixed some panics in the Terminal
([#6835](https://github.com/zed-industries/zed/issues/6835)).
2024-02-02 20:39:51 -07:00

40 lines
1 KiB
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]
# needed for "a few weeks" until alacritty 0.13.2 is out
alacritty_terminal = { git = "https://github.com/alacritty/alacritty", rev = "2d2b894c3b869fadc78fce9d72cb5c8d2b764cac" }
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