mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
f5ba22659b
Co-authored-by: Mikayla <mikayla@zed.dev>
27 lines
615 B
TOML
27 lines
615 B
TOML
[package]
|
|
name = "language_selector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/language_selector.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
language = { path = "../language" }
|
|
gpui = { path = "../gpui" }
|
|
picker = { path = "../picker" }
|
|
project = { path = "../project" }
|
|
theme = { path = "../theme" }
|
|
ui = { path = "../ui" }
|
|
settings = { path = "../settings" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
anyhow.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|