Cargo.toml
1[package]
2name = "theme_selector"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/theme_selector.rs"
8
9[dependencies]
10editor = { path = "../editor" }
11fuzzy = { path = "../fuzzy" }
12gpui = { path = "../gpui" }
13theme = { path = "../theme" }
14workspace = { path = "../workspace" }
15log = "0.4"
16parking_lot = "0.11.1"
17postage = { version = "0.4.1", features = ["futures-traits"] }
18smol = "1.2.5"