2022-06-21 03:36:13 +03:00
|
|
|
[package]
|
|
|
|
name = "terminal"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2022-06-21 03:36:13 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/terminal.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2022-12-06 22:28:56 +03:00
|
|
|
|
2022-06-21 03:36:13 +03:00
|
|
|
[dependencies]
|
2024-02-07 06:58:38 +03:00
|
|
|
alacritty_terminal = "0.22.0"
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-07 20:06:03 +03:00
|
|
|
collections.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
dirs = "4.0.0"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2022-07-16 21:45:08 +03:00
|
|
|
libc = "0.2"
|
2024-02-20 03:44:24 +03:00
|
|
|
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "0c13436f4fa8b126f46dd4a20106419b41666897", default-features = false }
|
2024-02-21 15:56:43 +03:00
|
|
|
task.workspace = true
|
2023-05-11 03:43:10 +03:00
|
|
|
schemars.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-01-16 22:19:58 +03:00
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
smol.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
theme.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
thiserror.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
2022-12-08 21:48:28 +03:00
|
|
|
|
2024-03-03 22:42:36 +03:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
|
|
version = "0.53.0"
|
|
|
|
features = [
|
|
|
|
"Win32_System_Threading",
|
|
|
|
]
|
|
|
|
|
2022-12-08 21:48:28 +03:00
|
|
|
[dev-dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|