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