2021-10-05 16:38:25 +03:00
|
|
|
[package]
|
|
|
|
name = "theme_selector"
|
|
|
|
version = "0.1.0"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2021-10-05 16:38:25 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/theme_selector.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-05 16:38:25 +03:00
|
|
|
[dependencies]
|
2024-01-03 23:02:14 +03:00
|
|
|
client = { path = "../client" }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 22:48:46 +03:00
|
|
|
feature_flags = { path = "../feature_flags" }
|
2024-01-03 21:38:23 +03:00
|
|
|
fs = { package = "fs2", path = "../fs2" }
|
2024-01-03 22:58:02 +03:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2024-01-03 21:38:23 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
2024-01-03 21:55:34 +03:00
|
|
|
picker = { path = "../picker" }
|
2024-01-03 21:38:23 +03:00
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2023-01-24 01:31:10 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
smol.workspace = true
|
2023-05-20 18:54:38 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|