mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
88857f8149
We can convert shell, npm and gulp tasks to a Zed format. Additionally, we convert a subset of task variables that VsCode supports. Release notes: - Zed can now load tasks in Visual Studio Code task format --------- Co-authored-by: Piotr Osiewicz <piotr@zed.dev> Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com>
25 lines
475 B
TOML
25 lines
475 B
TOML
[package]
|
|
name = "task"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json_lenient.workspace = true
|
|
shellexpand.workspace = true
|
|
subst = "0.3.0"
|
|
util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|