mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
95e0d5ed74
![image](https://github.com/zed-industries/zed/assets/24362066/bc7cc3d3-d9fc-4be6-b9b6-e3d8edf5b533) Release Notes: - Improved tasks modal by highlighting a distinction between a task template and concrete task instance and surfacing available keybindings more prominently. Task templates are now always available in the modal, even if there's already a history entry with the same label. - Changed default key binding for "picker::UseSelectedQuery" to `opt-e`.
37 lines
932 B
TOML
37 lines
932 B
TOML
[package]
|
|
name = "tasks_ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
editor.workspace = true
|
|
file_icons.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
menu.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
task.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
settings.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
language.workspace = true
|
|
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
language = { workspace = true, features = ["test-support"] }
|
|
project = { workspace = true, features = ["test-support"] }
|
|
serde_json.workspace = true
|
|
tree-sitter-rust.workspace = true
|
|
tree-sitter-typescript.workspace = true
|
|
workspace = { workspace = true, features = ["test-support"] }
|