Cargo.toml

 1[package]
 2name = "language_selector"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/language_selector.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14editor = { path = "../editor" }
15fuzzy = {  path = "../fuzzy" }
16gpui = { path = "../gpui" }
17language = { path = "../language" }
18picker = { path = "../picker" }
19project = { path = "../project" }
20settings = { path = "../settings" }
21theme = { path = "../theme" }
22ui = { path = "../ui" }
23util = { path = "../util" }
24workspace = { path = "../workspace" }
25
26[dev-dependencies]
27editor = { path = "../editor", features = ["test-support"] }