mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
83f493b387
Following-up on #8330 Invocation ```bash cargo-machete --with-metadata --skip-target-dir --fix ```` There is more stuff to fix, but it chokes on `async-lock`: ``` cargo-machete found the following unused dependencies in /x/Code/zed: rpc -- /x/Code/zed/crates/rpc/Cargo.toml: async_lock prost_build serde_derive Error: Dependency async_lock not found ``` Release Notes: - N/A
20 lines
404 B
TOML
20 lines
404 B
TOML
[package]
|
|
name = "task"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json_lenient.workspace = true
|
|
util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|