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" }
18workspace = { path = "../workspace" }
19util = { path = "../util" }
20log = { version = "0.4.16", features = ["kv_unstable_serde"] }
21parking_lot = "0.11.1"
22postage = { version = "0.4.1", features = ["futures-traits"] }
23smol = "1.2.5"
24