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]
12client = { path = "../client" }
13editor = { path = "../editor" }
14fuzzy = { path = "../fuzzy" }
15fs = { path = "../fs" }
16gpui = { path = "../gpui" }
17picker = { path = "../picker" }
18theme = { path = "../theme" }
19settings = { path = "../settings" }
20feature_flags = { path = "../feature_flags" }
21workspace = { path = "../workspace" }
22util = { path = "../util" }
23log.workspace = true
24parking_lot.workspace = true
25postage.workspace = true
26smol.workspace = true
27
28[dev-dependencies]
29editor = { path = "../editor", features = ["test-support"] }