zed/crates/task/Cargo.toml
Anthony Eid 88857f8149
VS Code -> Zed tasks converter (#9538)
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>
2024-03-20 16:37:26 +01:00

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"] }