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