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