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