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]
13editor = { path = "../editor" }
14fuzzy = { path = "../fuzzy" }
15language = { path = "../language" }
16gpui = { path = "../gpui" }
17picker = { path = "../picker" }
18project = { path = "../project" }
19theme = { path = "../theme" }
20ui = { path = "../ui" }
21settings = { path = "../settings" }
22util = { path = "../util" }
23workspace = { path = "../workspace" }
24anyhow.workspace = true
25
26[dev-dependencies]
27editor = { path = "../editor", features = ["test-support"] }