mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
743f9b345f
We should prefer referring to local deps via `.workspace = true` from now on. Release Notes: - N/A
28 lines
555 B
TOML
28 lines
555 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
|
|
settings.workspace = true
|
|
theme.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|