2021-10-05 13:38:25 +00:00
|
|
|
[package]
|
|
|
|
name = "theme_selector"
|
|
|
|
version = "0.1.0"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2021-10-05 13:38:25 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/theme_selector.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-05 13:38:25 +00:00
|
|
|
[dependencies]
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
2023-05-10 01:14:42 +00:00
|
|
|
fs = { path = "../fs" }
|
2021-10-05 13:38:25 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2022-04-14 23:51:14 +00:00
|
|
|
picker = { path = "../picker" }
|
2021-10-05 13:38:25 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2023-08-26 00:00:53 +00:00
|
|
|
feature_flags = { path = "../feature_flags" }
|
2021-10-05 13:38:25 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-01-23 22:31:10 +00:00
|
|
|
util = { path = "../util" }
|
2023-04-25 00:41:55 +00:00
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
smol.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|