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