Cargo.toml

 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]
12editor = { path = "../editor" }
13fuzzy = { path = "../fuzzy" }
14gpui = { path = "../gpui" }
15picker = { path = "../picker" }
16theme = { path = "../theme" }
17settings = { path = "../settings" }
18staff_mode = { path = "../staff_mode" }
19workspace = { path = "../workspace" }
20util = { path = "../util" }
21log.workspace = true
22parking_lot.workspace = true
23postage.workspace = true
24smol.workspace = true