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" }
19picker = { path = "../picker" }
20settings = { path = "../settings" }
21theme = { path = "../theme" }
22ui = { path = "../ui" }
23util = { path = "../util" }
24workspace = { path = "../workspace" }
25log.workspace = true
26parking_lot.workspace = true
27postage.workspace = true
28smol.workspace = true
29
30[dev-dependencies]
31editor = { path = "../editor", features = ["test-support"] }