zed/crates/gpui_util/Cargo.toml
Cole Miller a873cf402c
Remove gpui's dependency on async-process (#59358)
This removes gpui's dependency on the `util` crate, which depends on
async process. It now depends on `gpui_util` only, and uses
`std::process::Command` for the two cases where it was previously using
an async `Command`. This lifts the requirement of non-Zed consumers of
gpui to depend on our forked async-process (see #59156).

Release Notes:

- N/A
2026-06-16 13:47:55 +00:00

15 lines
259 B
TOML

[package]
name = "gpui_util"
version = "0.1.0"
publish.workspace = true
edition.workspace = true
[dependencies]
log.workspace = true
anyhow.workspace = true
[target.'cfg(target_os = "windows")'.dependencies]
which.workspace = true
[lints]
workspace = true