2023-02-24 14:57:32 +00:00
|
|
|
[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" }
|
|
|
|
settings = { path = "../settings" }
|
2023-04-18 12:58:57 +00:00
|
|
|
util = { path = "../util" }
|
2023-02-24 14:57:32 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|