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