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