Cargo.toml

 1[package]
 2name = "theme_selector2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/theme_selector.rs"
 9doctest = false
10
11[dependencies]
12editor = { package = "editor2", path = "../editor2" }
13fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
14fs = { package = "fs2", path = "../fs2" }
15gpui = { package = "gpui2", path = "../gpui2" }
16ui = { package = "ui2", path = "../ui2" }
17picker = { package = "picker2", path = "../picker2" }
18theme = { package = "theme2", path = "../theme2" }
19settings = { package = "settings2", path = "../settings2" }
20feature_flags = { package = "feature_flags2", path = "../feature_flags2" }
21workspace = { package = "workspace2", path = "../workspace2" }
22util = { path = "../util" }
23log.workspace = true
24parking_lot.workspace = true
25postage.workspace = true
26smol.workspace = true
27
28[dev-dependencies]
29editor = { package = "editor2", path = "../editor2", features = ["test-support"] }