2022-06-21 03:36:13 +03:00
|
|
|
[package]
|
|
|
|
name = "terminal"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/terminal.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
alacritty_terminal = "0.16.1"
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
theme = { path = "../theme" }
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
mio-extras = "2.0.6"
|
|
|
|
futures = "0.3"
|
2022-06-25 01:02:54 +03:00
|
|
|
ordered-float = "2.1.1"
|
2022-06-29 23:07:44 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|