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 = { version = "0.4.16", features = ["kv_unstable_serde"] }
22parking_lot = "0.11.1"
23postage = { workspace = true }
24smol = "1.2.5"