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
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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-03-27 22:49:10 +03:00
|
|
|
alacritty_terminal = "0.23"
|
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
|
2024-05-10 06:08:49 +03:00
|
|
|
libc.workspace = true
|
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-03-12 22:27:40 +03:00
|
|
|
sysinfo.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:58:31 +03:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
windows.workspace = true
|
2024-03-03 22:42:36 +03:00
|
|
|
|
2022-12-08 21:48:28 +03:00
|
|
|
[dev-dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|