mirror of
https://github.com/zed-industries/zed.git
synced 2026-08-24 08:24:58 +00:00
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
15 lines
259 B
TOML
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
|