2022-12-06 22:28:56 +03:00
|
|
|
[package]
|
|
|
|
name = "terminal_view"
|
|
|
|
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-12-06 22:28:56 +03:00
|
|
|
[lib]
|
2022-12-09 03:10:22 +03:00
|
|
|
path = "src/terminal_view.rs"
|
2022-12-06 22:28:56 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
db.workspace = true
|
|
|
|
collections.workspace = true
|
2024-06-18 02:27:42 +03:00
|
|
|
dirs.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
editor.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2024-02-26 04:37:52 +03:00
|
|
|
itertools.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
|
|
|
project.workspace = true
|
2024-02-21 15:56:43 +03:00
|
|
|
task.workspace = true
|
2024-04-23 17:27:18 +03:00
|
|
|
tasks_ui.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
search.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2024-02-25 20:02:59 +03:00
|
|
|
shellexpand.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
terminal.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2022-12-06 22:28:56 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
project = { workspace = true, features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|