mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +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
26 lines
506 B
TOML
26 lines
506 B
TOML
[package]
|
|
name = "language_selector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/language_selector.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
editor.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
language.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|