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